Update to Neovim 0.10 via nixpkgs-unstable

This commit is contained in:
Oliver Davies 2024-07-06 15:23:28 +01:00
parent 63f90b87a8
commit 38fc21d38a

View file

@ -257,10 +257,12 @@ rec {
mkNeovim =
{ system }:
let
inherit (pkgs) lib neovim;
extraPackages = mkExtraPackages { inherit system; };
pkgs = legacyPackages.${system};
pkgsUnstable = inputs.nixpkgs-unstable.legacyPackages.${system};
start = mkNeovimPlugins { inherit system; };
inherit (pkgs) lib;
inherit (pkgsUnstable) neovim;
in
neovim.override {
configure = {