summary refs log tree commit diff
path: root/lib/tests/modules/type-deprecation.nix
blob: 2d7a1fc9aca596772d4f034d8c26733a57032faf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ lib, ... }: {

  options.simple = lib.mkOption {
    type = lib.mkOptionType {
      name = "simple";
      deprecationMessage = "simple shall not be used";
    };
    default = throw "";
  };

  options.infinite = lib.mkOption {
    type =
      let
        t = lib.mkOptionType {
          name = "infinite";
          deprecationMessage = "infinite shall not be used";
        };
        r = lib.types.either t (lib.types.attrsOf r);
      in r;
    default = throw "";
  };

  options.nested = lib.mkOption {
    type =
      let
        left = lib.mkOptionType {
          name = "left";
          deprecationMessage = "left shall not be used";
        };
        right = lib.mkOptionType {
          name = "right";
          deprecationMessage = "right shall not be used";
        };
      in lib.types.either left right;

    default = throw "";
  };

}