summary refs log tree commit diff
path: root/lib/tests/modules/types-anything/attrs-coercible.nix
blob: 085cbd638f17f104ad979a2eae60ed8e89206898 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, ... }: {

  options.value = lib.mkOption {
    type = lib.types.anything;
  };

  config.value = {
    outPath = "foo";
    err = throw "err";
  };

}