12 lines
233 B
Nix
12 lines
233 B
Nix
{ lib, ... }:
|
|
with lib;
|
|
{
|
|
options.machine.minecraft-server = {
|
|
enable = mkEnableOption "Minecraft Server";
|
|
port = mkOption {
|
|
type = types.port;
|
|
default = 25565;
|
|
description = "Listen port.";
|
|
};
|
|
};
|
|
}
|