configurations for my servers and desktops
nix nixos flake dots dotfiles

fix: socat

+1 -2
+1 -2
hosts/bluepill-proxy/modules/socat.nix
··· 4 4 allowedUDPPorts = [25565 23343 24454 22232]; 5 5 }; 6 6 7 - environment.systemPackages = with pkgs; [socat]; 8 - 9 7 systemd.services.minecraft-forward = { 10 8 description = "Minecraft TCP+UDP forward"; 11 9 wants = ["network-online.target"]; ··· 25 23 User = "nobody"; 26 24 StandardOutput = "journal"; 27 25 StandardError = "journal"; 26 + Path = "${pkgs.socat}/bin:/run/current-system/sw/bin:/usr/bin:/bin"; 28 27 }; 29 28 wantedBy = ["multi-user.target"]; 30 29 };