nixos/services/astroneer.nix

6 lines
222 B
Nix
Raw Normal View History

2024-01-30 14:21:50 +00:00
{pkgs, ...}: {
environment.systemPackages = with pkgs; [steamcmd];
networking.firewall.allowedTCPPorts = [8777];
services.caddy.virtualHosts."astro.xenia.me.uk".extraConfig = "reverse_proxy http://localhost:8777";
}