From 5c15f1f338fcdec81550c0f973bb03e229ad512e Mon Sep 17 00:00:00 2001 From: Daniel Flanagan Date: Fri, 28 Jun 2024 22:54:16 -0500 Subject: [PATCH] Gamez --- nixos/foxtrot.nix | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/nixos/foxtrot.nix b/nixos/foxtrot.nix index 5b647f8..b89d4ba 100644 --- a/nixos/foxtrot.nix +++ b/nixos/foxtrot.nix @@ -33,7 +33,6 @@ environment = { systemPackages = with pkgs; [ - steam spotify discord slack @@ -190,8 +189,18 @@ # }; # }; - networking.firewall.allowedTCPPorts = [ + networking.firewall.allowedTCPPorts = let + stardewValley = 24642; + in [ 8000 # dev stuff + stardewValley + 7777 + ]; + networking.firewall.allowedUDPPorts = let + stardewValley = 24642; + in [ + 8000 # dev stuff + stardewValley 7777 ];