2024-09-04 20:22:13 -04:00
|
|
|
{pkgs, outputs, ...}: let
|
2024-08-30 01:17:50 -04:00
|
|
|
common = import ../common.nix { inherit pkgs; };
|
|
|
|
in {
|
2024-09-04 20:22:13 -04:00
|
|
|
services = {
|
|
|
|
minecraft-servers.servers.johnside = {
|
|
|
|
enable = true;
|
|
|
|
package = pkgs.paperServers.paper-1_20_6;
|
2024-09-17 21:45:44 -04:00
|
|
|
jvmOpts = "-Xmx3072M";
|
2024-09-04 20:22:13 -04:00
|
|
|
serverProperties = common.serverProperties // {
|
|
|
|
difficulty = 2;
|
|
|
|
server-port = 30009;
|
|
|
|
motd = "§l§9Johnside SMP§r §l§fworld for §4John lovers only.";
|
2024-08-30 01:17:50 -04:00
|
|
|
};
|
2024-09-04 20:22:13 -04:00
|
|
|
whitelist = common.whitelist;
|
2024-09-17 21:45:44 -04:00
|
|
|
symlinks = common.paperSymlinks // common.configSymlinks // {
|
2024-09-04 20:22:13 -04:00
|
|
|
"plugins/BlueMap.jar" = builtins.fetchurl {
|
|
|
|
url = "https://cdn.modrinth.com/data/swbUV1cr/versions/TL5ElRWX/BlueMap-5.3-spigot.jar";
|
|
|
|
sha256 = "08ls3wk0333vjg49kcmri884pcgm2xk9xdhwcxyffbh4ra0xrlbw";
|
|
|
|
};
|
|
|
|
"plugins/BlueMapOfflinePlayers.jar" = builtins.fetchurl {
|
|
|
|
url = "https://github.com/TechnicJelle/BlueMapOfflinePlayerMarkers/releases/download/v3.0/BlueMapOfflinePlayerMarkers-3.0.jar";
|
|
|
|
sha256 = "1f07w53q7yr4mvph7013d7ajxmp4lnsv6b1ab14y2x0bmqv39nwr";
|
|
|
|
};
|
|
|
|
"plugins/BlueMapMarkerManager.jar" = builtins.fetchurl {
|
|
|
|
url = "https://cdn.modrinth.com/data/a8UoyV2h/versions/E0XoPfJV/BMM-2.1.5.jar";
|
|
|
|
sha256 = "1vpnqglybysxnqyzkjnwbwg000dqkbk516apzvhmg39wlfaysl9d";
|
|
|
|
};
|
|
|
|
"plugins/CustomDiscs.jar" = builtins.fetchurl {
|
|
|
|
url = "https://github.com/Navoei/CustomDiscs/releases/download/v3.0/custom-discs-3.0.jar";
|
|
|
|
sha256 = "0xv0zrkdmjx0d7l34nqag8j004pm9zqivc12d3zy9pdrkv7pz87d";
|
|
|
|
};
|
|
|
|
"plugins/NotTooExpensive.jar" = builtins.fetchurl {
|
|
|
|
url = "https://github.com/Mrredstone5230/Not-Too-Expensive/releases/download/1.1/not-too-expensive-1.1.jar";
|
|
|
|
sha256 = "0da4v5l7iwry3wc21292lkmjprgmign4vdshzmhp7qc9hx26pj2d";
|
|
|
|
};
|
|
|
|
"plugins/SilkTouchHands.jar" = builtins.fetchurl {
|
|
|
|
url = "https://github.com/5U55/SilkTouchSpigot/releases/download/v1.1/SilkTouchv1.1.jar";
|
|
|
|
sha256 = "0mbp73xclr7f5m2lbdfz6is1j8vvyv1qwpl28sm089zrpm73qn6w";
|
|
|
|
};
|
2024-08-30 01:17:50 -04:00
|
|
|
};
|
2024-09-04 20:22:13 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
# BlueMap webhost
|
|
|
|
nginx.virtualHosts."john.${outputs.secrets.jimDomain}" = {
|
|
|
|
enableACME = true;
|
|
|
|
forceSSL = true;
|
|
|
|
locations."/" = {
|
|
|
|
proxyPass = "http://127.0.0.1:31010";
|
|
|
|
proxyWebsockets = true;
|
2024-08-30 01:17:50 -04:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-09-04 20:22:13 -04:00
|
|
|
|
|
|
|
# Allow Nginx to read and write to paths
|
|
|
|
systemd.services.nginx.serviceConfig = {
|
|
|
|
ReadWritePaths = [ "/var/www/Jimbo-Landing-Page/streams/hls/" ];
|
|
|
|
};
|
|
|
|
|
|
|
|
# Open HTTP and HTTPs ports
|
|
|
|
networking.firewall = {
|
|
|
|
allowedTCPPorts = [
|
|
|
|
80 443 # Nginx
|
|
|
|
];
|
|
|
|
};
|
2024-08-30 01:17:50 -04:00
|
|
|
}
|