nvf/lib/types/default.nix
NotAShelf b049b797a4
Some checks failed
Check for typos in the source tree / check-typos (push) Has been cancelled
yeehaw
2025-02-06 17:43:54 +03:00

16 lines
509 B
Nix

{
self,
inputs,
lib,
...
}: let
typesDag = import ./dag.nix {inherit lib;};
typesPlugin = import ./plugins.nix {inherit self inputs lib;};
typesLanguage = import ./languages.nix {inherit lib;};
customTypes = import ./custom.nix {inherit lib;};
in {
inherit (typesDag) dagOf;
inherit (typesPlugin) pluginsOpt extraPluginType mkPluginSetupOption luaInline pluginType borderType;
inherit (typesLanguage) diagnostics mkGrammarOption;
inherit (customTypes) char hexColor mergelessListOf;
}