mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
63 lines
1,000 B
Nix
63 lines
1,000 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
check ? true,
|
|
}: let
|
|
inherit (lib.modules) mkDefault;
|
|
inherit (lib.lists) concatLists;
|
|
|
|
core = map (p: ./core + "/${p}") [
|
|
"build"
|
|
"warnings"
|
|
];
|
|
|
|
neovim = map (p: ./neovim + "/${p}") [
|
|
"basic"
|
|
"mappings"
|
|
];
|
|
|
|
plugins = map (p: ./plugins + "/${p}") [
|
|
"assistant"
|
|
"autopairs"
|
|
"comments"
|
|
"completion"
|
|
"dashboard"
|
|
"debugger"
|
|
"filetree"
|
|
"git"
|
|
"languages"
|
|
"lsp"
|
|
"minimap"
|
|
"notes"
|
|
"projects"
|
|
"rich-presence"
|
|
"session"
|
|
"snippets"
|
|
"spellcheck"
|
|
"statusline"
|
|
"tabline"
|
|
"terminal"
|
|
"theme"
|
|
"treesitter"
|
|
"ui"
|
|
"utility"
|
|
"visuals"
|
|
];
|
|
|
|
allModules = concatLists [core neovim plugins];
|
|
|
|
pkgsModule = {config, ...}: {
|
|
config = {
|
|
_module = {
|
|
inherit check;
|
|
args = {
|
|
baseModules = allModules;
|
|
pkgsPath = mkDefault pkgs.path;
|
|
pkgs = mkDefault pkgs;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
in
|
|
allModules ++ [pkgsModule]
|