mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-11-14 17:35:31 +00:00
Some checks failed
Check for typos in the source tree / check-typos (push) Has been cancelled
17 lines
487 B
Nix
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;};
|
|
}
|