From ed7850fe3c13aa53426abcabfec04acfb768a803 Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Mon, 4 Mar 2024 10:53:14 -0500 Subject: [PATCH] switched nix gc from daily to weekly to avoid conflict with nixos upgrade --- system/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/default.nix b/system/default.nix index 61f6254b..fb761796 100644 --- a/system/default.nix +++ b/system/default.nix @@ -39,7 +39,7 @@ # Delete generations older than 7 days. nix.gc = { automatic = true; - dates = "daily"; + dates = "weekly"; options = "--delete-older-than 7d"; };