plug hole in firewall

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

View file

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