41 lines
		
	
	
		
			797 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			797 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{ config, lib, pkgs, ... }:
 | 
						|
 | 
						|
with lib;
 | 
						|
 | 
						|
{
 | 
						|
 | 
						|
  ###### interface
 | 
						|
 | 
						|
  options = {
 | 
						|
 | 
						|
    networking.wicd.enable = mkOption {
 | 
						|
      type = types.bool;
 | 
						|
      default = false;
 | 
						|
      description = ''
 | 
						|
        Whether to start <command>wicd</command>. Wired and
 | 
						|
        wireless network configurations can then be managed by
 | 
						|
        wicd-client.
 | 
						|
      '';
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
 | 
						|
  ###### implementation
 | 
						|
 | 
						|
  config = mkIf config.networking.wicd.enable {
 | 
						|
 | 
						|
    environment.systemPackages = [pkgs.wicd];
 | 
						|
 | 
						|
    systemd.services.wicd = {
 | 
						|
      after = [ "network-pre.target" ];
 | 
						|
      before = [ "network.target" ];
 | 
						|
      wants = [ "network.target" ];
 | 
						|
      wantedBy = [ "multi-user.target" ];
 | 
						|
      script = "${pkgs.wicd}/sbin/wicd -f";
 | 
						|
    };
 | 
						|
 | 
						|
    services.dbus.enable = true;
 | 
						|
    services.dbus.packages = [pkgs.wicd];
 | 
						|
  };
 | 
						|
}
 |