nix-infra/config/users/yuri/default.nix

12 lines
341 B
Nix
Raw Normal View History

2023-07-10 15:30:51 +02:00
{ ... }:
{
users.users.yuri = {
isNormalUser = true;
extraGroups = [ "wheel" ];
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJEvM35w+UaSpDTuaG5pGPgfHcfwscr+wSZN9Z5Jle82 yuri@kiara"
2023-07-20 06:29:15 +02:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDdk3FLQRoCWxdOxg4kHcPqAu3QQOs/rY9na2Al2ilGl yuri@violet"
2023-07-10 15:30:51 +02:00
];
};
}