19 lines
410 B
Nix
19 lines
410 B
Nix
{ inputs, config, pkgs, lib, ... }:
|
|
|
|
{
|
|
services.minecraft-server = {
|
|
enable = true;
|
|
eula = true;
|
|
declarative = true;
|
|
openFirewall = true;
|
|
package = pkgs.papermc;
|
|
serverProperties = {
|
|
motd = "Bem-vindo a Alexandria";
|
|
difficulty = "hard";
|
|
gamemode = "survival";
|
|
online-mode = "false";
|
|
spawn-protection = "0";
|
|
};
|
|
dataDir = "/data/minecraft";
|
|
};
|
|
}
|