removed nix-minecraft

This commit is contained in:
William 2025-06-02 20:32:06 -03:00
parent c3631f1ef8
commit 6287704cf3
4 changed files with 4 additions and 123 deletions

View file

@ -6,6 +6,5 @@
./disko.nix
./hardware-configuration.nix
./networking.nix
./minecraft.nix
];
}

View file

@ -1,21 +0,0 @@
{ pkgs, ... }:
{
services.minecraft-server = {
enable = true;
eula = true;
servers.fabric = {
enable = true;
package = pkgs.fabricServers.fabric-1_21_5;
jvmOpts = "-Xms2G -Xmx8G";
openFirewall = true;
serverProperties = {
server-port = 25566;
difficulty = "hard";
gamemode = "survival";
white-list = true;
motd = "Servidor dos primos";
};
};
};
}