feat(mc): add builder server
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
df73b65989
commit
d862afec14
1 changed files with 32 additions and 3 deletions
|
@ -49,11 +49,11 @@ in {
|
|||
|
||||
# Vanilla Creative
|
||||
cv = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
|
||||
jvmMaxAllocation = "6G";
|
||||
jvmInitialAllocation = "2G";
|
||||
jvmPackage = jre17;
|
||||
jvmPackage = jre18;
|
||||
jvmOpts = "";
|
||||
|
||||
serverConfig =
|
||||
|
@ -64,7 +64,7 @@ in {
|
|||
extra-options = {
|
||||
difficulty = "hard";
|
||||
enable-command-block = true;
|
||||
enforce-whitelist = true;
|
||||
enforce-white-list = true;
|
||||
gamemode = "creative";
|
||||
max-players = 6;
|
||||
view-distance = 16;
|
||||
|
@ -109,6 +109,35 @@ in {
|
|||
// 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
|
||||
vh = {
|
||||
enable = false;
|
||||
|
|
Loading…
Reference in a new issue