summary refs log blame commit diff
path: root/lib/tests/modules/functionTo/list-order.nix
blob: 77a1a43a84f03a069ce12f17c75e171d41312545 (plain) (tree)
























                                                       
{ lib, config, ... }:
let
  inherit (lib) types;
in {
  options = {
    fun = lib.mkOption {
      type = types.functionTo (types.listOf types.str);
    };

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

  config.fun = lib.mkMerge [
    (input: lib.mkAfter [ input.a ])
    (input: [ input.b ])
  ];
}