feat(user): add user descriptions

These strings show up as usernames on the login UI.
This commit is contained in:
514fpv 2024-01-03 11:40:30 +08:00
parent 21098e4b56
commit b061944d2c
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 18 additions and 2 deletions

View file

@ -13,6 +13,11 @@ in {
default = null;
description = "uid passthrough to base user configuration";
};
description = mkOption {
type = with types; nullOr str;
default = null;
description = "description passthrough to base user configuration";
};
admin = mkOption {
type = with types; bool;
default = false;
@ -61,6 +66,7 @@ in {
users = {
users = mapAttrs (name: opts: {
inherit (opts) uid;
description = with opts; mkIf (description != null) description;
extraGroups = mkIf opts.admin cfg.adminGroups;
openssh.authorizedKeys.keys = mkIf (opts.sshLogin && config.services.openssh.enable)
config.faucet.auth.openssh.publicKeys;

View file

@ -1,7 +1,17 @@
{
users.profiles = {
koishi = { uid = 1300; admin = true; sshLogin = true; }; # 0x514 = 1300 :)
staging.uid = 1000;
koishi = {
uid = 1300; # 0x514 = 1300 :)
description = "Koishi";
admin = true;
sshLogin = true;
};
staging = {
uid = 1000;
description = "Staging Environment";
};
root.uid = 0;
};
}