diff options
| -rw-r--r-- | hosts/antares/configuration.nix | 14 |
1 files changed, 13 insertions, 1 deletions
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 = { |
