neovim: use unstable instead of nightly to fix golang treesitter

This commit is contained in:
Tigor Hutasuhut 2024-09-04 12:35:10 +07:00
parent 25550a0cda
commit 54db18893e

View file

@ -1,11 +1,12 @@
{ inputs, pkgs, ... }:
{ inputs, pkgs, unstable, ... }:
{
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
# package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
package = unstable.neovim-unwrapped;
};
environment.systemPackages = with pkgs; [