mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
15 lines
334 B
Nix
15 lines
334 B
Nix
{
|
|
inputs,
|
|
lib,
|
|
...
|
|
}: {
|
|
types = import ./types {inherit 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;};
|
|
lua = import ./lua.nix {inherit lib;};
|
|
vim = import ./vim.nix;
|
|
}
|