From 6fcd3d801eaa1898bc0baa970064e728896e28b3 Mon Sep 17 00:00:00 2001 From: Alexander Kobjolke Date: Sun, 17 Mar 2024 14:14:58 +0100 Subject: [PATCH] feat(dregil): Allow connection to 5223 (simplex-desktop) --- hosts/dregil/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/dregil/configuration.nix b/hosts/dregil/configuration.nix index ff43a6b..902735c 100644 --- a/hosts/dregil/configuration.nix +++ b/hosts/dregil/configuration.nix @@ -102,7 +102,7 @@ in { # Open ports in the firewall # 22000, 21027 syncthing discovery and connectivity - networking.firewall.allowedTCPPorts = [ 22000 ]; + networking.firewall.allowedTCPPorts = [ 5223 22000 ]; networking.firewall.allowedUDPPorts = [ 21027 22000 ]; # Or disable the firewall altogether. # networking.firewall.enable = false;