From ba56618049be92b1c2c5bbd215e55291dd661166 Mon Sep 17 00:00:00 2001 From: Julian Mutter Date: Mon, 23 Mar 2026 08:15:03 +0100 Subject: [PATCH] Fix hm standalone config --- homes/julian/hm-standalone-config.nix | 28 +++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/homes/julian/hm-standalone-config.nix b/homes/julian/hm-standalone-config.nix index d9b6f99..f91a197 100644 --- a/homes/julian/hm-standalone-config.nix +++ b/homes/julian/hm-standalone-config.nix @@ -13,6 +13,20 @@ }; }; + # Expire old hm generations + hm-expire = { + enable = true; + dates = "weekly"; + expire = "-30 days"; + }; + + # Remove unused packets + nix.gc = { + automatic = true; + dates = "weekly"; + persistent = true; + }; + # Setup binary caches nix.settings = { substituters = [ @@ -39,20 +53,6 @@ "ca-derivations" ]; - # Expire old hm generations - hm-expire = { - enable = true; - dates = "weekly"; - expire = "-30 days"; - }; - # Remove unused packets - services.nix-gc = { - enable = true; - automatic = true; - frequency = "weekly"; - persistent = true; - }; - # nix.settings. # warn-dirty = false; # TODO: do I want this # # Ensure we can still build when missing-server is not accessible