feat(user): add user descriptions
These strings show up as usernames on the login UI.
This commit is contained in:
parent
21098e4b56
commit
b061944d2c
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue