mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 00:40:44 +02:00
12 lines
387 B
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
|
|
];
|
|
};
|
|
}
|