2022-04-10 11:54:58 +02:00
|
|
|
{lib}: let
|
|
|
|
inherit
|
|
|
|
(lib)
|
2022-01-11 16:08:21 +01:00
|
|
|
mkOption
|
|
|
|
types
|
2022-04-10 11:54:58 +02:00
|
|
|
;
|
2022-01-11 16:08:21 +01:00
|
|
|
in
|
2022-04-10 11:54:58 +02:00
|
|
|
types.submodule {
|
|
|
|
options = {
|
|
|
|
name = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "";
|
|
|
|
};
|
2021-07-29 00:07:33 +02:00
|
|
|
};
|
2022-04-10 11:54:58 +02:00
|
|
|
}
|