From 826481cf5e5655e9f282c0fd23d54a70479686ad Mon Sep 17 00:00:00 2001 From: kalipso Date: Thu, 19 Dec 2024 22:30:14 +0100 Subject: [PATCH] [vpn] open wireguard port --- machines/vpn/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/machines/vpn/configuration.nix b/machines/vpn/configuration.nix index f47d31a7..57e6341b 100644 --- a/machines/vpn/configuration.nix +++ b/machines/vpn/configuration.nix @@ -10,6 +10,9 @@ with lib; hostName = mkDefault "vpn"; useDHCP = false; nameservers = [ "1.1.1.1" ]; + firewall = { + allowedUDPPorts = [ 51821 ]; + }; }; imports = [