NixOS-Config/system/server/minecraft/servers/blockworld.nix

19 lines
559 B
Nix
Raw Normal View History

{pkgs, ...}: let
common = import ../common.nix { inherit pkgs; };
in {
services.minecraft-servers.servers.blockworld = {
enable = true;
autoStart = false;
package = pkgs.paperServers.paper-1_21_1;
jvmOpts = "-Xmx3072M";
serverProperties = common.serverProperties // {
difficulty = 2;
server-port = 30012;
2024-09-25 03:44:06 -04:00
motd = "\\u00A7fArchival \\u00A7l\\u00A7n\\u00A7cBloxelcom \\u00A7r\\u00A7fMinecraft server.";
};
whitelist = common.whitelist;
2024-09-25 03:44:06 -04:00
symlinks = common.paperSymlinks;
files = common.configFiles;
};
}