summary refs log tree commit diff
path: root/pkgs/applications/misc/psi-notify
diff options
context:
space:
mode:
authorEduard Bachmakov <eduarrrd@users.noreply.github.com>2021-09-29 17:18:19 +0200
committerEduard Bachmakov <eduarrrd@users.noreply.github.com>2021-09-29 17:24:20 +0200
commita774af3605a86719f813ccb80e9f8a5bdef2ee0a (patch)
tree009418141352234b1e98cef0574051379103e18e /pkgs/applications/misc/psi-notify
parent9560baeb5913f528338381526e63017be3ae1d41 (diff)
downloadnixpkgs-a774af3605a86719f813ccb80e9f8a5bdef2ee0a.tar
nixpkgs-a774af3605a86719f813ccb80e9f8a5bdef2ee0a.tar.gz
nixpkgs-a774af3605a86719f813ccb80e9f8a5bdef2ee0a.tar.bz2
nixpkgs-a774af3605a86719f813ccb80e9f8a5bdef2ee0a.tar.lz
nixpkgs-a774af3605a86719f813ccb80e9f8a5bdef2ee0a.tar.xz
nixpkgs-a774af3605a86719f813ccb80e9f8a5bdef2ee0a.tar.zst
nixpkgs-a774af3605a86719f813ccb80e9f8a5bdef2ee0a.zip
psi-notify: move systemd unit to $out/lib
In $out/share it is NOT picked up into /etc/systemd/... when psi-notify is
added to configuration.systemd.packages .

(Originally put in $out/share b/c a hook copies from $out/lib into there
... so why not just put there? This is why.)
Diffstat (limited to 'pkgs/applications/misc/psi-notify')
-rw-r--r--pkgs/applications/misc/psi-notify/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/psi-notify/default.nix b/pkgs/applications/misc/psi-notify/default.nix
index 5a4b6f385df..9e4dcd783b7 100644
--- a/pkgs/applications/misc/psi-notify/default.nix
+++ b/pkgs/applications/misc/psi-notify/default.nix
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
 
     install -D psi-notify $out/bin/psi-notify
     substituteInPlace psi-notify.service --replace psi-notify $out/bin/psi-notify
-    install -D psi-notify.service $out/share/systemd/user/psi-notify.service
+    install -D psi-notify.service $out/lib/systemd/user/psi-notify.service
 
     runHook postInstall
   '';