From deb99c4598c49ff8bed84b131d3e9d026f7c2fa4 Mon Sep 17 00:00:00 2001 From: pazpi Date: Wed, 20 Aug 2025 23:42:56 +0200 Subject: [PATCH] Default GC is on and daily --- modules/utils/commons.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/utils/commons.nix b/modules/utils/commons.nix index 1c034d4..5b543ea 100644 --- a/modules/utils/commons.nix +++ b/modules/utils/commons.nix @@ -21,7 +21,7 @@ in gc = { enable = lib.mkOption { - default = false; + default = true; type = lib.types.bool; description = "Enable garbage collection"; }; @@ -49,7 +49,7 @@ in gc = lib.mkIf cfg.gc.enable { # Auto delete old generations automatic = true; - dates = "weekly"; + dates = "daily"; options = "--delete-older-than 2d"; }; };