os/modules/user/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

50 lines
1.1 KiB
Nix
Raw Normal View History

2021-05-30 19:10:28 +00:00
{
2023-01-28 20:49:10 +00:00
lib,
config,
pkgs,
...
}:
with lib; let
cfg = config.pub-solar;
in {
2021-05-30 19:10:28 +00:00
options.pub-solar = {
user = {
name = mkOption {
description = "User login name";
type = types.nullOr types.str;
default = "nixos";
};
2021-11-17 11:05:50 +00:00
description = mkOption {
description = "User description";
type = types.nullOr types.str;
default = "The main PubSolarOS user";
};
2021-05-30 19:10:28 +00:00
password = mkOption {
description = "User password";
type = types.nullOr types.str;
default = null;
};
2022-01-31 16:35:00 +00:00
publicKeys = mkOption {
description = "User SSH public keys";
type = types.listOf types.str;
2023-01-28 20:49:10 +00:00
default = [];
2022-01-31 16:35:00 +00:00
};
2021-05-30 19:10:28 +00:00
fullName = mkOption {
description = "User full name";
type = types.nullOr types.str;
default = null;
};
email = mkOption {
description = "User email address";
type = types.nullOr types.str;
default = null;
};
gpgKeyId = mkOption {
description = "GPG Key ID";
type = types.nullOr types.str;
default = null;
};
};
};
}