diff options
| author | Eduard Bachmakov <eduarrrd@users.noreply.github.com> | 2021-09-29 17:18:19 +0200 |
|---|---|---|
| committer | github-actions[bot] <github-actions[bot]@users.noreply.github.com> | 2021-10-03 15:13:17 +0000 |
| commit | 336da77eaca48a819f79f55b76ad9fb23411b7a2 (patch) | |
| tree | 01d2f3a7722cd0ef975a4cc6141d19109467db1a | |
| parent | xfce.xfce4-notifyd: enable starting the daemon via DBus (diff) | |
| download | nixpkgs-336da77eaca48a819f79f55b76ad9fb23411b7a2.tar.gz | |
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.)
(cherry picked from commit a774af3605a86719f813ccb80e9f8a5bdef2ee0a)
| -rw-r--r-- | pkgs/applications/misc/psi-notify/default.nix | 2 |
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 5a4b6f385df2..9e4dcd783b73 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 ''; |
