From 48c0e8e005dbae9b38f7466d0aadf05c162b55d6 Mon Sep 17 00:00:00 2001 From: ooks-io Date: Sat, 13 Apr 2024 18:44:05 +1200 Subject: [PATCH] feat(profile:gaming): add halo infinite ports to firewall --- system/profiles/gaming/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/system/profiles/gaming/default.nix b/system/profiles/gaming/default.nix index 75599a0..a474d61 100644 --- a/system/profiles/gaming/default.nix +++ b/system/profiles/gaming/default.nix @@ -50,5 +50,16 @@ in }; }; }; + networking.firewall = { + allowedTCPPorts = [ 3074 ]; + allowedUDPPorts = [ + 88 + 500 + 3074 + 2075 + 3544 + 4500 + ]; + }; }; }