nix flake check

This commit is contained in:
2026-02-03 17:33:53 +01:00
parent 0aa591b57a
commit fe92ead2ac
2 changed files with 3 additions and 9 deletions

View File

@@ -16,10 +16,6 @@
{ {
projectRootFile = "flake.nix"; projectRootFile = "flake.nix";
programs.nixfmt.enable = true; programs.nixfmt.enable = true;
programs.ormolu.enable = true;
programs.black.enable = true;
programs.prettier.enable = true;
programs.stylua.enable = true;
} }
) )
); );

View File

@@ -6,6 +6,7 @@
writeText, writeText,
stylixColors ? null, stylixColors ? null,
colorscheme ? null, colorscheme ? null,
withCopilot ? false,
lib, lib,
... ...
}: }:
@@ -47,8 +48,6 @@ neovim.override {
editorconfig-vim editorconfig-vim
copilot-vim
fzf-vim fzf-vim
fzfWrapper fzfWrapper
supertab supertab
@@ -82,7 +81,8 @@ neovim.override {
}; };
} }
) )
]; ]
++ lib.optional withCopilot vimPlugins.copilot.nvim;
opt = [ opt = [
csv csv
dhall-vim dhall-vim
@@ -90,7 +90,6 @@ neovim.override {
emmet-vim emmet-vim
vim-elixir vim-elixir
haskell-vim haskell-vim
vimPlugins.icalendar-vim
vimPlugins.jq-vim vimPlugins.jq-vim
rust-vim rust-vim
typescript-vim typescript-vim
@@ -100,7 +99,6 @@ neovim.override {
vimtex vimtex
vim-pandoc vim-pandoc
vim-pandoc-syntax vim-pandoc-syntax
vimPlugins.vim-256noir
vimPlugins.typst-vim vimPlugins.typst-vim
]; ];
}; };