plex: 1.41.0.8994-f2c27da23 -> 1.41.2.9200-c6bbc1b53
[NixPkgs.git] / lib / tests / modules / functionTo / submodule-options.nix
blobb884892efd6aae5e877ae924df959df515e33316
1 { lib, config, options, ... }:
2 let
3   inherit (lib) types;
4 in
6   imports = [
8     # fun.<function-body>.a
9     ({ ... }: {
10       options = {
11         fun = lib.mkOption {
12           type = types.functionTo (types.submodule {
13             options.a = lib.mkOption { default = "a"; };
14           });
15         };
16       };
17     })
19     # fun.<function-body>.b
20     ({ ... }: {
21       options = {
22         fun = lib.mkOption {
23           type = types.functionTo (types.submodule {
24             options.b = lib.mkOption { default = "b"; };
25           });
26         };
27       };
28     })
29   ];
31   options = {
32     result = lib.mkOption
33       {
34         type = types.str;
35         default = lib.concatStringsSep " " (lib.attrValues (config.fun (throw "shouldn't use input param")));
36       };
38     optionsResult = lib.mkOption
39       {
40         type = types.str;
41         default = lib.concatStringsSep " "
42           (lib.concatLists
43             (lib.mapAttrsToList
44               (k: v:
45                 if k == "_module"
46                 then [ ]
47                 else [ (lib.showOption v.loc) ]
48               )
49               (
50                 (options.fun.type.getSubOptions [ "fun" ])
51               )
52             )
53           );
54       };
55   };
57   config.fun = lib.mkMerge
58     [
59       (input: { b = "bee"; })
60     ];