everything?: Updating every package that depended on the old setuidPrograms configuration.

This commit is contained in:
Parnell Springmeyer
2016-09-01 19:17:43 -05:00
parent 81b33eb466
commit 390ab0b3ef
15 changed files with 170 additions and 28 deletions
+9 -1
View File
@@ -95,7 +95,15 @@ in
(mkIf (config.services.cron.enable) {
security.setuidPrograms = [ "crontab" ];
security.permissionsWrappers.setuid =
[
{ program = "crontab";
source = "${pkgs.cronNixosPkg.out}/bin/crontab";
user = "root";
group = "root";
setuid = true;
}
];
environment.systemPackages = [ cronNixosPkg ];