core/lib/tests/modules/types-anything/attrs-coercible.nix

13 lines
158 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{ lib, ... }: {
options.value = lib.mkOption {
type = lib.types.anything;
};
config.value = {
outPath = "foo";
err = throw "err";
};
}