nixpkgs/nixos/modules/services/networking/lldpd.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
857 B
Nix
Raw Normal View History

2017-05-20 20:45:48 +00:00
{ 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 = {
2017-05-20 20:45:48 +00:00
description = "lldpd user";
group = "_lldpd";
2018-12-19 21:40:13 +00:00
home = "/run/lldpd";
isSystemUser = true;
2017-05-20 20:45:48 +00:00
};
users.groups._lldpd = {};
2017-05-20 20:45:48 +00:00
environment.systemPackages = [ pkgs.lldpd ];
systemd.packages = [ pkgs.lldpd ];
2017-05-20 20:45:48 +00:00
systemd.services.lldpd = {
wantedBy = [ "multi-user.target" ];
environment.LLDPD_OPTIONS = concatStringsSep " " cfg.extraArgs;
2017-05-20 20:45:48 +00:00
};
};
}