From aedd304983ddf3765434aa2dcc0089d47a524ccc Mon Sep 17 00:00:00 2001 From: Daiderd Jordan Date: Thu, 3 Jan 2019 20:53:50 +0100 Subject: [PATCH] nix-gc: fix evaluation --- modules/system/checks.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/system/checks.nix b/modules/system/checks.nix index 380e7413..a2385ec1 100644 --- a/modules/system/checks.nix +++ b/modules/system/checks.nix @@ -171,7 +171,7 @@ in runLink (mkIf config.services.nix-daemon.enable buildUsers) nixStore - (mkIf (config.nix.gc.automatic && config.nix.user != null) nixGarbageCollector) + (mkIf (config.nix.gc.automatic && config.nix.gc.user != null) nixGarbageCollector) nixChannels nixInstaller (mkIf cfg.verifyNixPath nixPath)