mirror of
https://github.com/nix-community/home-manager.git
synced 2025-12-22 00:41:12 +01:00
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`.
|
||
|---|---|---|
| .. | ||
| assertions.nix | ||
| booleans.nix | ||
| dag.nix | ||
| default.nix | ||
| file-type.nix | ||
| gvariant.nix | ||
| maintainers.nix | ||
| shell.nix | ||
| stdlib-extended.nix | ||
| strings.nix | ||
| types-dag.nix | ||
| types.nix | ||
| zsh.nix | ||