nixpkgs/nixos/modules/services/networking/radvd.nix
stuebinm 6afb255d97 nixos: remove all uses of lib.mdDoc
these changes were generated with nixq 0.0.2, by running

  nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix
  nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix
  nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix

two mentions of the mdDoc function remain in nixos/, both of which
are inside of comments.

Since lib.mdDoc is already defined as just id, this commit is a no-op as
far as Nix (and the built manual) is concerned.
2024-04-13 10:07:35 -07:00

78 lines
1.6 KiB
Nix

# Module for the IPv6 Router Advertisement Daemon.
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.radvd;
confFile = pkgs.writeText "radvd.conf" cfg.config;
in
{
###### interface
options.services.radvd = {
enable = mkOption {
type = types.bool;
default = false;
description = ''
Whether to enable the Router Advertisement Daemon
({command}`radvd`), which provides link-local
advertisements of IPv6 router addresses and prefixes using
the Neighbor Discovery Protocol (NDP). This enables
stateless address autoconfiguration in IPv6 clients on the
network.
'';
};
package = mkPackageOption pkgs "radvd" { };
config = mkOption {
type = types.lines;
example =
''
interface eth0 {
AdvSendAdvert on;
prefix 2001:db8:1234:5678::/64 { };
};
'';
description = ''
The contents of the radvd configuration file.
'';
};
};
###### implementation
config = mkIf cfg.enable {
users.users.radvd =
{
isSystemUser = true;
group = "radvd";
description = "Router Advertisement Daemon User";
};
users.groups.radvd = {};
systemd.services.radvd =
{ description = "IPv6 Router Advertisement Daemon";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig =
{ ExecStart = "@${cfg.package}/bin/radvd radvd -n -u radvd -C ${confFile}";
Restart = "always";
};
};
};
}