From 7800574958e3185173199f4c9db15bd066e91096 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lex=20Santiago?= Date: Fri, 21 Jun 2024 02:08:15 -0400 Subject: [PATCH] Open firewall on Domus for Syncthing --- domus.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/domus.nix b/domus.nix index d86ee19..4a91787 100644 --- a/domus.nix +++ b/domus.nix @@ -222,8 +222,8 @@ services.openssh.enable = true; # Open ports in the firewall. - networking.firewall.allowedTCPPorts = [ 80 443 2342 8384 8080 ]; - # networking.firewall.allowedUDPPorts = [ ... ]; + networking.firewall.allowedTCPPorts = [ 80 443 2342 8384 8080 22000 ]; + networking.firewall.allowedUDPPorts = [ 220000 21027 ]; # Or disable the firewall altogether. # networking.firewall.enable = false;