nixos/hosts/architect/minecraft.nix
Giulio De Pasquale 3b740547c4 tab to 2 spaces
2021-08-23 20:00:19 +02:00

18 lines
313 B
Nix

{config, pkgs, ...}:
with import ./network.nix;
{
services.minecraft = {
enable = true;
eula = true;
serverProperties = {
motd = "Welcome on the RuNas server!";
};
};
networking.extraHosts = ''
${architect-lan} minecraft.giugl.io
${architect-wg} minecraft.giugl.io
'';
}