mirror of
https://github.com/NotAShelf/nvf.git
synced 2025-02-12 20:13:19 +00:00
16 lines
474 B
Nix
16 lines
474 B
Nix
{
|
|
self,
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: {
|
|
types = import ./types {inherit 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;};
|
|
}
|