allowed custom tcp ports

This commit is contained in:
2025-06-24 12:54:13 -04:00
parent 90931e37ff
commit 734338f51e

View File

@ -87,7 +87,12 @@
# Core networking module (see ../../networking/core.nix) # Core networking module (see ../../networking/core.nix)
network = { network = {
firewall.enable = true; firewall = {
enable = true;
tcpPorts = {
allowedPorts = [8123];
};
};
networkManager.enable = true; networkManager.enable = true;
}; };