From c37448ec9317f2c1e5a72bf44e38750dd978eea1 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Wed, 22 Jan 2025 09:26:38 -0600 Subject: [PATCH] enable auto-gc daily --- hosts/server/default.nix | 2 +- hosts/workstation/default.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/server/default.nix b/hosts/server/default.nix index 9b2a54d..00b2cc4 100644 --- a/hosts/server/default.nix +++ b/hosts/server/default.nix @@ -19,7 +19,7 @@ in { }; gc = { automatic = true; - dates = "weekly"; + dates = "daily"; options = "--delete-older-than 7d"; }; }; diff --git a/hosts/workstation/default.nix b/hosts/workstation/default.nix index a68c1c1..182bba5 100644 --- a/hosts/workstation/default.nix +++ b/hosts/workstation/default.nix @@ -20,7 +20,7 @@ in { }; gc = { automatic = true; - dates = "weekly"; + dates = "daily"; options = "--delete-older-than 7d"; }; };