about summary refs log tree commit diff
path: root/nixpkgs/lib/tests/modules/functionTo/merging-attrs.nix
blob: 97c015f928ab08dfff98ba601b7c77ede5fe071c (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
{ lib, config, ... }:
let
  inherit (lib) types;
in {
  options = {
    fun = lib.mkOption {
      type = types.functionTo (types.attrsOf types.str);
    };

    result = lib.mkOption {
      type = types.str;
      default = toString (lib.attrValues (config.fun {
        a = "a";
        b = "b";
        c = "c";
      }));
    };
  };

  config.fun = lib.mkMerge [
    (input: { inherit (input) a; })
    (input: { inherit (input) b; })
    (input: {
      b = lib.mkForce input.c;
    })
  ];
}