commit | 7a1f80dd36fef0f97c7a85eff55bbd64bf566ecb | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Thu Apr 06 09:46:16 2023 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Thu Apr 06 09:46:16 2023 +0000 |
tree | f36120a83e0957b65116bc4555a7770b1b01366d | |
parent | ae28c34fb7e2f36b4924941b7d30c5e8920fec14 [diff] |
Allow some TCP ports that I need through
diff --git a/modules/firewall.nix b/modules/firewall.nix index 54943a9..25a9210 100644 --- a/modules/firewall.nix +++ b/modules/firewall.nix
@@ -1,3 +1,8 @@ { config.networking.firewall.enable = true; + + config.networking.firewall.allowedTCPPorts = [ + 19000 # Expo + 1935 # RTMP + ]; }