From 22729ce7124c6e1cb5621381ad50608c602be3a2 Mon Sep 17 00:00:00 2001 From: Noa Aarts Date: Fri, 31 May 2024 09:30:05 +0200 Subject: [PATCH] re-add localsend port --- hosts/default/configuration.nix | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index a66aaa2..1408da6 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -375,8 +375,16 @@ }; # Open ports in the firewall. - networking.firewall.allowedTCPPorts = [ 80 443 ]; - networking.firewall.allowedUDPPorts = [ 80 443 ]; + networking.firewall.allowedTCPPorts = [ + 80 # http + 443 # https + 53317 # Localsend + ]; + networking.firewall.allowedUDPPorts = [ + 80 + 443 + 53317 + ]; # Or disable the firewall altogether. # networking.firewall.enable = false;