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.
73 lines
2.0 KiB
Nix
73 lines
2.0 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.epmd;
|
|
in
|
|
{
|
|
###### interface
|
|
options.services.epmd = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Whether to enable socket activation for Erlang Port Mapper Daemon (epmd),
|
|
which acts as a name server on all hosts involved in distributed
|
|
Erlang computations.
|
|
'';
|
|
};
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.erlang;
|
|
defaultText = literalExpression "pkgs.erlang";
|
|
description = lib.mdDoc ''
|
|
The Erlang package to use to get epmd binary. That way you can re-use
|
|
an Erlang runtime that is already installed for other purposes.
|
|
'';
|
|
};
|
|
listenStream = mkOption
|
|
{
|
|
type = types.str;
|
|
default = "[::]:4369";
|
|
description = lib.mdDoc ''
|
|
the listenStream used by the systemd socket.
|
|
see https://www.freedesktop.org/software/systemd/man/systemd.socket.html#ListenStream= for more informations.
|
|
use this to change the port epmd will run on.
|
|
if not defined, epmd will use "[::]:4369"
|
|
'';
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
config = mkIf cfg.enable {
|
|
assertions = [{
|
|
assertion = cfg.listenStream == "[::]:4369" -> config.networking.enableIPv6;
|
|
message = "epmd listens by default on ipv6, enable ipv6 or change config.services.epmd.listenStream";
|
|
}];
|
|
systemd.sockets.epmd = rec {
|
|
description = "Erlang Port Mapper Daemon Activation Socket";
|
|
wantedBy = [ "sockets.target" ];
|
|
before = wantedBy;
|
|
socketConfig = {
|
|
ListenStream = cfg.listenStream;
|
|
Accept = "false";
|
|
};
|
|
};
|
|
|
|
systemd.services.epmd = {
|
|
description = "Erlang Port Mapper Daemon";
|
|
after = [ "network.target" ];
|
|
requires = [ "epmd.socket" ];
|
|
|
|
serviceConfig = {
|
|
DynamicUser = true;
|
|
ExecStart = "${cfg.package}/bin/epmd -systemd";
|
|
Type = "notify";
|
|
};
|
|
};
|
|
};
|
|
|
|
meta.maintainers = teams.beam.members;
|
|
}
|