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