13 lines
		
	
	
		
			307 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			307 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{pkgs, ...}:
 | 
						|
 | 
						|
{
 | 
						|
  users.users.jonmro = {
 | 
						|
    isNormalUser = true;
 | 
						|
    extraGroups = [ "wheel" "drift" "nix-builder-users" ];
 | 
						|
    shell = pkgs.zsh;
 | 
						|
    openssh.authorizedKeys.keys = [
 | 
						|
      "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEm5PfYmfl/0fnAP/3coVlvTw3/TYNLT6r/NwJHZbLAK jonrodtang@gmail.com"
 | 
						|
    ];
 | 
						|
  };
 | 
						|
}
 |