Skip to content

Commit f02d8c9

Browse files
committed
misc: prepare 24.05 release
1 parent aa4afbe commit f02d8c9

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ If you have any question, please use the [discussions page](https://github.com/n
8787
> NixVim needs to be installed with a compatible nixpkgs version.
8888
> This means that the `main` branch of NixVim requires to be installed with `nixos-unstable`.
8989
>
90-
> If you want to use NixVim with nixpkgs 23.11 you should use the `nixos-23.11` branch.
90+
> If you want to use NixVim with nixpkgs 24.05 you should use the `nixos-24.05` branch.
9191
9292
For more detail, see the [Installation](https://nix-community.github.io/nixvim/install.html#installation) section of our documentation.
9393

@@ -104,7 +104,7 @@ let
104104
nixvim = import (builtins.fetchGit {
105105
url = "https://github.com/nix-community/nixvim";
106106
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
107-
# ref = "nixos-23.11";
107+
# ref = "nixos-24.05";
108108
});
109109
in
110110
{
@@ -149,7 +149,7 @@ flakes, just add the nixvim input:
149149
inputs.nixvim = {
150150
url = "github:nix-community/nixvim";
151151
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
152-
# url = "github:nix-community/nixvim/nixos-23.11";
152+
# url = "github:nix-community/nixvim/nixos-24.05";
153153
154154
inputs.nixpkgs.follows = "nixpkgs";
155155
};

docs/user-guide/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ When using NixVim it is possible to encounter an error of the type `attribute 'n
4343
```
4444

4545
This usually means one of two things:
46-
- The nixpkgs version is not in line with NixVim (for example nixpkgs nixos-23.11 is used with NixVim master)
46+
- The nixpkgs version is not in line with NixVim (for example nixpkgs nixos-24.05 is used with NixVim master)
4747
- The nixpkgs unstable version used with NixVim is not recent enough.
4848

4949
## How do I create multiple aliases for a single keymap

docs/user-guide/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ You must use a `nixpkgs` version compatible with the nixvim version you choose.
55
The `master` branch requires to use a _very recent_ version of nixpkgs unstable.
66
In order to guarantee the compatibility between nixvim & nixpkgs it is recommended to always update both at the same time.
77

8-
When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-23.11` when using NixOS 23.11.
8+
When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-23.05` when using NixOS 23.05.
99

1010
Failure to use the correct branch, or an old revision of nixpkgs will likely result in errors of the form `vimPlugins.<name> attribute not found`.
1111

@@ -21,7 +21,7 @@ NixVim is also available for nix flakes, or directly through an import.
2121

2222
For a direct import you can add nixvim to your configuration as follows:
2323
```nix
24-
let
24+
let
2525
nixvim = import (builtins.fetchGit {
2626
url = "https://github.com/nix-community/nixvim";
2727
# When using a different channel you can use `ref = "nixos-<version>"` to set it here

tests/modules/nixos.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ nixpkgs.lib.nixosSystem {
88

99
modules = [
1010
{
11-
system.stateVersion = "23.11";
11+
system.stateVersion = "24.05";
1212
boot.loader.systemd-boot.enable = true;
1313
fileSystems."/" = {
1414
device = "/non/existent/device";

0 commit comments

Comments
 (0)