nixos/services/astroneer.nix

7 lines
232 B
Nix
Raw Normal View History

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [ steamcmd ];
networking.firewall.allowedTCPPorts = [ 8777 ];
services.caddy.virtualHosts."astro.xenia.me.uk".extraConfig =
"reverse_proxy http://localhost:8777";
}