Add minecraft
This commit is contained in:
parent
ae56e0c5b3
commit
40d0903093
4 changed files with 156 additions and 0 deletions
|
@ -17,6 +17,7 @@
|
|||
./services/dovecot.nix
|
||||
./services/postfix.nix
|
||||
./services/autodeploy.nix
|
||||
./services/minecraft.nix
|
||||
];
|
||||
|
||||
boot.initrd.availableKernelModules = [ "ata_piix" "virtio_pci" "virtio_scsi" "xhci_pci" "sd_mod" "sr_mod" ];
|
||||
|
|
9
config/services/minecraft.nix
Normal file
9
config/services/minecraft.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
{ ... }: {
|
||||
imports = [
|
||||
../../modules/minecraft.nix
|
||||
];
|
||||
|
||||
services.minecraft = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
109
modules/minecraft.nix
Normal file
109
modules/minecraft.nix
Normal file
|
@ -0,0 +1,109 @@
|
|||
{ config, lib, options, pkgs, ... }:
|
||||
with lib;
|
||||
let
|
||||
papermc = pkgs.callPackage ../packages/minecraft/paper.nix { };
|
||||
cfg = config.services.minecraft;
|
||||
opt = options.services.minecraft;
|
||||
serverProperties = pkgs.writeText "server.properties" ''
|
||||
${cfg.properties.extraConfig}
|
||||
'';
|
||||
whitelistJson = pkgs.writeText "whitelist.json" ''
|
||||
${builtins.toJSON cfg.properties.whitelist}
|
||||
'';
|
||||
in
|
||||
{
|
||||
options.services.minecraft = {
|
||||
enable = mkOption {
|
||||
default = false;
|
||||
type = types.bool;
|
||||
description = "Enable minecraft server";
|
||||
};
|
||||
stateDir = mkOption {
|
||||
default = "/var/lib/minecraft";
|
||||
type = types.string;
|
||||
description = "Path to the minecraft server state directory";
|
||||
};
|
||||
properties = {
|
||||
extraConfig = mkOption {
|
||||
default = "";
|
||||
type = types.string;
|
||||
description = "Extra configuration to be added to the minecraft server properties file";
|
||||
};
|
||||
};
|
||||
whitelist = mkOption {
|
||||
default = [ ];
|
||||
type = types.listOf (types.submodule {
|
||||
options = {
|
||||
uuid = mkOption {
|
||||
type = types.string;
|
||||
description = "UUID of the whitelist entry";
|
||||
};
|
||||
name = mkOption {
|
||||
type = types.string;
|
||||
description = "Name of the whitelist entry";
|
||||
};
|
||||
};
|
||||
});
|
||||
};
|
||||
};
|
||||
config = mkIf cfg.enable {
|
||||
systemd.services.minecraft = {
|
||||
description = "Minecraft Server";
|
||||
after = [ "network.target" ];
|
||||
wantedBy = [ "multi-user.target" ];
|
||||
path = [ papermc ];
|
||||
preStart = ''
|
||||
# Agree to the EULA
|
||||
echo "eula=true" > eula.txt
|
||||
# Update the server properties
|
||||
cp ${serverProperties} server.properties
|
||||
# Update the whitelist
|
||||
cp ${whitelistJson} whitelist.json
|
||||
'';
|
||||
serviceConfig = {
|
||||
Type = "simple";
|
||||
User = "minecraft";
|
||||
Group = "minecraft";
|
||||
WorkingDirectory = cfg.stateDir;
|
||||
ExecStart = "${minecraft}/bin/minecraft-server";
|
||||
Restart = "always";
|
||||
RuntimeDirectory = "minecraft";
|
||||
RuntimeDirectoryMode = "0755";
|
||||
UMask = "0027";
|
||||
CapabilityBoundingSet = "";
|
||||
# Security
|
||||
NoNewPrivileges = true;
|
||||
# Sandboxing
|
||||
ProtectSystem = "strict";
|
||||
ProtectHome = true;
|
||||
PrivateTmp = true;
|
||||
PrivateDevices = true;
|
||||
PrivateUsers = true;
|
||||
ProtectHostname = true;
|
||||
ProtectClock = true;
|
||||
ProtectKernelTunables = true;
|
||||
ProtectKernelModules = true;
|
||||
ProtectKernelLogs = true;
|
||||
ProtectControlGroups = true;
|
||||
RestrictAddressFamilies = [ "AF_UNIX AF_INET AF_INET6" ];
|
||||
LockPersonality = true;
|
||||
MemoryDenyWriteExecute = true;
|
||||
RestrictRealtime = true;
|
||||
RestrictSUIDSGID = true;
|
||||
PrivateMounts = true;
|
||||
};
|
||||
environment = {
|
||||
USER = "minecraft";
|
||||
HOME = cfg.stateDir;
|
||||
};
|
||||
};
|
||||
users.users.minecraft = {
|
||||
description = "Minecraft Server";
|
||||
home = cfg.stateDir;
|
||||
useDefaultShell = true;
|
||||
group = "minecraft";
|
||||
isSystemUser = true;
|
||||
};
|
||||
users.groups.minecraft = { };
|
||||
};
|
||||
}
|
37
packages/minecraft/paper.nix
Normal file
37
packages/minecraft/paper.nix
Normal file
|
@ -0,0 +1,37 @@
|
|||
{ lib, stdenv, fetchurl, bash, jre }:
|
||||
let
|
||||
mcVersion = "1.18.1";
|
||||
buildNum = "204";
|
||||
jar = fetchurl {
|
||||
url = "https://papermc.io/api/v2/projects/paper/versions/${mcVersion}/builds/${buildNum}/downloads/paper-${mcVersion}-${buildNum}.jar";
|
||||
sha256 = "sha256-DcPA5QfmqEZOTPBSvMcuA3mpKHxAH0ggmPyiBlNEHfk=";
|
||||
};
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
pname = "papermc";
|
||||
version = "${mcVersion}r${buildNum}";
|
||||
|
||||
preferLocalBuild = true;
|
||||
|
||||
dontUnpack = true;
|
||||
dontConfigure = true;
|
||||
|
||||
buildPhase = ''
|
||||
cat > minecraft-server << EOF
|
||||
#!${bash}/bin/sh
|
||||
exec ${jre}/bin/java \$@ -jar $out/share/papermc/papermc.jar nogui
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
install -Dm444 ${jar} $out/share/papermc/papermc.jar
|
||||
install -Dm555 -t $out/bin minecraft-server
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "High-performance Minecraft Server";
|
||||
homepage = "https://papermc.io/";
|
||||
license = lib.licenses.gpl3Only;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ aaronjanse neonfuz ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue