forked from jan-leila/nix-config
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			203 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			203 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| {
 | |
|   config,
 | |
|   lib,
 | |
|   ...
 | |
| }: {
 | |
|   users.users =
 | |
|     lib.attrsets.mapAttrs (name: value: {
 | |
|       openssh.authorizedKeys.keys = value.programs.openssh.authorizedKeys;
 | |
|     })
 | |
|     config.home-manager.users;
 | |
| }
 |