mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
checks: fix gc condition
Don't fail if the user is configured properly.
This commit is contained in:
parent
918492f3ef
commit
28710738a3
1 changed files with 1 additions and 1 deletions
|
@ -171,7 +171,7 @@ in
|
||||||
runLink
|
runLink
|
||||||
(mkIf config.services.nix-daemon.enable buildUsers)
|
(mkIf config.services.nix-daemon.enable buildUsers)
|
||||||
nixStore
|
nixStore
|
||||||
(mkIf config.nix.gc.automatic nixGarbageCollector)
|
(mkIf (config.nix.gc.automatic && config.nix.user != null) nixGarbageCollector)
|
||||||
nixChannels
|
nixChannels
|
||||||
nixInstaller
|
nixInstaller
|
||||||
(mkIf cfg.verifyNixPath nixPath)
|
(mkIf cfg.verifyNixPath nixPath)
|
||||||
|
|
Loading…
Add table
Reference in a new issue