plug hole in firewall

format
This commit is contained in:
Kiara Grouwstra 2025-08-04 10:34:50 +02:00
parent 1e7cdb558d
commit 0a331fb4ae
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

@ -203,13 +203,19 @@
networking = {
nftables.enable = lib.mkForce false;
};
networking.firewall.allowedTCPPorts = [
firewall = {
allowedTCPPorts = [
22
80
443
];
# needed for podman to be able to talk over dns
interfaces."podman0" = {
allowedUDPPorts = [ 53 ];
allowedTCPPorts = [ 53 ];
};
};
};
virtualisation.podman = {
enable = true;