mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-01-31 08:13:06 +01:00
17 lines
415 B
Nix
17 lines
415 B
Nix
|
{
|
||
|
lib,
|
||
|
namespace,
|
||
|
...
|
||
|
}:
|
||
|
let
|
||
|
inherit (lib.${namespace}) mkOpt;
|
||
|
in
|
||
|
{
|
||
|
options.${namespace}.user = with lib.types; {
|
||
|
name = mkOpt str "Jo" "The user's short name.";
|
||
|
fullName = mkOpt str "Johannes Reckers" "The user's full name.";
|
||
|
email = mkOpt str "reckers.johannes@proton.me" "The user's primary E-Mail address.";
|
||
|
icon = mkOpt str "./icon.jpg" "The path to the users prefered icon.";
|
||
|
};
|
||
|
}
|