summary refs log tree commit diff
path: root/nixos/modules/services/networking/mstpd.nix
blob: bd71010ce549c3bd2d211fb2fc1c84f8e27238d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ config, lib, pkgs, ... }:
let
  cfg = config.services.mstpd;
in
with lib;
{
  options.services.mstpd = {

    enable = mkOption {
      default = false;
      type = types.bool;
      description = ''
        Whether to enable the multiple spanning tree protocol daemon.
      '';
    };

  };

  config = mkIf cfg.enable {
    environment.systemPackages = [ pkgs.mstpd ];

    systemd.services.mstpd = {
      description = "Multiple Spanning Tree Protocol Daemon";
      wantedBy = [ "network.target" ];
      unitConfig.ConditionCapability = "CAP_NET_ADMIN";
      serviceConfig = {
        Type = "forking";
        ExecStart = "@${pkgs.mstpd}/bin/mstpd mstpd";
        PIDFile = "/run/mstpd.pid";
      };
    };
  };
}