From df2de6c0260738ebce6b083269983583a3734da7 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sat, 5 Jul 2025 17:00:03 -0400 Subject: [PATCH] global/nix: allow overriding gc options and dates --- modules/global/nix.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/global/nix.nix b/modules/global/nix.nix index fa54741..05e3184 100644 --- a/modules/global/nix.nix +++ b/modules/global/nix.nix @@ -65,8 +65,8 @@ in gc = { automatic = lib.mkDefault true; - options = "--delete-older-than 7d"; - dates = "weekly"; + options = lib.mkDefault "--delete-older-than 7d"; + dates = lib.mkDefault "weekly"; }; optimise.automatic = true;