From 2210d6b5e3adb826e853e95105c6f415a68cfe11 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Mon, 8 Jul 2024 10:49:07 +0300 Subject: [PATCH] Prune stuff weekly instead --- hosts/cube/podman.nix | 2 +- modules/nix.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/cube/podman.nix b/hosts/cube/podman.nix index 724c663..b150a3c 100644 --- a/hosts/cube/podman.nix +++ b/hosts/cube/podman.nix @@ -8,7 +8,7 @@ systemConfiguration { defaultNetwork.settings.dns_enabled = true; autoPrune = enabled { - dates = "daily"; + dates = "weekly"; flags = [ "--all" ]; }; }; diff --git a/modules/nix.nix b/modules/nix.nix index 5a7d61b..b6b3b71 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -6,7 +6,7 @@ nix = { gc = { automatic = true; - dates = "daily"; + dates = "weekly"; options = "--delete-older-than 3d"; persistent = true; };