Files
dotfiles/home/programs/neovim.nix
uttarayan21 4041cc4c6e
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
chore(nixvim): disable stylix integration in neovim configuration
2025-11-03 19:01:48 +05:30

9 lines
158 B
Nix

{pkgs, ...}: {
stylix.targets.nixvim.enable = false;
programs.nixvim =
{
enable = true;
}
// (import ./../../neovim {inherit pkgs;});
}