Skip to content

Commit a35f923

Browse files
committed
treewide: replace mentions of 24.05 with 24.11
1 parent 0c89a66 commit a35f923

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 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 24.05 you should use the `nixos-24.05` branch.
90+
> If you want to use NixVim with nixpkgs 24.11 you should use the `nixos-24.11` branch.
9191
9292
For more detail, see the [Installation](https://nix-community.github.io/nixvim) 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-24.05";
107+
# ref = "nixos-24.11";
108108
});
109109
in
110110
{
@@ -147,7 +147,7 @@ flakes, just add the nixvim input:
147147
inputs.nixvim = {
148148
url = "github:nix-community/nixvim";
149149
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
150-
# url = "github:nix-community/nixvim/nixos-24.05";
150+
# url = "github:nix-community/nixvim/nixos-24.11";
151151
152152
inputs.nixpkgs.follows = "nixpkgs";
153153
};
@@ -281,7 +281,7 @@ in pkgs.mkShell {
281281
Documentation is available on this project's GitHub Pages page:
282282
[https://nix-community.github.io/nixvim](https://nix-community.github.io/nixvim)
283283

284-
The stable documentation is also available at [https://nix-community.github.io/nixvim/24.05](https://nix-community.github.io/nixvim/24.05).
284+
The stable documentation is also available at [https://nix-community.github.io/nixvim/24.11](https://nix-community.github.io/nixvim/24.11).
285285

286286
If the option `enableMan` is set to `true` (by default it is), man pages will also
287287
be installed containing the same information, they can be viewed with `man nixvim`.

docs/user-guide/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ When using Nixvim, it is possible to encounter errors about something not being
5454
```
5555

5656
This usually means one of two things:
57-
- The nixpkgs version is not in line with NixVim (for example nixpkgs nixos-24.05 is used with NixVim master)
57+
- The nixpkgs version is not in line with NixVim (for example nixpkgs nixos-24.11 is used with NixVim master)
5858
- The nixpkgs unstable version used with NixVim is not recent enough.
5959

6060
When building nixvim using flakes and our ["standalone mode"][standalone], we usually recommend _not_ declaring a "follows" for `inputs.nixvim`.

docs/user-guide/install.md

Lines changed: 1 addition & 1 deletion
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 `main` 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-24.05` when using NixOS 24.05.
8+
When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-24.11` when using NixOS 24.11.
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

tests/modules/hm-extra-files-byte-compiling.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let
88
home = {
99
username = "nixvim";
1010
homeDirectory = "/invalid/dir";
11-
stateVersion = "24.05";
11+
stateVersion = "24.11";
1212
};
1313

1414
programs.nixvim = {

tests/modules/hm.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ home-manager.lib.homeManagerConfiguration {
1111
home.username = "nixvim";
1212
home.homeDirectory = "/invalid/dir";
1313

14-
home.stateVersion = "24.05";
14+
home.stateVersion = "24.11";
1515

1616
programs.nixvim = {
1717
enable = true;

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 = "24.05";
11+
system.stateVersion = "24.11";
1212
boot.loader.systemd-boot.enable = true;
1313
fileSystems."/" = {
1414
device = "/non/existent/device";

0 commit comments

Comments
 (0)