Fix networking bit

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