add new minecraft server

This commit is contained in:
Dmitriy Kholkin 2024-06-26 12:35:17 +03:00
parent d5c6b07d4f
commit f2ca2bd317
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2

View File

@ -40,14 +40,28 @@ in
jvmInitialAllocation = "6144m"; jvmInitialAllocation = "6144m";
jvmPackage = jre17; jvmPackage = jre17;
serverConfig = defaults // { serverConfig = defaults // {
server-port = 25567; server-port = 25585;
rcon-port = 25568; rcon-port = 25586;
motd = "StaTech"; motd = "StaTech";
max-world-size = 50000; max-world-size = 50000;
level-seed = "-4411466874705470064"; level-seed = "-4411466874705470064";
}; };
}; };
all-of-create = { all-of-create = {
enable = false;
inherit rsyncSSHKeys jvmOpts;
jvmMaxAllocation = "4096m";
jvmInitialAllocation = "4096m";
jvmPackage = jre21;
serverConfig = defaults // {
server-port = 25575;
rcon-port = 25576;
motd = "All of Create";
max-world-size = 50000;
level-seed = "-6893059259197159072";
};
};
create = {
enable = true; enable = true;
inherit rsyncSSHKeys jvmOpts; inherit rsyncSSHKeys jvmOpts;
jvmMaxAllocation = "4096m"; jvmMaxAllocation = "4096m";
@ -56,9 +70,9 @@ in
serverConfig = defaults // { serverConfig = defaults // {
server-port = 25565; server-port = 25565;
rcon-port = 25566; rcon-port = 25566;
motd = "All of Create"; motd = "AtaraxiaSjel's Create";
max-world-size = 50000; max-world-size = 50000;
level-seed = "-6893059259197159072"; # level-seed = "-6893059259197159072";
}; };
}; };
}; };