From 3be790a70e64221e01eb88f9e6da515cc1faa095 Mon Sep 17 00:00:00 2001 From: Tasia Iso Date: Sat, 1 Feb 2025 22:46:13 +0100 Subject: [PATCH] autogc now deletes gens older than 60 days --- common/services/nix-gc.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/services/nix-gc.nix b/common/services/nix-gc.nix index 5358d5a..f0c3659 100644 --- a/common/services/nix-gc.nix +++ b/common/services/nix-gc.nix @@ -2,6 +2,6 @@ nix.gc = { automatic = true; dates = "weekly"; - options = "--delete-older-than 30d"; + options = "--delete-older-than 60d"; }; }