diff --git a/hosts/architect/firewall.nix b/hosts/architect/firewall.nix index dec5933..43117d5 100644 --- a/hosts/architect/firewall.nix +++ b/hosts/architect/firewall.nix @@ -17,7 +17,8 @@ let wireguard_udp = 1194; # TCP/UDP services - transmission = 51413; + torrent_a = 51413; + torrent_b = 51414; # grouping open_tcp_ports = lib.concatMapStringsSep "," (x: toString x) [ @@ -26,11 +27,13 @@ let https_tcp synapse_tcp gitea_tcp - transmission + torrent_a + torrent_b ]; open_udp_ports = lib.concatMapStringsSep "," (x: toString x) [ wireguard_udp - transmission + torrent_a + torrent_b ]; open_tcp_ports_vpn = lib.concatMapStringsSep "," (x: toString x) [ ssh_tcp