README: update 23.05 mentions for 23.11

This commit is contained in:
traxys 2024-05-26 17:00:37 +02:00
parent 8212bf1cd2
commit 23276f629b

View file

@ -44,7 +44,7 @@ If you have any question, please use the [discussions page](https://github.com/n
> NixVim needs to be installed with a compatible nixpkgs version. > NixVim needs to be installed with a compatible nixpkgs version.
> This means that the `main` branch of NixVim requires to be installed with `nixos-unstable`. > This means that the `main` branch of NixVim requires to be installed with `nixos-unstable`.
> >
> If you want to use NixVim with nixpkgs 23.05 you should use the `nixos-23.05` branch. > If you want to use NixVim with nixpkgs 23.11 you should use the `nixos-23.11` branch.
### Without flakes ### Without flakes
NixVim now ships with `flake-compat`, which makes it usable from any system. NixVim now ships with `flake-compat`, which makes it usable from any system.
@ -57,7 +57,7 @@ let
nixvim = import (builtins.fetchGit { nixvim = import (builtins.fetchGit {
url = "https://github.com/nix-community/nixvim"; url = "https://github.com/nix-community/nixvim";
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim. # If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
# ref = "nixos-23.05"; # ref = "nixos-23.11";
}); });
in in
{ {
@ -98,7 +98,7 @@ flakes, just add the nixvim input:
inputs.nixvim = { inputs.nixvim = {
url = "github:nix-community/nixvim"; url = "github:nix-community/nixvim";
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim. # If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
# url = "github:nix-community/nixvim/nixos-23.05"; # url = "github:nix-community/nixvim/nixos-23.11";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };