reNixos/kyra/users/users/hand7s.nix
s0me1newithhand7s a65cbaee81 kyra(hardening): removing useless groups
Signed-off-by: s0me1newithhand7s <git+me@hand7s.org>
2026-05-03 16:06:55 +03:00

21 lines
414 B
Nix

_: {
users = {
users = {
"hand7s" = {
description = "hands";
isNormalUser = true;
extraGroups = [
"wheel"
];
openssh = {
authorizedKeys = {
keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDp2IIdR5jV1HyG4aiRX7SfTNrXDhCx5rTiFU40qkOKq litvinovb0@gmail.com"
];
};
};
};
};
};
}