Skip to content

Commit

Permalink
treewide: replace mentions of 24.05 with 24.11
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Nov 30, 2024
1 parent 0c89a66 commit a35f923
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,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.
> This means that the `main` branch of NixVim requires to be installed with `nixos-unstable`.
>
> If you want to use NixVim with nixpkgs 24.05 you should use the `nixos-24.05` branch.
> If you want to use NixVim with nixpkgs 24.11 you should use the `nixos-24.11` branch.
For more detail, see the [Installation](https://nix-community.github.io/nixvim) section of our documentation.

Expand All @@ -104,7 +104,7 @@ let
nixvim = import (builtins.fetchGit {
url = "https://github.com/nix-community/nixvim";
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
# ref = "nixos-24.05";
# ref = "nixos-24.11";
});
in
{
Expand Down Expand Up @@ -147,7 +147,7 @@ flakes, just add the nixvim input:
inputs.nixvim = {
url = "github:nix-community/nixvim";
# If you are not running an unstable channel of nixpkgs, select the corresponding branch of nixvim.
# url = "github:nix-community/nixvim/nixos-24.05";
# url = "github:nix-community/nixvim/nixos-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
Expand Down Expand Up @@ -281,7 +281,7 @@ in pkgs.mkShell {
Documentation is available on this project's GitHub Pages page:
[https://nix-community.github.io/nixvim](https://nix-community.github.io/nixvim)

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

If the option `enableMan` is set to `true` (by default it is), man pages will also
be installed containing the same information, they can be viewed with `man nixvim`.
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ When using Nixvim, it is possible to encounter errors about something not being
```

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

When building nixvim using flakes and our ["standalone mode"][standalone], we usually recommend _not_ declaring a "follows" for `inputs.nixvim`.
Expand Down
2 changes: 1 addition & 1 deletion docs/user-guide/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ You must use a `nixpkgs` version compatible with the nixvim version you choose.
The `main` branch requires to use a _very recent_ version of nixpkgs unstable.
In order to guarantee the compatibility between nixvim & nixpkgs it is recommended to always update both at the same time.

When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-24.05` when using NixOS 24.05.
When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-24.11` when using NixOS 24.11.

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`.

Expand Down
2 changes: 1 addition & 1 deletion tests/modules/hm-extra-files-byte-compiling.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let
home = {
username = "nixvim";
homeDirectory = "/invalid/dir";
stateVersion = "24.05";
stateVersion = "24.11";
};

programs.nixvim = {
Expand Down
2 changes: 1 addition & 1 deletion tests/modules/hm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ home-manager.lib.homeManagerConfiguration {
home.username = "nixvim";
home.homeDirectory = "/invalid/dir";

home.stateVersion = "24.05";
home.stateVersion = "24.11";

programs.nixvim = {
enable = true;
Expand Down
2 changes: 1 addition & 1 deletion tests/modules/nixos.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ nixpkgs.lib.nixosSystem {

modules = [
{
system.stateVersion = "24.05";
system.stateVersion = "24.11";
boot.loader.systemd-boot.enable = true;
fileSystems."/" = {
device = "/non/existent/device";
Expand Down

0 comments on commit a35f923

Please sign in to comment.