nixos/system/services/astroneer.nix

7 lines
228 B
Nix
Raw Permalink Normal View History

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