summary refs log blame commit diff
path: root/nixos/modules/services/networking/lldpd.nix
blob: ba4e1b1542fe4c756e0af50a39c75b1712076ba7 (plain) (tree)





























                                                                   
                                      


                                         
                                                                     


      
{ config, lib, pkgs, ... }:

with lib;

let
  cfg = config.services.lldpd;

in

{
  options.services.lldpd = {
    enable = mkEnableOption "Link Layer Discovery Protocol Daemon";

    extraArgs = mkOption {
      type = types.listOf types.str;
      default = [];
      example = [ "-c" "-k" "-I eth0" ];
      description = "List of command line parameters for lldpd";
    };
  };

  config = mkIf cfg.enable {
    users.extraUsers._lldpd = {
      description = "lldpd user";
      group = "_lldpd";
      home = "/var/run/lldpd";
    };
    users.extraGroups._lldpd = {};

    environment.systemPackages = [ pkgs.lldpd ];
    systemd.packages = [ pkgs.lldpd ];

    systemd.services.lldpd = {
      wantedBy = [ "multi-user.target" ];
      environment.LLDPD_OPTIONS = concatStringsSep " " cfg.extraArgs;
    };
  };
}