summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--custom/notify-user.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/custom/notify-user.nix b/custom/notify-user.nix
index ae8ea56c..f433f4a7 100644
--- a/custom/notify-user.nix
+++ b/custom/notify-user.nix
@@ -24,6 +24,7 @@ stdenv.mkDerivation {
24 ''; 24 '';
25 installPhase = '' 25 installPhase = ''
26 mkdir -p $out/bin 26 mkdir -p $out/bin
27 install -m 755 notify-${user} $out/bin 27 cp notify-${user} $out/bin
28 chmod +x $out/bin/notify-${user}
28 ''; 29 '';
29} 30}