PortValhalla/lib/modules/users.nix

94 lines
2.4 KiB
Nix
Raw Normal View History

{ lib, ... }:
let
inherit (lib)
mkOption
types
;
2024-08-08 13:28:29 +00:00
capitalize = (import ../text.nix { inherit lib; }).capitalize;
2024-08-23 16:51:54 +00:00
userType = types.submodule (
{ ... } : {
options = {
displayName = mkOption {
type = types.nullOr types.str;
description = "The human-readable name of the user.";
default = null;
};
mailAddress = mkOption {
type = types.nullOr types.str;
description = "The mail address of the user.";
default = null;
};
groups = mkOption {
type = types.listOf types.str;
description = "The additional groups of the user.";
default = [];
};
};
});
linuxUserType = types.submodule (
{ ... }: {
options = {
defaultShell = mkOption {
type = types.nullOr types.str;
description = "The default shell of the user.";
default = null;
};
};
});
winUserType = types.submodule (
{ ... }: {
options = {
microsoftAccount = mkOption {
type = types.bool;
description = "A value indicating whether this user is a Microsoft Account.";
default = false;
};
};
});
in {
options = {
valhalla = {
users = mkOption {
2024-08-23 16:51:54 +00:00
type = types.attrsOf userType;
description = "The users to create on the machine.";
default = {};
};
2024-08-08 13:28:29 +00:00
2024-08-23 16:28:20 +00:00
linux.users = mkOption {
2024-08-23 16:51:54 +00:00
type = types.attrsOf linuxUserType;
2024-08-23 16:28:20 +00:00
};
windows = mkOption {
type = types.submoduleWith {
modules = [
({ config, options, ... }: {
options = {
users = mkOption {
type = types.attrsOf winUserType;
};
winUsers = mkOption {
type = options.users.type;
description = "Blablabla";
default = (lib.attrsets.concatMapAttrs (
name: options: {
${capitalize name} = options // {
groups = [];
};
}) config.users);
};
};
})
];
};
};
};
};
}