diff --git a/README.md b/README.md index 6dd893b..7c96bee 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ Bloodletting: - dump and import Postgres and Redis DBs - `matterbridge` - `mc-e2e` + - `mc-enigmatica-8` - `mstdn-ebooks` - `nyandroid` - `prometheus2` diff --git a/common/fragments/minecraft.nix b/common/fragments/minecraft.nix index 701f2d8..4ec1c16 100644 --- a/common/fragments/minecraft.nix +++ b/common/fragments/minecraft.nix @@ -40,10 +40,10 @@ in { instances = { # End to End encrypted modded minecraft yay e2e = { - enable = true; + enable = false; inherit rsyncSSHKeys jvmOpts; - jvmInitialAllocation = "2G"; + jvmInitialAllocation = "1G"; jvmMaxAllocation = "8G"; jvmPackage = jre8; @@ -54,6 +54,21 @@ in { extra-options.level-type = "BIOMESOP"; }; }; + enigmatica-8 = { + enable = true; + inherit rsyncSSHKeys jvmOpts; + + jvmInitialAllocation = "1G"; + jvmMaxAllocation = "8G"; + jvmPackage = jre17; + + serverConfig = serverDefaults // { + server-port = 25567; + rcon-port = 25568; + motd = "Enigmeowtica 8"; + max-tick-time = 300000; + }; + }; }; };