Files
nixos-generators/hosts/m3-zelda/services/podman.nix

21 lines
407 B
Nix
Raw Normal View History

2025-03-27 15:21:42 +01:00
{pkgs, ...}: {
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 = with pkgs; [
podman-compose
];
}