bucur/modules/services/firewall.nix
randogoth 590cc1b216 Add ORPort 4431 required for bridge relay; open port in firewall
Tor requires ORPort to be set when BridgeRelay=1.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-27 17:13:01 +03:00

5 lines
120 B
Nix

{ ... }:
{
networking.firewall.enable = true;
networking.firewall.allowedTCPPorts = [ 22 80 443 4430 4431 8443 ];
}