summaryrefslogtreecommitdiff
path: root/hel.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hel.nix')
-rw-r--r--hel.nix9
1 files changed, 8 insertions, 1 deletions
diff --git a/hel.nix b/hel.nix
index 68998d3b..95532a8a 100644
--- a/hel.nix
+++ b/hel.nix
@@ -248,7 +248,14 @@
248 248
249 setuidPrograms = ["slock" "mount" "mount.nfs" "umount" "newgrp" "thinklight"]; 249 setuidPrograms = ["slock" "mount" "mount.nfs" "umount" "newgrp" "thinklight"];
250 250
251 setuidOwners = [ { group = "users"; owner = "gkleen"; permissions = "u+rx,g+x,o+x"; program = "notify-gkleen"; source = ''${pkgs.libnotify}/bin/notify-send''; setgid = true; setuid = true; } 251 setuidOwners = [ { group = "users";
252 owner = "gkleen";
253 permissions = "u+rx,g+x,o+x";
254 program = "notify-gkleen";
255 setgid = true;
256 setuid = true;
257 source = pkgs.callPackage ./notify-user.nix { inherit (pkgs.haskellPackages) ghcWithPackages; user = "gkleen"; };
258 }
252 ]; 259 ];
253 }; 260 };
254 261