diff --git a/config/nixos/common/server.nix b/config/nixos/common/server.nix index 6565cd6..45199b8 100644 --- a/config/nixos/common/server.nix +++ b/config/nixos/common/server.nix @@ -20,9 +20,14 @@ networking.firewall = { enable = true; allowedTCPPorts = [ - # SSH - 400 + 400 # SSH + 80 # HTTP + 443 # HTTPS + 22 # Git over SSH + 32400 # Plex + ]; + allowedUDPPorts = [ + 51820 # WireGuard ]; - allowedUDPPorts = [ ]; }; }