forked from mirrors/nixpkgs
2e751c0772
the conversion procedure is simple: - find all things that look like options, ie calls to either `mkOption` or `lib.mkOption` that take an attrset. remember the attrset as the option - for all options, find a `description` attribute who's value is not a call to `mdDoc` or `lib.mdDoc` - textually convert the entire value of the attribute to MD with a few simple regexes (the set from mdize-module.sh) - if the change produced a change in the manual output, discard - if the change kept the manual unchanged, add some text to the description to make sure we've actually found an option. if the manual changes this time, keep the converted description this procedure converts 80% of nixos options to markdown. around 2000 options remain to be inspected, but most of those fail the "does not change the manual output check": currently the MD conversion process does not faithfully convert docbook tags like <code> and <package>, so any option using such tags will not be converted at all.
108 lines
2.8 KiB
Nix
108 lines
2.8 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.minetest-server;
|
|
flag = val: name: if val != null then "--${name} ${toString val} " else "";
|
|
flags = [
|
|
(flag cfg.gameId "gameid")
|
|
(flag cfg.world "world")
|
|
(flag cfg.configPath "config")
|
|
(flag cfg.logPath "logfile")
|
|
(flag cfg.port "port")
|
|
];
|
|
in
|
|
{
|
|
options = {
|
|
services.minetest-server = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc "If enabled, starts a Minetest Server.";
|
|
};
|
|
|
|
gameId = mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
description = ''
|
|
Id of the game to use. To list available games run
|
|
`minetestserver --gameid list`.
|
|
|
|
If only one game exists, this option can be null.
|
|
'';
|
|
};
|
|
|
|
world = mkOption {
|
|
type = types.nullOr types.path;
|
|
default = null;
|
|
description = ''
|
|
Name of the world to use. To list available worlds run
|
|
`minetestserver --world list`.
|
|
|
|
If only one world exists, this option can be null.
|
|
'';
|
|
};
|
|
|
|
configPath = mkOption {
|
|
type = types.nullOr types.path;
|
|
default = null;
|
|
description = ''
|
|
Path to the config to use.
|
|
|
|
If set to null, the config of the running user will be used:
|
|
`~/.minetest/minetest.conf`.
|
|
'';
|
|
};
|
|
|
|
logPath = mkOption {
|
|
type = types.nullOr types.path;
|
|
default = null;
|
|
description = lib.mdDoc ''
|
|
Path to logfile for logging.
|
|
|
|
If set to null, logging will be output to stdout which means
|
|
all output will be catched by systemd.
|
|
'';
|
|
};
|
|
|
|
port = mkOption {
|
|
type = types.nullOr types.int;
|
|
default = null;
|
|
description = lib.mdDoc ''
|
|
Port number to bind to.
|
|
|
|
If set to null, the default 30000 will be used.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
users.users.minetest = {
|
|
description = "Minetest Server Service user";
|
|
home = "/var/lib/minetest";
|
|
createHome = true;
|
|
uid = config.ids.uids.minetest;
|
|
group = "minetest";
|
|
};
|
|
users.groups.minetest.gid = config.ids.gids.minetest;
|
|
|
|
systemd.services.minetest-server = {
|
|
description = "Minetest Server Service";
|
|
wantedBy = [ "multi-user.target" ];
|
|
after = [ "network.target" ];
|
|
|
|
serviceConfig.Restart = "always";
|
|
serviceConfig.User = "minetest";
|
|
serviceConfig.Group = "minetest";
|
|
|
|
script = ''
|
|
cd /var/lib/minetest
|
|
|
|
exec ${pkgs.minetest}/bin/minetest --server ${concatStrings flags}
|
|
'';
|
|
};
|
|
};
|
|
}
|