blob: c4388e8299c32d98060423f6018ca4f64d5ae8c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{
self,
inputs,
lib,
...
}: {
types = import ./types {inherit lib self;};
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;};
}
|