Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
32 lines
685 B
Nix
32 lines
685 B
Nix
{ lib, ... }:
|
|
let
|
|
inherit (lib) types;
|
|
in {
|
|
options = {
|
|
name = lib.mkOption {
|
|
type = types.str;
|
|
};
|
|
email = lib.mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
};
|
|
matrix = lib.mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
};
|
|
github = lib.mkOption {
|
|
type = types.nullOr types.str;
|
|
default = null;
|
|
};
|
|
githubId = lib.mkOption {
|
|
type = types.nullOr types.ints.unsigned;
|
|
default = null;
|
|
};
|
|
keys = lib.mkOption {
|
|
type = types.listOf (types.submodule {
|
|
options.fingerprint = lib.mkOption { type = types.str; };
|
|
});
|
|
default = [];
|
|
};
|
|
};
|
|
}
|