3 Commits

Author SHA1 Message Date
3a1140a1d9 Merge pull request 'fix essentials version' (#203) from feature/more-cobblemon into main
Some checks failed
Check flake.lock / Check health of `flake.lock` (push) Successful in 9s
Check Nix flake / Perform Nix flake checks (push) Successful in 2m54s
Update flakes / update_lockfile (push) Failing after 9m43s
Reviewed-on: #203
2026-03-27 19:59:43 -04:00
9e3c84f609 bump memory, remove essentials
All checks were successful
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 11s
Check Nix flake / Perform Nix flake checks (pull_request) Successful in 4m14s
2026-03-27 19:41:56 -04:00
2b72a31feb fix essentials version
Some checks failed
Check flake.lock / Check health of `flake.lock` (pull_request) Successful in 12s
Check Nix flake / Perform Nix flake checks (pull_request) Failing after 2m49s
2026-03-27 17:00:17 -04:00

View File

@@ -14,7 +14,6 @@ let
meits = "meits.alicehuston.xyz";
cobblemon-overclocked = "mco.alicehuston.xyz";
cobblemon-plus = "mcp.alicehuston.xyz";
cobblemon-essentials = "mce.alicehuston.xyz";
# bcg-plus = "bcg.alicehuston.xyz";
pii = "pii.alicehuston.xyz";
};
@@ -121,29 +120,10 @@ in
DIFFICULTY = "peaceful";
ENABLE_COMMAND_BLOCK = "true";
INIT_MEMORY = "4G";
MAX_MEMORY = "12G";
};
extraOptions = defaultOptions;
log-driver = "local";
environmentFiles = [ config.sops.secrets."docker/minecraft".path ];
};
cobblemon-essentials = {
image = "itzg/minecraft-server:java21";
volumes = [
"${minecraft_path}/cobblemon-essentials/modpacks:/modpacks:ro"
"${minecraft_path}/cobblemon-essentials/data:/data"
];
hostname = "cobblemon-essentials";
environment = defaultEnv // {
VERSION = "1.21.1";
CF_SLUG = "cobblemon-essentials";
CF_FILENAME_MATCHER = "1.11.2";
USE_AIKAR_FLAGS = "false";
USE_MEOWICE_FLAGS = "true";
DIFFICULTY = "peaceful";
ENABLE_COMMAND_BLOCK = "true";
INIT_MEMORY = "4G";
MAX_MEMORY = "12G";
MAX_MEMORY = "16G";
# exclude clientside mods that cause crashes when run in a headless environment
CF_EXCLUDE_MODS = "world-host";
CF_OVERRIDES_EXCLUSIONS = "mods/iris*.jar,mods/sodium*.jar,mods/world-host-*.jar";
};
extraOptions = defaultOptions;
log-driver = "local";