From a66011097b9ff8123ab17850c456112720cf9f0a Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Tue, 31 Oct 2023 21:32:53 -0400 Subject: [PATCH] global/nix: make gc only delete generations after 7d --- modules/global/nix.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/global/nix.nix b/modules/global/nix.nix index 0d3f467..201dcea 100644 --- a/modules/global/nix.nix +++ b/modules/global/nix.nix @@ -26,7 +26,7 @@ with lib; gc = { automatic = true; - options = "--delete-older-than 3d"; + options = "--delete-older-than 7d"; dates = "weekly"; };