core/lib/tests/modules/functionTo/submodule-options.nix

60 lines
1.1 KiB
Nix
Raw Normal View History

2024-06-30 08:12:46 +00:00
{
lib,
config,
options,
...
}:
2024-05-01 22:14:04 +00:00
let
inherit (lib) types;
in
{
imports = [
# fun.<function-body>.a
2024-06-30 08:12:46 +00:00
(
{ ... }:
{
options = {
fun = lib.mkOption {
type = types.functionTo (types.submodule { options.a = lib.mkOption { default = "a"; }; });
};
2024-05-01 22:14:04 +00:00
};
2024-06-30 08:12:46 +00:00
}
)
2024-05-01 22:14:04 +00:00
# fun.<function-body>.b
2024-06-30 08:12:46 +00:00
(
{ ... }:
{
options = {
fun = lib.mkOption {
type = types.functionTo (types.submodule { options.b = lib.mkOption { default = "b"; }; });
};
2024-05-01 22:14:04 +00:00
};
2024-06-30 08:12:46 +00:00
}
)
2024-05-01 22:14:04 +00:00
];
options = {
2024-06-30 08:12:46 +00:00
result = lib.mkOption {
type = types.str;
default = lib.concatStringsSep " " (
lib.attrValues (config.fun (throw "shouldn't use input param"))
);
};
2024-05-01 22:14:04 +00:00
2024-06-30 08:12:46 +00:00
optionsResult = lib.mkOption {
type = types.str;
default = lib.concatStringsSep " " (
lib.concatLists (
lib.mapAttrsToList (k: v: if k == "_module" then [ ] else [ (lib.showOption v.loc) ]) (
(options.fun.type.getSubOptions [ "fun" ])
)
)
);
};
2024-05-01 22:14:04 +00:00
};
2024-06-30 08:12:46 +00:00
config.fun = lib.mkMerge [ (input: { b = "bee"; }) ];
2024-05-01 22:14:04 +00:00
}