infrastructure/hosts/seedbox/reject/users.nix

12 lines
291 B
Nix
Raw Normal View History

2023-11-18 23:16:40 +00:00
{
users.groups.reject = {};
users.users.reject = {
group = "reject";
isNormalUser = true;
home = "/home/reject";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIERtfY26/h5xl+bzZm2htR4+Wd879DvZRPHsosFaEqIW gaming@DESKTOP-4ACM3JU"
];
};
}