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

Install init system configs only when relevant

This commit is contained in:
Robert Hensing 2024-12-03 16:51:01 +01:00
parent 038ab46d7a
commit 63c0f0dcd2

View file

@ -2,5 +2,10 @@ subdir('bash')
subdir('fish') subdir('fish')
subdir('zsh') subdir('zsh')
subdir('launchd') if host_machine.system() == 'linux'
subdir('systemd') subdir('systemd')
endif
if host_machine.system() == 'darwin'
subdir('launchd')
endif