mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
901363d1ac
* treewide: refactor custom lib, merge lists in hm/nixos module * lib/types(custom): clarify anythingConcatLists code --------- Co-authored-by: raf <raf@notashelf.dev>
17 lines
453 B
Nix
17 lines
453 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;};
|
|
lists = import ./lists.nix {inherit lib;};
|
|
lua = import ./lua.nix {inherit lib;};
|
|
vim = import ./vim.nix;
|
|
neovimConfiguration = import ./configuration.nix {inherit inputs lib;};
|
|
}
|