From a5c80ecf5faf2e5a944d4c5d74982dfb4d347149 Mon Sep 17 00:00:00 2001 From: Nio Date: Tue, 12 May 2026 10:39:57 +0200 Subject: [PATCH] Allow out port 445 --- mount.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mount.nix b/mount.nix index e1de835..36a7774 100644 --- a/mount.nix +++ b/mount.nix @@ -65,4 +65,9 @@ cifs-utils sshfs ]; + + # For SMB connection allowing outgoing 445 + networking.firewall.extraCommands = '' + iptables -A OUTPUT -p tcp --dport 445 -j ACCEPT + ''; }