core/lib/tests/modules/shorthand-meta.nix
2024-06-30 09:16:52 +01:00

24 lines
377 B
Nix

{ lib, ... }:
let
inherit (lib) types mkOption;
in
{
imports = [
(
{ config, ... }:
{
options = {
meta.foo = mkOption { type = types.listOf types.str; };
result = mkOption { default = lib.concatStringsSep " " config.meta.foo; };
};
}
)
{
meta.foo = [
"one"
"two"
];
}
];
}