aboutsummaryrefslogtreecommitdiff
path: root/hosts/sol/modules
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/sol/modules')
-rw-r--r--hosts/sol/modules/default.nix15
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" ];
+ };
+ };
+}