open udp 53 on podman hosts

This commit is contained in:
TheWanderingCrow 2026-02-11 09:27:02 -05:00
parent 9c6c86c604
commit a591184639

View file

@ -1,4 +1,5 @@
{pkgs, ...}: {
{ pkgs, ... }:
{
virtualisation.podman = {
enable = true;
dockerCompat = true;
@ -7,4 +8,7 @@
podman-compose
];
};
# required for podman DNS resolution
networking.firewall.allowedUDPPorts = [ 53 ];
}