20 lines
		
	
	
	
		
			380 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
	
		
			380 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { pkgs, lib, ... }: {
 | |
|   environment.systemPackages = with pkgs; [
 | |
|     yubikey-manager
 | |
|     yubioath-flutter
 | |
|     age-plugin-yubikey
 | |
|     yubikey-touch-detector
 | |
|   ];
 | |
| 
 | |
|   services.udev.packages = with pkgs; [
 | |
|   	yubikey-personalization
 | |
|   ];
 | |
| 
 | |
| 	services.pcscd.enable = true;
 | |
|   programs.ssh.startAgent = false;
 | |
| 
 | |
| 	programs.gnupg.agent = {
 | |
| 		enable = true;
 | |
| 		enableSSHSupport = true;
 | |
|   };
 | |
| }
 |