clean up lib

This commit is contained in:
NotAShelf 2023-03-31 17:42:15 +03:00
commit fbd08add99
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22
7 changed files with 12 additions and 55 deletions

7
lib/types/default.nix Normal file
View file

@ -0,0 +1,7 @@
{lib}: let
typesDag = import ./dag.nix {inherit lib;};
typesPlugin = import ./plugins.nix {inherit lib;};
in {
inherit (typesDag) dagOf;
inherit (typesPlugin) pluginsOpt;
}