nixpkgs/nixos/modules/services/networking/lldpd.nix
pennae ef176dcf7e nixos/*: automatically convert option descriptions
conversions were done using https://github.com/pennae/nix-doc-munge
using (probably) rev f34e145 running

    nix-doc-munge nixos/**/*.nix
    nix-doc-munge --import nixos/**/*.nix

the tool ensures that only changes that could affect the generated
manual *but don't* are committed, other changes require manual review
and are discarded.
2022-08-31 16:32:53 +02:00

40 lines
857 B
Nix

{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.lldpd;
in
{
options.services.lldpd = {
enable = mkEnableOption (lib.mdDoc "Link Layer Discovery Protocol Daemon");
extraArgs = mkOption {
type = types.listOf types.str;
default = [];
example = [ "-c" "-k" "-I eth0" ];
description = lib.mdDoc "List of command line parameters for lldpd";
};
};
config = mkIf cfg.enable {
users.users._lldpd = {
description = "lldpd user";
group = "_lldpd";
home = "/run/lldpd";
isSystemUser = true;
};
users.groups._lldpd = {};
environment.systemPackages = [ pkgs.lldpd ];
systemd.packages = [ pkgs.lldpd ];
systemd.services.lldpd = {
wantedBy = [ "multi-user.target" ];
environment.LLDPD_OPTIONS = concatStringsSep " " cfg.extraArgs;
};
};
}