From 51f755c57e828b403059e79551ef3552bd8b2108 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Sun, 16 Feb 2025 14:12:21 +0100 Subject: [PATCH] Swap docker for podman on antares --- hosts/antares/configuration.nix | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/hosts/antares/configuration.nix b/hosts/antares/configuration.nix index f5e8769..8a0dbbb 100644 --- a/hosts/antares/configuration.nix +++ b/hosts/antares/configuration.nix @@ -27,13 +27,25 @@ networking.hostName = "antares"; time.timeZone = "Europe/Berlin"; - virtualisation.docker = { + virtualisation.podman = { enable = true; + dockerCompat = true; + autoPrune = { + enable = true; + dates = "weekly"; + flags = [ + "--filter=until=24h" + "--filter=label!=important" + ]; + }; + defaultNetwork.settings.dns_enabled = true; + }; environment.systemPackages = map lib.lowPrio [ pkgs.curl pkgs.gitMinimal + pkgs.podman-compose ]; users.users.dk = { -- 2.47.2