34 lines
		
	
	
		
			731 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
		
		
			
		
	
	
			34 lines
		
	
	
		
			731 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| 
								 | 
							
								{ 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";
							 | 
						||
| 
								 | 
							
								      };
							 | 
						||
| 
								 | 
							
								    };
							 | 
						||
| 
								 | 
							
								  };
							 | 
						||
| 
								 | 
							
								}
							 |