diff --git a/config/users.nix b/config/users.nix index ba8dffe..a5f864b 100644 --- a/config/users.nix +++ b/config/users.nix @@ -4,15 +4,20 @@ with lib; let in { options.skynet = { users = { + committee = mkOption rec { + type = types.listOf types.str; + default = []; + description = "array of committee members"; + }; admin = mkOption rec { type = types.listOf types.str; default = []; description = "array of admins"; }; - committee = mkOption rec { + trainee = mkOption rec { type = types.listOf types.str; default = []; - description = "array of committee members"; + description = "array of trainee admins"; }; lifetime = mkOption rec { type = types.listOf types.str;