From 6112af21d9fc1325451af1b555d2ca27b7e17d3f Mon Sep 17 00:00:00 2001 From: "Alexandre Cavalheiro S. Tiago da Silva" Date: Wed, 17 Jul 2024 11:28:36 -0300 Subject: [PATCH] hm: add mindustry-wayland and enable server ports in firewall --- home-manager.nix | 1 + nixos.nix | 2 ++ 2 files changed, 3 insertions(+) diff --git a/home-manager.nix b/home-manager.nix index c0d6e50..8c36341 100644 --- a/home-manager.nix +++ b/home-manager.nix @@ -99,6 +99,7 @@ winetricks # Games + mindustry-wayland shattered-pixel-dungeon xonotic diff --git a/nixos.nix b/nixos.nix index bc9caf6..9310348 100644 --- a/nixos.nix +++ b/nixos.nix @@ -106,12 +106,14 @@ networking.firewall = { allowedTCPPorts = [ 443 # SSL + 6567 # Mindustry 80 # HTTP ]; allowedUDPPorts = [ 2626 # Dolphin emulator 27015 # Source games + 6567 # Mindustry 8211 # Palworld ];