You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
925 B

{ pkgs, ... }: {
services.minecraft-servers.servers.limbo = {
enable = true;
package = pkgs.callPackage ./nano-limbo-server.nix { };
jvmOpts = "";
files."settings.yml".value = {
bind.port = 25560;
maxPlayers = -1;
ping = {
description = "Limbo";
version = "1.5";
};
dimension = "THE_END";
playerList = {
enable = false;
username = "NanoLimbo";
};
headerAndFooter.enable = false;
gameMode = 0;
brandName.enable = false;
joinMessage.enable = false;
bossBar.enable = false;
title.enable = false;
infoForwarding = {
type = "MODERN";
secret = "@VELOCITY_FORWARDING_SECRET@";
};
readTimeout = 30000;
debugLevel = 2;
netty = {
useEpoll = true;
threads = {
bossGroup = 1;
workerGroup = 4;
};
};
};
};
}