From 5dc9a063b4b1312c8042df6d39f0f5ea6538074a Mon Sep 17 00:00:00 2001 From: Henri Dohmen Date: Mon, 14 Jul 2025 23:04:34 +0200 Subject: [PATCH] auto gc on roam --- host/roam/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/host/roam/default.nix b/host/roam/default.nix index 2e3e990..6db9704 100644 --- a/host/roam/default.nix +++ b/host/roam/default.nix @@ -21,6 +21,12 @@ }; }; + nix.gc = { + automatic = true; + dates = "weekly"; + options = "--delete-older-than 15d"; + }; + # ====== DON'T CHANGE ====== system.stateVersion = "24.11"; }