CrOS/hosts/common/optional/podman.nix
2026-02-11 09:27:02 -05:00

14 lines
293 B
Nix

{ pkgs, ... }:
{
virtualisation.podman = {
enable = true;
dockerCompat = true;
defaultNetwork.settings.dns_enabled = true;
extraPackages = with pkgs; [
podman-compose
];
};
# required for podman DNS resolution
networking.firewall.allowedUDPPorts = [ 53 ];
}