1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-24 09:41:15 +02:00

Restore org.nixos.nix-daemon.plist installation

This commit is contained in:
Robert Hensing 2024-12-03 16:37:07 +01:00
parent d67e24afec
commit 038ab46d7a
2 changed files with 14 additions and 0 deletions

13
misc/launchd/meson.build Normal file
View file

@ -0,0 +1,13 @@
configure_file(
input : 'org.nixos.nix-daemon.plist.in',
output : 'org.nixos.nix-daemon.plist',
install : true,
install_dir : get_option('prefix') / 'Library/LaunchDaemons',
install_mode : 'rw-r--r--',
configuration : {
# TODO: unhardcode paths with something like:
# 'storedir' : store_dir,
# 'localstatedir' : localstatedir,
# 'bindir' : bindir,
},
)

View file

@ -2,4 +2,5 @@ subdir('bash')
subdir('fish')
subdir('zsh')
subdir('launchd')
subdir('systemd')