nixos/home/user.nix
514fpv b061944d2c
feat(user): add user descriptions
These strings show up as usernames on the login UI.
2024-01-03 11:40:30 +08:00

18 lines
265 B
Nix

{
users.profiles = {
koishi = {
uid = 1300; # 0x514 = 1300 :)
description = "Koishi";
admin = true;
sshLogin = true;
};
staging = {
uid = 1000;
description = "Staging Environment";
};
root.uid = 0;
};
}