diff options
author | tv <tv@krebsco.de> | 2017-03-02 20:02:01 +0100 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-03-04 02:16:44 +0100 |
commit | cf289c9aec98fcb87e1debeb48f991f0256cdbb1 (patch) | |
tree | 614b5d86a869f6cab53ea3a695bb58e76a3c669f /tv/1systems/mu.nix | |
parent | e71534f237057dedfcd0cd53bd89afc9ce33f1fc (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 |