games-night/modules/minecraft.nix
Lucy von Overheidt 60e885b1a4 minecraft
2025-09-14 01:17:31 +02:00

21 lines
326 B
Nix

{
lib,
...
}:
{
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (lib.getName pkg) [
"minecraft-server"
];
services.minecraft-servers = {
enable = true;
eula = true;
openFirewall = true;
servers.vanilla = {
enable = true;
jvmOpts = "-Xmx4G -Xms2G";
};
};
}