summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/freeform-deprecated-malicous-wrong.nix
blob: 4d1e86cf5ae1e159d3538a4987b279b9173f8f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Obviously wrong typed
{
  config.either = {
    int = "foo";
  };

  config.eitherBehindNullor = {
    int = "foo";
  };

  config.oneOf = {
    int = "foo";
  };

  config.number = {
    str = "foo";
  };
}