diff options
author | tdback <tyler@tdback.net> | 2025-03-05 20:07:01 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-03-05 20:07:01 -0500 |
commit | 134264245ff8b1e6f0347b063b58821a938210f4 (patch) | |
tree | 9587090d787b75b161f10906cd1d5d23924f1194 /hosts/sol/modules/default.nix | |
parent | 4063c2a6e59c9cd5233688db679b80fadf16ad33 (diff) |
flake: add sol server
Diffstat (limited to 'hosts/sol/modules/default.nix')
-rw-r--r-- | hosts/sol/modules/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/hosts/sol/modules/default.nix b/hosts/sol/modules/default.nix new file mode 100644 index 0000000..f1c7109 --- /dev/null +++ b/hosts/sol/modules/default.nix @@ -0,0 +1,15 @@ +{ + modules = { + services.xonotic = { + enable = true; + hostname = "tdback's xonotic server"; + motd = "GLHF! Please report any issues to @tyler:tdback.net on matrix."; + g_mutators.grappling_hook = true; + }; + scripts.motd = { + enable = true; + networkInterfaces = [ "enp1s0" ]; + servicesToCheck = [ "xonotic" ]; + }; + }; +} |