This neoforge server isn't freaking working
This commit is contained in:
parent
c240c3f00d
commit
c3ee9a15ed
15 changed files with 3445 additions and 11 deletions
|
@ -5,13 +5,13 @@ in {
|
|||
enable = true;
|
||||
autoStart = false;
|
||||
package = pkgs.paperServers.paper-1_21_1;
|
||||
jvmOpts = "-Xmx4084M";
|
||||
jvmOpts = "-Xmx3072M";
|
||||
serverProperties = common.serverProperties // {
|
||||
difficulty = 2;
|
||||
server-port = 30012;
|
||||
motd = "§fArchival §l§n§cBloxelcom §r§fMinecraft server.";
|
||||
};
|
||||
whitelist = common.whitelist;
|
||||
symlinks = common.symlinks;
|
||||
symlinks = common.paperSymlinks // common.configSymlinks;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -4,13 +4,13 @@ in {
|
|||
services.minecraft-servers.servers.dewdemolisher = {
|
||||
enable = true;
|
||||
package = pkgs.paperServers.paper-1_21_1;
|
||||
jvmOpts = "-Xmx4084M";
|
||||
jvmOpts = "-Xmx3072M";
|
||||
serverProperties = common.serverProperties // {
|
||||
difficulty = 2;
|
||||
server-port = 30010;
|
||||
motd = "§l§aDew Demolisher is here.";
|
||||
};
|
||||
whitelist = common.whitelist;
|
||||
symlinks = common.symlinks;
|
||||
symlinks = common.paperSymlinks // common.configSymlinks;
|
||||
};
|
||||
}
|
||||
|
|
18
nixos/server/minecraft/servers/freaktards.nix
Normal file
18
nixos/server/minecraft/servers/freaktards.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ pkgs, ... }: let
|
||||
common = import ../common.nix { inherit pkgs; };
|
||||
neoForge = pkgs.writeShellScriptBin "minecraft-server" ''
|
||||
${pkgs.temurin-jre-bin}/bin/java @user_jvm_args.txt @libraries/net/neoforged/neoforge/21.1.51/unix_args.txt "$@"
|
||||
'';
|
||||
in {
|
||||
services.minecraft-servers.servers.freaktards = {
|
||||
enable = true;
|
||||
package = neoForge;
|
||||
serverProperties = common.serverProperties // {
|
||||
difficulty = 1;
|
||||
server-port = 30013;
|
||||
motd = "\\u00A7l\\u00A7o𝓯𝓻𝓮𝓪𝓴\\u00A7r\\u00A7ltards official™️";
|
||||
};
|
||||
whitelist = common.whitelist;
|
||||
symlinks = common.configSymlinks;
|
||||
};
|
||||
}
|
|
@ -5,14 +5,14 @@ in {
|
|||
minecraft-servers.servers.johnside = {
|
||||
enable = true;
|
||||
package = pkgs.paperServers.paper-1_20_6;
|
||||
jvmOpts = "-Xmx4084M";
|
||||
jvmOpts = "-Xmx3072M";
|
||||
serverProperties = common.serverProperties // {
|
||||
difficulty = 2;
|
||||
server-port = 30009;
|
||||
motd = "§l§9Johnside SMP§r §l§fworld for §4John lovers only.";
|
||||
};
|
||||
whitelist = common.whitelist;
|
||||
symlinks = common.symlinks // {
|
||||
symlinks = common.paperSymlinks // common.configSymlinks // {
|
||||
"plugins/BlueMap.jar" = builtins.fetchurl {
|
||||
url = "https://cdn.modrinth.com/data/swbUV1cr/versions/TL5ElRWX/BlueMap-5.3-spigot.jar";
|
||||
sha256 = "08ls3wk0333vjg49kcmri884pcgm2xk9xdhwcxyffbh4ra0xrlbw";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue