16 lines
439 B
Nix
16 lines
439 B
Nix
{ ... }:
|
|
{
|
|
users.users.mysaa = {
|
|
extraGroups = [ "wheel" ];
|
|
isNormalUser = true;
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIWDVKKwMrZcxsXG+SBOH4Mul63Jm1tK85l5dDQjPa02 mysaa@polysaa"
|
|
];
|
|
hashedPassword = "$y$j9T$DR/KwQM8rJAzad6Rv8GhO0$nOeNLBoSYiniiLb9MkgU1//HpWpvbBhKm1JbsI3ZoZ7";
|
|
};
|
|
|
|
# Allows mysaa to nixos-rebuild from a remote host
|
|
nix.settings.trusted-users = [ "mysaa" ];
|
|
|
|
}
|