From: Dominik Kaiser Date: Sun, 16 Feb 2025 13:12:21 +0000 (+0100) Subject: Swap docker for podman on antares X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;h=51f755c57e828b403059e79551ef3552bd8b2108;p=config%2Fnixos.git Swap docker for podman on antares --- 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 = {