mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
24 lines
647 B
Nix
24 lines
647 B
Nix
{
|
|
inputs,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (import ../extra.nix inputs) neovimConfiguration mainConfig;
|
|
|
|
buildPkg = pkgs: modules:
|
|
(neovimConfiguration {inherit pkgs modules;})
|
|
.neovim;
|
|
|
|
nixConfig = mainConfig false;
|
|
maximalConfig = mainConfig true;
|
|
tidalConfig = {config.vim.tidal.enable = true;};
|
|
in {
|
|
flake.overlays.default = _final: prev: {
|
|
inherit neovimConfiguration;
|
|
neovim-nix = buildPkg prev [nixConfig];
|
|
neovim-maximal = buildPkg prev [maximalConfig];
|
|
neovim-tidal = buildPkg prev [tidalConfig];
|
|
devPkg = buildPkg pkgs [nixConfig {config.vim.languages.html.enable = pkgs.lib.mkForce true;}];
|
|
};
|
|
}
|