nvf/lib/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

17 lines
487 B
Nix

{
self,
inputs,
lib,
...
}: {
types = import ./types {inherit self inputs lib;};
config = import ./config.nix {inherit lib;};
binds = import ./binds.nix {inherit lib;};
dag = import ./dag.nix {inherit lib;};
languages = import ./languages.nix {inherit lib;};
lists = import ./lists.nix {inherit lib;};
attrsets = import ./attrsets.nix {inherit lib;};
lua = import ./lua.nix {inherit lib;};
neovimConfiguration = import ../modules {inherit self inputs lib;};
}