home-manager/tests
Naïm Favier 6311f4adc3
lib/types: make DAG entries mergeable
Removes the `uniq` constraint on `after` and `before` so that we can
merge multiple definitions for the same DAG entry:

    {
      dag = mkMerge [
        {
          foo = lib.hm.dag.entryBefore [ "bar" ] {
            # definition 1
          };
        }
        {
          foo = lib.hm.dag.entryBefore [ "qux" ] {
            # definition 2
          };
        }
        {
          foo = {
            # definition 3
          };
        }
      ];
    }

In this example `foo` will come before `bar` and `qux`.
2022-07-12 11:47:38 +02:00
..
lib/types lib/types: make DAG entries mergeable 2022-07-12 11:47:38 +02:00
modules picom: sync module with the NixOS version 2022-07-12 11:21:49 +02:00
asserts.nix tests: fix test.assert.assertions.enable not working 2021-10-13 01:29:23 +02:00
big-test.nix tests: make enableBig an option 2022-01-02 10:36:52 +01:00
default.nix tests: fix impurity of _module.args.pkgsPath 2022-07-09 16:30:17 +02:00
stubs.nix tests: add option test.stubs 2021-09-26 23:26:38 +02:00