This commit is contained in:
Kiara Grouwstra 2025-08-04 14:53:37 +02:00
parent 33e0d5adfe
commit 6191409a34
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU

View file

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