diff options
author | tv <tv@krebsco.de> | 2017-03-02 20:02:01 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-03-02 20:02:01 +0100 |
commit | 6435001c48d865ba96f0f784ee9c0bcf03204e1e (patch) | |
tree | 55cde9d72afca807507b104c71c97c395f37374a /tv/1systems/mu.nix | |
parent | ed3585bfcfd154688a7e95b2f1179133a1a53734 (diff) |
mv,tv: security.setuidPrograms -> security.wrappers
Diffstat (limited to 'tv/1systems/mu.nix')
-rw-r--r-- | tv/1systems/mu.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tv/1systems/mu.nix b/tv/1systems/mu.nix index e9a8a131a..fcd0a2178 100644 --- a/tv/1systems/mu.nix +++ b/tv/1systems/mu.nix @@ -99,10 +99,10 @@ with import <stockholm/lib>; programs.ssh.startAgent = false; - security.setuidPrograms = [ - "sendmail" # for cron - "slock" - ]; + security.wrappers = { + sendmail.source = "${pkgs.exim}/bin/sendmail"; # for cron + slock.slock = "${pkgs.slock}/bin/slock"; + }; security.pam.loginLimits = [ # for jack |