We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1782471 + 568b19f commit 9dffc88Copy full SHA for 9dffc88
1 file changed
lib/tests/maintainer-module.nix
@@ -7,6 +7,12 @@ in
7
name = lib.mkOption {
8
type = types.str;
9
};
10
+ github = lib.mkOption {
11
+ type = types.str;
12
+ };
13
+ githubId = lib.mkOption {
14
+ type = types.ints.unsigned;
15
16
email = lib.mkOption {
17
type = types.nullOr types.str;
18
default = null;
@@ -15,14 +21,6 @@ in
21
22
23
- github = lib.mkOption {
19
- type = types.nullOr types.str;
20
- default = null;
- };
- githubId = lib.mkOption {
- type = types.nullOr types.ints.unsigned;
24
25
26
keys = lib.mkOption {
27
type = types.listOf (
28
types.submodule {
0 commit comments