mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-19 16:09:19 +03:00

After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
67 lines
1.8 KiB
Nix
67 lines
1.8 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.services.epmd;
|
|
in
|
|
{
|
|
###### interface
|
|
options.services.epmd = {
|
|
enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
description = ''
|
|
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 = lib.mkPackageOption pkgs "erlang" { };
|
|
listenStream = lib.mkOption {
|
|
type = lib.types.str;
|
|
default = "[::]:4369";
|
|
description = ''
|
|
the listenStream used by the systemd socket.
|
|
see https://www.freedesktop.org/software/systemd/man/systemd.socket.html#ListenStream= for more information.
|
|
use this to change the port epmd will run on.
|
|
if not defined, epmd will use "[::]:4369"
|
|
'';
|
|
};
|
|
};
|
|
|
|
###### implementation
|
|
config = lib.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 = lib.teams.beam.members;
|
|
}
|