Add Enigmatica 8

This commit is contained in:
Agatha Lovelace 2023-05-01 11:00:19 +02:00
parent 987454430b
commit ffd84f6f2a
Signed by: sorceress
GPG Key ID: 01D0B3AB10CED4F8
2 changed files with 18 additions and 2 deletions

View File

@ -20,6 +20,7 @@ Bloodletting:
- dump and import Postgres and Redis DBs
- `matterbridge`
- `mc-e2e`
- `mc-enigmatica-8`
- `mstdn-ebooks`
- `nyandroid`
- `prometheus2`

View File

@ -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;
};
};
};
};