Skip to content

Commit 154dd56

Browse files
committed
Add nixos.users.users.<name>.name
Signed-off-by: magic_rb <[email protected]>
1 parent 026fae6 commit 154dd56

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

modules/nixos/users.nix

+7-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
options = {
44
nixos.users.users = lib.mkOption {
55
type = lib.types.attrsOf (
6-
lib.types.submodule {
6+
lib.types.submodule ({name, ...}: {
77
options = {
88
description = lib.mkOption { type = lib.types.str; };
99
createHome = lib.mkOption { type = lib.types.bool; };
@@ -22,8 +22,13 @@
2222
type = lib.types.bool;
2323
default = false;
2424
};
25+
name = lib.mkOption {
26+
type = lib.types.str;
27+
default = name;
28+
readOnly = true;
29+
};
2530
};
26-
}
31+
})
2732
);
2833
default = { };
2934
};

0 commit comments

Comments
 (0)