dotfiles/nix/users/q.nix

12 lines
387 B
Nix

{ ... }:
{
users.users.q = {
isNormalUser = true;
extraGroups = [ "wheel" ];
# initialPassword = "qwerty123";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPLLJdkVYKZgsayw+sHanKPKZbI0RMS2CakqBCEi5Trz" # laptop
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINeXccmMQ9jfLG2Z8CITaZZ+pUgYVNVYDFtmdkBHd3xk u0_a930@localhost" # phone
];
};
}