nix-conf/modules/minecraft-server/default.nix

20 lines
456 B
Nix
Raw Normal View History

2023-07-27 14:19:06 +02:00
{ ... }:
2023-07-26 21:00:43 +02:00
{
services.minecraft-server = {
enable = true;
eula = true;
openFirewall = true;
declarative = true;
serverProperties = {
difficulty = 3;
enable-rcon = true;
"rcon.password" = "test";
motd = "\\u00A7cWake up to reality! Nothing ever goes as planned in this accursed world.";
spawn-protection = 0;
level-type = "minecraft:amplified";
level-name = "amplified_world";
};
};
}