From 55bf8803b34e51fcd89e0b3f27509f69f5ca0422 Mon Sep 17 00:00:00 2001 From: mc-fucker Date: Thu, 6 Apr 2023 08:18:45 +0200 Subject: [PATCH] disabled podman prune until nixos 23.05 drops --- modules/generic.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/generic.nix b/modules/generic.nix index 88a6ab2..94848db 100644 --- a/modules/generic.nix +++ b/modules/generic.nix @@ -101,8 +101,10 @@ in (import ./vim.nix) ]; - virtualisation.podman.autoPrune.enable = config.virtualisation.podman.enable; systemd.timers."podman-auto-update".enable = config.virtualisation.podman.enable; + # disabling prune until nixos 23.05 drops + # due to compability issues + #virtualisation.podman.autoPrune.enable = config.virtualisation.podman.enable; nix.gc = { automatic = true;