mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
treewide: replace mentions of 24.11 with 25.05
This commit is contained in:
parent
f80d8d5907
commit
764a9b8dda
6 changed files with 9 additions and 9 deletions
|
@ -91,7 +91,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 `nixpkgs-unstable`.
|
> This means that the `main` branch of NixVim requires to be installed with `nixpkgs-unstable`.
|
||||||
>
|
>
|
||||||
> If you want to use NixVim with nixpkgs 24.11 you should use the `nixos-24.11` branch.
|
> If you want to use NixVim with nixpkgs 25.05 you should use the `nixos-25.05` branch.
|
||||||
|
|
||||||
For more detail, see the [Installation](https://nix-community.github.io/nixvim) section of our documentation.
|
For more detail, see the [Installation](https://nix-community.github.io/nixvim) section of our documentation.
|
||||||
|
|
||||||
|
@ -108,7 +108,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-24.11";
|
# ref = "nixos-25.05";
|
||||||
});
|
});
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
@ -151,7 +151,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-24.11";
|
# url = "github:nix-community/nixvim/nixos-25.05";
|
||||||
|
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
@ -286,7 +286,7 @@ in pkgs.mkShell {
|
||||||
Documentation is available on this project's GitHub Pages page:
|
Documentation is available on this project's GitHub Pages page:
|
||||||
[https://nix-community.github.io/nixvim](https://nix-community.github.io/nixvim)
|
[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.11](https://nix-community.github.io/nixvim/24.11).
|
The stable documentation is also available at [https://nix-community.github.io/nixvim/25.05](https://nix-community.github.io/nixvim/25.05).
|
||||||
|
|
||||||
If the option `enableMan` is set to `true` (by default it is), man pages will also
|
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`.
|
be installed containing the same information, they can be viewed with `man nixvim`.
|
||||||
|
|
|
@ -60,7 +60,7 @@ When using Nixvim, it is possible to encounter errors about something not being
|
||||||
```
|
```
|
||||||
|
|
||||||
This usually means one of two things:
|
This usually means one of two things:
|
||||||
- The nixpkgs version is not in line with NixVim (for example nixpkgs nixos-24.11 is used with NixVim master)
|
- The nixpkgs version is not in line with NixVim (for example nixpkgs nixos-25.05 is used with NixVim master)
|
||||||
- The nixpkgs unstable version used with NixVim is not recent enough.
|
- 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`.
|
When building nixvim using flakes and our ["standalone mode"][standalone], we usually recommend _not_ declaring a "follows" for `inputs.nixvim`.
|
||||||
|
|
|
@ -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.
|
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.
|
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.11` when using NixOS 24.11.
|
When using a `stable` version you must use the corresponding nixvim branch, for example `nixos-25.05` when using NixOS 25.05.
|
||||||
|
|
||||||
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`.
|
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`.
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ let
|
||||||
home = {
|
home = {
|
||||||
username = "nixvim";
|
username = "nixvim";
|
||||||
homeDirectory = "/invalid/dir";
|
homeDirectory = "/invalid/dir";
|
||||||
stateVersion = "24.11";
|
stateVersion = "25.05";
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
|
|
|
@ -10,7 +10,7 @@ self.inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
home.username = "nixvim";
|
home.username = "nixvim";
|
||||||
home.homeDirectory = "/invalid/dir";
|
home.homeDirectory = "/invalid/dir";
|
||||||
|
|
||||||
home.stateVersion = "24.11";
|
home.stateVersion = "25.05";
|
||||||
|
|
||||||
programs.nixvim = {
|
programs.nixvim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -7,7 +7,7 @@ self.inputs.nixpkgs.lib.nixosSystem {
|
||||||
|
|
||||||
modules = [
|
modules = [
|
||||||
{
|
{
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "25.05";
|
||||||
boot.loader.systemd-boot.enable = true;
|
boot.loader.systemd-boot.enable = true;
|
||||||
fileSystems."/" = {
|
fileSystems."/" = {
|
||||||
device = "/non/existent/device";
|
device = "/non/existent/device";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue