From 497287e4a36767bca6ca630217dc82ce1a20339a Mon Sep 17 00:00:00 2001
From: Oliver Davies <oliver@oliverdavies.dev>
Date: Wed, 7 Feb 2024 23:28:44 +0000
Subject: [PATCH] Run garbage collection more frequently

---
 system/nixos/configuration.nix | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/system/nixos/configuration.nix b/system/nixos/configuration.nix
index c769ff09..77e708df 100644
--- a/system/nixos/configuration.nix
+++ b/system/nixos/configuration.nix
@@ -206,8 +206,8 @@ in
   nix = {
     gc = {
       automatic = true;
-      dates = "weekly";
-      options = "--delete-older-than 30d";
+      dates = "daily";
+      options = "--delete-older-than 7d";
     };
 
     optimise.automatic = true;