diff options
| author | Michael Hoang <enzime@users.noreply.github.com> | 2023-06-07 12:50:00 +1000 |
|---|---|---|
| committer | Michael Hoang <enzime@users.noreply.github.com> | 2023-07-08 14:05:37 +1000 |
| commit | d2b01ab455cb3fcae531fecc5fd23947dd102065 (patch) | |
| tree | 984807623ffd0316f6635663606ee4ab6771b727 /modules/nix/default.nix | |
| parent | b06bab83bdf285ea0ae3c8e145a081eb95959047 (diff) | |
nix/linux-builder: init
Diffstat (limited to 'modules/nix/default.nix')
| -rw-r--r-- | modules/nix/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/nix/default.nix b/modules/nix/default.nix index 7445b30..8d88538 100644 --- a/modules/nix/default.nix +++ b/modules/nix/default.nix @@ -175,7 +175,7 @@ in default = false; description = lib.mdDoc '' If set, Nix will use the daemon to perform operations. - Use this instead of services.nix-daemon.enable if you don't wan't the + Use this instead of services.nix-daemon.enable if you don't want the daemon service to be managed for you. ''; }; @@ -790,9 +790,9 @@ in ]); users.knownGroups = mkIf cfg.configureBuildUsers [ "nixbld" ]; - # Unreladed to use in NixOS module + # Unrelated to use in NixOS module system.activationScripts.nix-daemon.text = mkIf cfg.useDaemon '' - if ! diff /etc/nix/nix.conf /run/current-system/etc/nix/nix.conf &> /dev/null; then + if ! diff /etc/nix/nix.conf /run/current-system/etc/nix/nix.conf &> /dev/null || ! diff /etc/nix/machines /run/current-system/etc/nix/machines &> /dev/null; then echo "reloading nix-daemon..." >&2 launchctl kill HUP system/org.nixos.nix-daemon fi |
