1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-22 17:31:04 +03:00
nixpkgs/nixos/modules/services/networking/lldpd.nix

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

46 lines
887 B
Nix
Raw Normal View History

2017-05-20 22:45:48 +02:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.lldpd;
in
{
options.services.lldpd = {
enable = lib.mkEnableOption "Link Layer Discovery Protocol Daemon";
2017-05-20 22:45:48 +02:00
extraArgs = lib.mkOption {
type = lib.types.listOf lib.types.str;
2017-05-20 22:45:48 +02:00
default = [ ];
example = [
"-c"
"-k"
"-I eth0"
];
description = "List of command line parameters for lldpd";
};
};
config = lib.mkIf cfg.enable {
users.users._lldpd = {
2017-05-20 22:45:48 +02:00
description = "lldpd user";
group = "_lldpd";
2018-12-19 22:40:13 +01:00
home = "/run/lldpd";
isSystemUser = true;
2017-05-20 22:45:48 +02:00
};
users.groups._lldpd = { };
2017-05-20 22:45:48 +02:00
environment.systemPackages = [ pkgs.lldpd ];
systemd.packages = [ pkgs.lldpd ];
2017-05-20 22:45:48 +02:00
systemd.services.lldpd = {
wantedBy = [ "multi-user.target" ];
environment.LLDPD_OPTIONS = lib.concatStringsSep " " cfg.extraArgs;
2017-05-20 22:45:48 +02:00
};
};
}