From 0064cb7af0ee1483cc42a6fcd0c26b79a6225238 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Fri, 2 Feb 2024 08:53:54 -0600 Subject: [PATCH] workstation | attempting to get kdeconnectd working w/ the firewall --- workstation/default.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/workstation/default.nix b/workstation/default.nix index 0a63feb..0e3e957 100644 --- a/workstation/default.nix +++ b/workstation/default.nix @@ -267,16 +267,16 @@ in # allow the Tailscale UDP port through the firewall allowedUDPPorts = [ config.services.tailscale.port ]; - #allowedUDPPortRanges = [ { from = 1714 ; to = 1764; }]; + allowedTCPPortRanges = [ { from = 1714 ; to = 1764; } ]; + allowedUDPPortRanges = [ { from = 1714 ; to = 1764; } ]; # allow you to SSH in over the public internet allowedTCPPorts = [ 22 ]; - #allowedTCPPortRanges = [ { from = 1714 ; to = 1764; } ]; - interfaces = { - "tailscale0" = { - allowedTCPPorts = [ 22 8080 8443 ]; - }; - }; + #interfaces = { + #"tailscale0" = { + #allowedTCPPorts = [ 22 8080 8443 ]; + #}; + #}; };