aboutsummaryrefslogtreecommitdiff
path: root/hosts/sol/modules/default.nix
blob: f1c71098873154b0289fbbef15eb580ce956fdc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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" ];
    };
  };
}