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