feat(nixos): some moves to nixos server

This commit is contained in:
2025-12-28 19:18:15 +00:00
parent 96782b7b51
commit 4a9bb42015
12 changed files with 253 additions and 45 deletions

View File

@@ -0,0 +1,17 @@
{ pkgs, ... }: let
astroneerServer = pkgs.hectic.helpers.steam.buildSteamServer 728470;
in {
options = {
};
config = {
systemd.services."hectic-astroneer-server" = {
after = [ "network.target" ];
wantedBy = [ "multi-user.target" ];
path = with pkgs; [ steamcmd ];
script = ''
echo zalupa
'';
};
};
}