diff options
author | ene <ene@sils.li> | 2023-02-05 08:58:11 +0100 |
---|---|---|
committer | ene <ene@sils.li> | 2023-02-05 09:02:27 +0100 |
commit | cb69f4ae60e2d94039a7bb0b5caa566a9d288686 (patch) | |
tree | a428bba3e57539142ac96eeeabbe57af2418055f /services/minecraft.nix | |
parent | Flake: Changed the configuration to a flake (diff) | |
download | nixos-server-cb69f4ae60e2d94039a7bb0b5caa566a9d288686.tar.gz nixos-server-cb69f4ae60e2d94039a7bb0b5caa566a9d288686.zip |
Fix: correct host name and convenience changes
We used the domain name instead of the host name, which obviously doesn't work for multiple host. In addition to that I changed some directory to make importing easier and enabled the "nix-command" and "flakes" experimental options, to make the `nix flake check` command usable. Refs: #15
Diffstat (limited to 'services/minecraft.nix')
-rw-r--r-- | services/minecraft.nix | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/services/minecraft.nix b/services/minecraft.nix deleted file mode 100644 index 5882d9a..0000000 --- a/services/minecraft.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ - config, - pkgs, - ... -}: { - users = { - groups.minecraft = {}; - users.minecraft = { - isSystemUser = true; - group = "minecraft"; - }; - }; - systemd.services.minecraft = { - wantedBy = "multi-user.target"; - after = "network.target"; - description = "Minecraft Server"; - serviceConfig = { - WorkingDirectory = "/srv/minecraft"; - User = "minecraft"; - Group = "minecraft"; - Restart = "always"; - ExecStart = "${pkgs.openjdk}/bin/java -Xms10G -Xmx10G -XX:+UseG1GC -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1 -Dusing.aikars.flags=https://mcflags.emc.gs -Daikars.new.flags=true -jar paper.jar --nogui"; - SyslogIdentifier = "minecraft-server"; - }; - }; -} |