infrastructure/hosts/seedbox/rene/users.nix

12 lines
283 B
Nix
Raw Normal View History

2023-06-04 17:43:32 +00:00
{
users.groups.rene = {};
users.users.rene = {
group = "rene";
isNormalUser = true;
home = "/home/rene";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIERtfY26/h5xl+bzZm2htR4+Wd879DvZRPHsosFaEqIW gaming@DESKTOP-4ACM3JU"
];
};
}