Skip to content

Commit 764a9b8

Browse files
GaetanLepagenix-infra-bot
authored andcommitted
treewide: replace mentions of 24.11 with 25.05
1 parent f80d8d5 commit 764a9b8

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
@@ -91,7 +91,7 @@ If you have any question, please use the [discussions page](https://github.com/n
9191
> NixVim needs to be installed with a compatible nixpkgs version.
9292
> This means that the `main` branch of NixVim requires to be installed with `nixpkgs-unstable`.
9393
>
94-
> If you want to use NixVim with nixpkgs 24.11 you should use the `nixos-24.11` branch.
94+
> If you want to use NixVim with nixpkgs 25.05 you should use the `nixos-25.05` branch.
9595
9696
For more detail, see the [Installation](https://nix-community.github.io/nixvim) section of our documentation.
9797

@@ -108,7 +108,7 @@ let
108108
nixvim = import (builtins.fetchGit {
109109
url = "https://github.com/nix-community/nixvim";
110110
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
111-
# ref = "nixos-24.11";
111+
# ref = "nixos-25.05";
112112
});
113113
in
114114
{
@@ -151,7 +151,7 @@ flakes, just add the nixvim input:
151151
inputs.nixvim = {
152152
url = "github:nix-community/nixvim";
153153
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
154-
# url = "github:nix-community/nixvim/nixos-24.11";
154+
# url = "github:nix-community/nixvim/nixos-25.05";
155155
156156
inputs.nixpkgs.follows = "nixpkgs";
157157
};
@@ -286,7 +286,7 @@ in pkgs.mkShell {
286286
Documentation is available on this project's GitHub Pages page:
287287
[https://nix-community.github.io/nixvim](https://nix-community.github.io/nixvim)
288288

289-
The stable documentation is also available at [https://nix-community.github.io/nixvim/24.11](https://nix-community.github.io/nixvim/24.11).
289+
The stable documentation is also available at [https://nix-community.github.io/nixvim/25.05](https://nix-community.github.io/nixvim/25.05).
290290

291291
If the option `enableMan` is set to `true` (by default it is), man pages will also
292292
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
@@ -60,7 +60,7 @@ When using Nixvim, it is possible to encounter errors about something not being
6060
```
6161

6262
This usually means one of two things:
63-
- The nixpkgs version is not in line with NixVim (for example nixpkgs nixos-24.11 is used with NixVim master)
63+
- The nixpkgs version is not in line with NixVim (for example nixpkgs nixos-25.05 is used with NixVim master)
6464
- The nixpkgs unstable version used with NixVim is not recent enough.
6565

6666
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.11` when using NixOS 24.11.
8+
When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-25.05` when using NixOS 25.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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ let
1111
home = {
1212
username = "nixvim";
1313
homeDirectory = "/invalid/dir";
14-
stateVersion = "24.11";
14+
stateVersion = "25.05";
1515
};
1616

1717
programs.nixvim = {

tests/platforms/hm.nix

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

13-
home.stateVersion = "24.11";
13+
home.stateVersion = "25.05";
1414

1515
programs.nixvim = {
1616
enable = true;

tests/platforms/nixos.nix

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

88
modules = [
99
{
10-
system.stateVersion = "24.11";
10+
system.stateVersion = "25.05";
1111
boot.loader.systemd-boot.enable = true;
1212
fileSystems."/" = {
1313
device = "/non/existent/device";

0 commit comments

Comments
 (0)