15 lines
300 B
Nix
15 lines
300 B
Nix
![]() |
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
config.fudo.minecraft-server = {
|
||
|
enable = true;
|
||
|
package = pkgs.minecraft-current;
|
||
|
data-dir = "/state/minecraft/data";
|
||
|
world-name = "selbyland";
|
||
|
game-mode = "creative";
|
||
|
difficulty = 0;
|
||
|
allow-cheats = true;
|
||
|
allocated-memory = 14;
|
||
|
};
|
||
|
}
|