about summary refs log tree commit diff
path: root/nixpkgs/lib/tests/modules/merge-module-with-key.nix
blob: 21f00e6ef976674a2301438b51b77ac6270c2bc3 (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
40
41
42
43
44
45
46
47
48
49
{ lib, ... }:
let
  inherit (lib) mkOption types;

  moduleWithoutKey = {
    config = {
      raw = "pear";
    };
  };

  moduleWithKey = {
    key = __curPos.file + "#moduleWithKey";
    config = {
      raw = "pear";
    };
  };

  decl = {
    options = {
      raw = mkOption {
        type = types.lines;
      };
    };
  };
in
{
  options = {
    once = mkOption {
      type = types.submodule {
        imports = [
          decl
          moduleWithKey
          moduleWithKey
        ];
      };
      default = {};
    };
    twice = mkOption {
      type = types.submodule {
        imports = [
          decl
          moduleWithoutKey
          moduleWithoutKey
        ];
      };
      default = {};
    };
  };
}