From c1b020723958f4af01f39f6aae8e1e7349f11098 Mon Sep 17 00:00:00 2001 From: Mikael Voss Date: Thu, 24 Oct 2024 22:51:16 +0200 Subject: [PATCH] nixos/nix: Enable garbage collection --- nixos/module/nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/module/nix.nix b/nixos/module/nix.nix index c007986..0f69cd2 100644 --- a/nixos/module/nix.nix +++ b/nixos/module/nix.nix @@ -7,7 +7,7 @@ in { ]; nix = { - package = pkgs.lix; + package = pkgs.lix.override { enableGC = true; }; channel.enable = false;