core/lib/tests/modules/shorthand-meta.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
377 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{ 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"
];
}
];
}