2021-12-21 21:48:41 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2022-02-01 01:38:05 +00:00
|
|
|
imports = [ ./minecraft.nix ];
|
2021-12-21 21:56:15 +00:00
|
|
|
|
2021-12-21 21:48:41 +00:00
|
|
|
users.motd = builtins.readFile ./motd;
|
2022-02-23 17:03:02 +00:00
|
|
|
services.prometheus.exporters.node.enable = true;
|
2021-12-21 21:48:41 +00:00
|
|
|
|
|
|
|
networking.hostName = "logos";
|
|
|
|
networking.hostId = "aeace675";
|
2021-12-26 18:33:48 +00:00
|
|
|
|
|
|
|
services.nginx.enable = true;
|
2021-12-21 21:48:41 +00:00
|
|
|
}
|