43 lines
		
	
	
	
		
			819 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
	
		
			819 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
 | 
						|
 | 
						|
 | 
						|
 | 
						|
{ config, pkgs, ... }:
 | 
						|
 | 
						|
 | 
						|
{
 | 
						|
  programs.gnupg.agent = {
 | 
						|
    enable = true;
 | 
						|
    enableSSHSupport = true;
 | 
						|
  };
 | 
						|
 | 
						|
  security = {
 | 
						|
    polkit = {
 | 
						|
      enable = true;
 | 
						|
    };
 | 
						|
    sudo = {
 | 
						|
      enable = true;
 | 
						|
      extraConfig = ''
 | 
						|
        ooks ALL=(ALL) NOPASSWD:ALL
 | 
						|
        '';
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
  systemd = {
 | 
						|
    user.services.polkit-gnome-authentication-agent-1 = {
 | 
						|
      description = "polkit-gnome-authentication-agent-1";
 | 
						|
      wantedBy = [ "graphical-session.target" ];
 | 
						|
      wants = [ "graphical-session.target" ];
 | 
						|
      after = [ "graphical-session.target" ];
 | 
						|
      serviceConfig = {
 | 
						|
          Type = "simple";
 | 
						|
          ExecStart = "${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1";
 | 
						|
          Restart = "on-failure";
 | 
						|
          RestartSec = 1;
 | 
						|
          TimeoutStopSec = 10;
 | 
						|
        };
 | 
						|
    };
 | 
						|
  };
 | 
						|
 | 
						|
 | 
						|
}
 |