nix-flake/modules/system/homelab/mc/default.nix
satr14 d4b19a279e
All checks were successful
Activate Homelab Configuration / rebuild (push) Successful in 19s
put swappiness and governor in base
2026-07-24 15:22:47 +07:00

16 lines
No EOL
388 B
Nix

{ inputs, ... }: {
imports = [
./mc0-vanilla-plus.nix
./mc1-pure-vanilla.nix
inputs.mc.nixosModules.minecraft-servers
];
nixpkgs.overlays = [ inputs.mc.overlay ];
services.minecraft-servers = {
# LOCK IN
enable = false;
eula = true;
managementSystem.systemd-socket.enable = true;
# ^^^ https://github.com/Infinidoge/nix-minecraft/issues/119
};
}