snowflake/hosts/sora/services/minecraft.nix

21 lines
533 B
Nix
Raw Normal View History

2023-09-16 18:54:50 -04:00
_: {
2024-02-08 12:04:15 -05:00
networking.firewall.allowedTCPPorts = [ 25565 ];
networking.firewall.allowedUDPPorts = [ 24454 ];
2023-06-30 16:59:27 -04:00
virtualisation.oci-containers.containers.minecraft = {
2023-10-10 15:45:06 -04:00
image = "itzg/minecraft-server";
2024-02-08 12:04:15 -05:00
ports = [
"25565:25565"
"24454:24454/udp"
];
2023-06-30 16:59:27 -04:00
environment = {
2023-10-10 15:45:06 -04:00
EULA = "TRUE";
2023-10-12 02:21:24 -04:00
VERSION = "1.19.2";
2023-12-29 21:41:10 -05:00
MEMORY = "4G";
2023-10-10 15:45:06 -04:00
TYPE = "FABRIC";
FABRIC_LOADER_VERSION = "0.14.23";
FABRIC_LAUNCHER_VERSION = "0.11.2";
2023-06-30 16:59:27 -04:00
};
2024-02-08 12:04:15 -05:00
volumes = [ "/home/notoh/docker/modded-mc:/data:rw" ];
2023-06-30 16:59:27 -04:00
};
}