diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2022-03-25 16:46:28 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2022-03-25 16:48:50 +0000 |
commit | 0966532dc15485f24080e868f0c0553b5dc762c9 (patch) | |
tree | 4c3b0f31331b0588133bbbd0083adc85450fcc46 /misc/systemd/local.mk | |
parent | e5c42bba9bf76d00fb15ec9a179bf91aa81c38c6 (diff) | |
parent | 1844172dd16cab611a0148be9381ab856bf241df (diff) |
Merge remote-tracking branch 'upstream' into indexed-store-path-outputs
Co-Authored-By: Tom Bereknyei <tomberek@gmail.com>
Diffstat (limited to 'misc/systemd/local.mk')
-rw-r--r-- | misc/systemd/local.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/misc/systemd/local.mk b/misc/systemd/local.mk index 1fa037485..76121a0f9 100644 --- a/misc/systemd/local.mk +++ b/misc/systemd/local.mk @@ -1,7 +1,8 @@ ifdef HOST_LINUX $(foreach n, nix-daemon.socket nix-daemon.service, $(eval $(call install-file-in, $(d)/$(n), $(prefix)/lib/systemd/system, 0644))) + $(foreach n, nix-daemon.conf, $(eval $(call install-file-in, $(d)/$(n), $(prefix)/lib/tmpfiles.d, 0644))) - clean-files += $(d)/nix-daemon.socket $(d)/nix-daemon.service + clean-files += $(d)/nix-daemon.socket $(d)/nix-daemon.service $(d)/nix-daemon.conf endif |