nixpkgs/lib/tests/modules/types-anything/attrs-coercible.nix
2020-09-15 21:06:05 +02:00

13 lines
158 B
Nix

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