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 | 94820dc07c9ebc0d346a2a3b0df8b18cff53a617 (patch) | |
tree | 89c39e3a4c613f96c06bafcc2d27602724876277 /tv | |
parent | a51975b1dc7cbeb75291706d1309ecef43d484a8 (diff) |
mv,tv: security.setuidPrograms -> security.wrappers
Diffstat (limited to 'tv')
-rw-r--r-- | tv/1systems/mu.nix | 8 | ||||
-rw-r--r-- | tv/1systems/wu.nix | 6 | ||||
-rw-r--r-- | tv/1systems/xu.nix | 6 | ||||
-rw-r--r-- | tv/1systems/zu.nix | 6 |
4 files changed, 13 insertions, 13 deletions
diff --git a/tv/1systems/mu.nix b/tv/1systems/mu.nix index e9a8a13..fcd0a21 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 diff --git a/tv/1systems/wu.nix b/tv/1systems/wu.nix index a9d7e94..4cde8b9 100644 --- a/tv/1systems/wu.nix +++ b/tv/1systems/wu.nix @@ -157,9 +157,9 @@ with import <stockholm/lib>; #jack2 ]; - security.setuidPrograms = [ - "sendmail" # for cron - ]; + security.wrappers = { + sendmail.source = "${pkgs.exim}/bin/sendmail"; # for cron + }; services.printing.enable = true; diff --git a/tv/1systems/xu.nix b/tv/1systems/xu.nix index 974d820..4b8fe8d 100644 --- a/tv/1systems/xu.nix +++ b/tv/1systems/xu.nix @@ -167,9 +167,9 @@ with import <stockholm/lib>; gptfdisk ]; - security.setuidPrograms = [ - "sendmail" # for cron - ]; + security.wrappers = { + sendmail.source = "${pkgs.exim}/bin/sendmail"; # for cron + }; services.printing.enable = true; diff --git a/tv/1systems/zu.nix b/tv/1systems/zu.nix index 59e8b1c..194ac29 100644 --- a/tv/1systems/zu.nix +++ b/tv/1systems/zu.nix @@ -167,9 +167,9 @@ with import <stockholm/lib>; gptfdisk ]; - security.setuidPrograms = [ - "sendmail" # for cron - ]; + security.wrappers = { + sendmail.source = "${pkgs.exim}/bin/sendmail"; # for cron + }; services.printing.enable = true; |