diff options
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" ]; + }; + }; +} |