From eea3683aa77d8d86974edb6b90f3abbc509538e2 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 11 Feb 2026 01:39:06 -0800 Subject: [PATCH] podman: Enable daily auto-prune with --all flag Without --all, only dangling (untagged) images were pruned, allowing tagged-but-unused CI images to accumulate (~223G). Co-Authored-By: Claude Opus 4.6 --- nixos/base.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/base.nix b/nixos/base.nix index 8a820bdb..159f4ae7 100644 --- a/nixos/base.nix +++ b/nixos/base.nix @@ -84,6 +84,8 @@ makeEnable config "myModules.base" true { enable = true; autoPrune = { enable = true; + dates = "daily"; + flags = ["--all"]; }; };