nixos/hosts/architect/minecraft.nix
Giulio De Pasquale 91ef8ff1e2 formatting
2021-11-25 11:42:32 +00:00

16 lines
334 B
Nix

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