feat(mc): add builder server
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-02-18 17:51:17 -05:00
parent df73b65989
commit d862afec14

View file

@ -49,11 +49,11 @@ in {
# Vanilla Creative # Vanilla Creative
cv = { cv = {
enable = true; enable = false;
jvmMaxAllocation = "6G"; jvmMaxAllocation = "6G";
jvmInitialAllocation = "2G"; jvmInitialAllocation = "2G";
jvmPackage = jre17; jvmPackage = jre18;
jvmOpts = ""; jvmOpts = "";
serverConfig = serverConfig =
@ -64,7 +64,7 @@ in {
extra-options = { extra-options = {
difficulty = "hard"; difficulty = "hard";
enable-command-block = true; enable-command-block = true;
enforce-whitelist = true; enforce-white-list = true;
gamemode = "creative"; gamemode = "creative";
max-players = 6; max-players = 6;
view-distance = 16; view-distance = 16;
@ -109,6 +109,35 @@ in {
// defaults; // defaults;
}; };
# Modded https://www.curseforge.com/minecraft/modpacks/ultimate-building-modpack
# With https://www.curseforge.com/minecraft/mc-mods/bits-and-chisels
builder = {
enable = true;
jvmMaxAllocation = "6G";
jvmInitialAllocation = "2G";
jvmPackage = jre18;
jvmOpts = "";
serverConfig =
{
server-port = 25566;
motd = "creative mode gaming with mods";
extra-options = {
generate-structures = false;
level-type = "minecraft:flat";
difficulty = "hard";
enable-command-block = true;
enforce-white-list = false;
gamemode = "creative";
max-players = 6;
view-distance = 16;
};
}
// defaults;
};
# Vault Hunters # Vault Hunters
vh = { vh = {
enable = false; enable = false;