2023-11-24 18:46:14 +01:00
|
|
|
{pkgs, ...}:
|
|
|
|
|
|
|
|
{
|
|
|
|
users.users.jonmro = {
|
|
|
|
isNormalUser = true;
|
2024-08-04 02:30:25 +02:00
|
|
|
extraGroups = [ "wheel" "drift" "nix-builder-users" ];
|
2023-11-24 18:46:14 +01:00
|
|
|
shell = pkgs.zsh;
|
|
|
|
openssh.authorizedKeys.keys = [
|
|
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEm5PfYmfl/0fnAP/3coVlvTw3/TYNLT6r/NwJHZbLAK jonrodtang@gmail.com"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|