services.minecraft-server.serverProperties
NixOS option
Minecraft server properties for the server.properties file. Only has an effect when services.minecraft-server.declarative is set to true. See https://minecraft.wiki/w/Server.properties#Java_Edition for documentation on these values.
type: attribute set of (boolean or signed integer or string)Default
{ }Example
declared in: nixos/modules/services/games/minecraft-server.nixView source on NixOS/nixpkgs →{
server-port = 43000;
difficulty = 3;
gamemode = 1;
max-players = 5;
motd = "NixOS Minecraft server!";
white-list = true;
enable-rcon = true;
"rcon.password" = "hunter2";
}