mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
58a629b02e
This library holds a few convenience functions for generating shell code.
20 lines
422 B
Nix
20 lines
422 B
Nix
{ lib }:
|
|
|
|
{
|
|
dag =
|
|
let
|
|
d = import ./dag.nix { inherit lib; };
|
|
in
|
|
{
|
|
empty = d.emptyDag;
|
|
isDag = d.isDag;
|
|
topoSort = d.dagTopoSort;
|
|
map = d.dagMap;
|
|
entryAnywhere = d.dagEntryAnywhere;
|
|
entryBetween = d.dagEntryBetween;
|
|
entryAfter = d.dagEntryAfter;
|
|
entryBefore = d.dagEntryBefore;
|
|
};
|
|
|
|
shell = import ./shell.nix { inherit lib; };
|
|
}
|