diff options
Diffstat (limited to 'nix/users/modules')
| -rw-r--r-- | nix/users/modules/userinfo.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/nix/users/modules/userinfo.nix b/nix/users/modules/userinfo.nix new file mode 100644 index 0000000..46afc73 --- /dev/null +++ b/nix/users/modules/userinfo.nix @@ -0,0 +1,15 @@ +{ lib, ... }: +{ + options = with lib; { + userinfo = { + fullName = mkOption { + type = types.str; + example = "Someone Someonesson"; + }; + email = mkOption { + type = types.str; + example = "some@email.com"; + }; + }; + }; +} |
