Fix networking bit

This commit is contained in:
2026-07-08 19:23:52 +01:00
parent b671cdd1c4
commit 315274e323
+4 -1
View File
@@ -27,10 +27,13 @@
''; '';
}; };
networking.firewall = { networking = {
tempAddresses = "disabled";
firewall = {
enable = true; enable = true;
allowedTCPPorts = [ 22 80 443 ]; allowedTCPPorts = [ 22 80 443 ];
allowedUDPPorts = []; allowedUDPPorts = [];
allowPing = true; allowPing = true;
}; };
};
} }