15 lines
300 B
Nix
Raw Normal View History

2022-10-23 13:36:31 -07:00
{ config, lib, pkgs, ... }:
{
config.fudo.minecraft-server = {
enable = true;
package = pkgs.minecraft-current;
data-dir = "/state/minecraft/data";
world-name = "selbyland";
game-mode = "creative";
2023-05-16 22:40:08 -07:00
difficulty = 2;
2022-10-23 13:36:31 -07:00
allow-cheats = true;
allocated-memory = 14;
};
}