From abe8e2136dc102769682537162db2e4fc5a12b58 Mon Sep 17 00:00:00 2001 From: marshmallow Date: Sun, 30 Jun 2024 23:29:33 +0000 Subject: [PATCH] Change output from unstable to nightly --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 92e04a9..f7c5cf4 100644 --- a/flake.nix +++ b/flake.nix @@ -20,7 +20,7 @@ ] (system: function nixpkgs.legacyPackages.${system}); in rec { packages = forAllSystems (pkgs: { - unstable = inputs.nightly.packages.${pkgs.system}.neovim.overrideAttrs (old: { + nightly = inputs.nightly.packages.${pkgs.system}.neovim.overrideAttrs (old: { patches = old.pactches or [] ++ [./PATCH.patch]; }); @@ -28,7 +28,7 @@ patches = old.pactches or [] ++ [./PATCH.patch]; }); }); - makeNightlyNeovimConfig = appname: args: makeNeovimConfig appname (args // {package = packages.${args.pkgs.system}.unstable;}); + makeNightlyNeovimConfig = appname: args: makeNeovimConfig appname (args // {package = packages.${args.pkgs.system}.nightly;}); makeNeovimConfig = appname: { pkgs,