summary refs log tree commit diff
path: root/lib/tests/modules/optionTypeFile.nix
blob: 6015d59a72c9f284b0e73b5fe89af38dfc46b146 (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
{ config, lib, ... }: {

  _file = "optionTypeFile.nix";

  options.theType = lib.mkOption {
    type = lib.types.optionType;
  };

  options.theOption = lib.mkOption {
    type = config.theType;
    default = {};
  };

  config.theType = lib.mkMerge [
    (lib.types.submodule {
      options.nested = lib.mkOption {
        type = lib.types.int;
      };
    })
    (lib.types.submodule {
      _file = "other.nix";
      options.nested = lib.mkOption {
        type = lib.types.str;
      };
    })
  ];

}