From d66b0162d19bb56aba30b55dc3d6c3a2e9c9c353 Mon Sep 17 00:00:00 2001 From: wo2wz <189177184+wo2wz@users.noreply.github.com> Date: Tue, 16 Dec 2025 10:38:52 -0500 Subject: [PATCH] velocity: remove udp 10000, remove home directory from user --- modules/nixos/services/gameserver/velocity.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/modules/nixos/services/gameserver/velocity.nix b/modules/nixos/services/gameserver/velocity.nix index 98c6c62..07bcf13 100644 --- a/modules/nixos/services/gameserver/velocity.nix +++ b/modules/nixos/services/gameserver/velocity.nix @@ -13,19 +13,13 @@ networking.firewall = { allowedTCPPorts = [ 10000 ]; - allowedUDPPorts = [ - 10000 - 19132 # for geyser - ]; + allowedUDPPorts = [ 19132 ]; # for geyser }; users = { users.velocity = { group = "velocity"; isSystemUser = true; - - home = "/var/lib/velocity"; - createHome = true; }; groups.velocity = {}; };