about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorSilvan Mosberger <infinisil@icloud.com>2018-10-14 14:10:03 +0200
committerGitHub <noreply@github.com>2018-10-14 14:10:03 +0200
commit0ea64098dc1b1f8cb797e61486b0985f8cc44700 (patch)
treed346aca69174be5f872c06199e238684dba36138 /nixos
parent45c7d0930490d542f96e4ec795b0b629dd400c49 (diff)
parent9cd21807c8b6261c0e4d32c8d430bd18e54fde0d (diff)
downloadnixlib-0ea64098dc1b1f8cb797e61486b0985f8cc44700.tar
nixlib-0ea64098dc1b1f8cb797e61486b0985f8cc44700.tar.gz
nixlib-0ea64098dc1b1f8cb797e61486b0985f8cc44700.tar.bz2
nixlib-0ea64098dc1b1f8cb797e61486b0985f8cc44700.tar.lz
nixlib-0ea64098dc1b1f8cb797e61486b0985f8cc44700.tar.xz
nixlib-0ea64098dc1b1f8cb797e61486b0985f8cc44700.tar.zst
nixlib-0ea64098dc1b1f8cb797e61486b0985f8cc44700.zip
Merge pull request #48006 from NickHu/psd
profile-sync-daemon: add missing path to systemd service
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/desktops/profile-sync-daemon.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/desktops/profile-sync-daemon.nix b/nixos/modules/services/desktops/profile-sync-daemon.nix
index 4165bb64fe46..e4e47cfbd438 100644
--- a/nixos/modules/services/desktops/profile-sync-daemon.nix
+++ b/nixos/modules/services/desktops/profile-sync-daemon.nix
@@ -36,7 +36,7 @@ in {
             description = "Profile Sync daemon";
             wants = [ "psd-resync.service" "local-fs.target" ];
             wantedBy = [ "default.target" ];
-            path = with pkgs; [ rsync kmod gawk nettools profile-sync-daemon ];
+            path = with pkgs; [ rsync kmod gawk nettools utillinux profile-sync-daemon ];
             unitConfig = {
               RequiresMountsFor = [ "/home/" ];
             };
@@ -55,7 +55,7 @@ in {
             wants = [ "psd-resync.timer" ];
             partOf = [ "psd.service" ];
             wantedBy = [ "default.target" ];
-            path = with pkgs; [ rsync kmod gawk nettools profile-sync-daemon ];
+            path = with pkgs; [ rsync kmod gawk nettools utillinux profile-sync-daemon ];
             serviceConfig = {
               Type = "oneshot";
               ExecStart = "${pkgs.profile-sync-daemon}/bin/profile-sync-daemon resync";