core/lib/tests/modules/types-anything/attrs-coercible.nix
2024-05-01 18:26:04 -04:00

13 lines
158 B
Nix

{ lib, ... }: {
options.value = lib.mkOption {
type = lib.types.anything;
};
config.value = {
outPath = "foo";
err = throw "err";
};
}