hddfancontrol: Disable network access

This commit is contained in:
rht 2024-01-21 21:08:34 -05:00
parent 25181b596f
commit cee68718db
No known key found for this signature in database
GPG key ID: 1E76EA93A9B3D3E2

View file

@ -60,6 +60,10 @@ in
systemd.services.hddfancontrol = {
wantedBy = [ "multi-user.target" ];
environment.HDDFANCONTROL_ARGS = lib.escapeShellArgs args;
serviceConfig = {
# Hardening
PrivateNetwork = true;
};
};
}
);