neovim: use unstable instead of nightly to fix golang treesitter
This commit is contained in:
parent
25550a0cda
commit
54db18893e
|
@ -1,11 +1,12 @@
|
||||||
{ inputs, pkgs, ... }:
|
{ inputs, pkgs, unstable, ... }:
|
||||||
{
|
{
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
vimAlias = 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; [
|
environment.systemPackages = with pkgs; [
|
||||||
|
|
Loading…
Reference in a new issue