mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-06 10:16:33 +01:00
20 lines
462 B
Nix
20 lines
462 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
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";
|
||
|
};
|
||
|
};
|
||
|
}
|