snowflake/hosts/sora/services/minecraft.nix
notohh e4d9fe3b4d
All checks were successful
flake check / check (push) Successful in 9m8s
fmt check / check (push) Successful in 1m6s
minecraft: set memory to 4g
2023-12-29 21:41:10 -05:00

20 lines
521 B
Nix

_: {
networking.firewall.allowedTCPPorts = [25565];
networking.firewall.allowedUDPPorts = [24454];
virtualisation.oci-containers.containers.minecraft = {
image = "itzg/minecraft-server";
ports = ["25565:25565" "24454:24454/udp"];
environment = {
EULA = "TRUE";
VERSION = "1.19.2";
MEMORY = "4G";
TYPE = "FABRIC";
FABRIC_LOADER_VERSION = "0.14.23";
FABRIC_LAUNCHER_VERSION = "0.11.2";
};
volumes = [
"/home/notoh/docker/modded-mc:/data:rw"
];
};
}