From 745bb586fab2b7f4c958ba36ed190b576fc29344 Mon Sep 17 00:00:00 2001 From: Sebastian Moser Date: Wed, 10 Apr 2024 15:25:15 +0200 Subject: [PATCH] added firewall allow rules, so that the share nm connection works on lush --- hosts/lush.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/lush.nix b/hosts/lush.nix index 981ae13..d6f5ed6 100644 --- a/hosts/lush.nix +++ b/hosts/lush.nix @@ -105,6 +105,13 @@ ####################################### networking ########################## + networking.firewall.allowedUDPPorts = [ + 3702 # wsdd + 51820 # wireguard + 67 # allow DHCP traffic + 53 # allow dns + ]; + networking.hostName = "lush"; networking.networkmanager.enable = true;