From 04665a586106b81f0393faeda702bb9b5b22b5a3 Mon Sep 17 00:00:00 2001
From: ene <ene@sils.li>
Date: Sat, 25 Feb 2023 15:55:23 +0100
Subject: Fix(nix): Don't remove old gens so quickly

---
 services/nix/default.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'services')

diff --git a/services/nix/default.nix b/services/nix/default.nix
index b0720788..b86e46fe 100644
--- a/services/nix/default.nix
+++ b/services/nix/default.nix
@@ -8,8 +8,8 @@
   nix = {
     gc = {
       automatic = true;
-      dates = "daily";
-      options = "--delete-older-than 3";
+      dates = "weekly";
+      options = "--delete-older-than 7d";
     };
     settings = {
       auto-optimise-store = true;
-- 
cgit 1.4.1