Skip to content

Commit f47d2e3

Browse files
committed
home-manager: set 25.11 as stable
Signed-off-by: Austin Horstman <[email protected]>
1 parent e3f8406 commit f47d2e3

File tree

10 files changed

+29
-30
lines changed

10 files changed

+29
-30
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Releases
2828
Home Manager is developed against `nixpkgs-unstable` branch, which often causes
2929
it to contain tweaks for changes/packages not yet released in stable [NixOS][].
3030
To avoid breaking users' configurations, Home Manager is released in branches
31-
corresponding to NixOS releases (e.g. `release-25.05`). These branches get
31+
corresponding to NixOS releases (e.g. `release-25.11`). These branches get
3232
fixes, but usually not new modules. If you need a module to be backported, then
3333
feel free to open an issue.
3434

@@ -49,7 +49,7 @@ dconf store and cannot tell whether a configuration that it is about to be
4949
overwritten was from a previous Home Manager generation or from manual
5050
configuration.
5151

52-
Home Manager targets [NixOS][] unstable and NixOS version 25.05 (the current
52+
Home Manager targets [NixOS][] unstable and NixOS version 25.11 (the current
5353
stable version), it may or may not work on other Linux distributions and NixOS
5454
versions.
5555

docs/manual/installation/nix-darwin.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ $ nix-channel --add https://github.com/nix-community/home-manager/archive/master
1515
$ nix-channel --update
1616
```
1717

18-
and if you follow a Nixpkgs version 25.05 channel, you can run
18+
and if you follow a Nixpkgs version 25.11 channel, you can run
1919

2020
``` shell
21-
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-25.05.tar.gz home-manager
21+
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-25.11.tar.gz home-manager
2222
$ nix-channel --update
2323
```
2424

@@ -45,7 +45,7 @@ home-manager.users.eve = { pkgs, ... }: {
4545
4646
# The state version is required and should stay at the version you
4747
# originally installed.
48-
home.stateVersion = "25.05";
48+
home.stateVersion = "25.11";
4949
};
5050
```
5151

docs/manual/installation/nixos.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ $ sudo nix-channel --add https://github.com/nix-community/home-manager/archive/m
1717
$ sudo nix-channel --update
1818
```
1919

20-
and if you follow a Nixpkgs version 25.05 channel, you can run
20+
and if you follow a Nixpkgs version 25.11 channel, you can run
2121

2222
``` shell
23-
$ sudo nix-channel --add https://github.com/nix-community/home-manager/archive/release-25.05.tar.gz home-manager
23+
$ sudo nix-channel --add https://github.com/nix-community/home-manager/archive/release-25.11.tar.gz home-manager
2424
$ sudo nix-channel --update
2525
```
2626

@@ -39,7 +39,7 @@ Alternatively, home-manager installation can be done declaratively through confi
3939
{ config, pkgs, lib, ... }:
4040
4141
let
42-
home-manager = builtins.fetchTarball https://github.com/nix-community/home-manager/archive/release-25.05.tar.gz;
42+
home-manager = builtins.fetchTarball https://github.com/nix-community/home-manager/archive/release-25.11.tar.gz;
4343
in
4444
{
4545
imports =
@@ -51,10 +51,10 @@ in
5151
home-manager.users.eve = { pkgs, ... }: {
5252
home.packages = [ pkgs.atool pkgs.httpie ];
5353
programs.bash.enable = true;
54-
54+
5555
# The state version is required and should stay at the version you
5656
# originally installed.
57-
home.stateVersion = "25.05";
57+
home.stateVersion = "25.11";
5858
};
5959
}
6060
```
@@ -67,14 +67,14 @@ home-manager.users.eve = { pkgs, ... }: {
6767
home.packages = [ pkgs.atool pkgs.httpie ];
6868
programs.bash.enable = true;
6969
70-
# This value determines the Home Manager release that your configuration is
71-
# compatible with. This helps avoid breakage when a new Home Manager release
72-
# introduces backwards incompatible changes.
70+
# This value determines the Home Manager release that your configuration is
71+
# compatible with. This helps avoid breakage when a new Home Manager release
72+
# introduces backwards incompatible changes.
7373
#
74-
# You should not change this value, even if you update Home Manager. If you do
75-
# want to update the value, then make sure to first check the Home Manager
76-
# release notes.
77-
home.stateVersion = "24.05"; # Please read the comment before changing.
74+
# You should not change this value, even if you update Home Manager. If you do
75+
# want to update the value, then make sure to first check the Home Manager
76+
# release notes.
77+
home.stateVersion = "25.11"; # Please read the comment before changing.
7878
7979
};
8080
```

docs/manual/installation/standalone.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
$ nix-channel --update
2020
```
2121

22-
and if you follow a Nixpkgs version 25.05 channel you can run
22+
and if you follow a Nixpkgs version 25.11 channel you can run
2323

2424
``` shell
25-
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-25.05.tar.gz home-manager
25+
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-25.11.tar.gz home-manager
2626
$ nix-channel --update
2727
```
2828

docs/manual/manual.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Home Manager Manual {#home-manager-manual}
22

3-
## Version 25.11 (unstable)
3+
## Version 25.11
44

55

66
```{=include=} preface

docs/manual/nix-flakes/standalone.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ then to generate and activate a basic configuration run the command
1111
$ nix run home-manager/master -- init --switch
1212
```
1313

14-
For Nixpkgs or NixOS version 25.05 run
14+
For Nixpkgs or NixOS version 25.11 run
1515

1616
``` shell
17-
$ nix run home-manager/release-25.05 -- init --switch
17+
$ nix run home-manager/release-25.11 -- init --switch
1818
```
1919

2020
This will generate a `flake.nix` and a `home.nix` file in
@@ -30,7 +30,7 @@ $ # Edit files in ~/.config/home-manager
3030
$ nix run home-manager/$branch -- init --switch
3131
```
3232

33-
Where `$branch` is one of `master` or `release-25.05`.
33+
Where `$branch` is one of `master` or `release-25.11`.
3434

3535
After the initial activation has completed successfully then building
3636
and activating your flake-based configuration is as simple as

docs/manual/usage/configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ A fresh install of Home Manager will generate a minimal
2020
# You can update Home Manager without changing this value. See
2121
# the Home Manager release notes for a list of state version
2222
# changes in each release.
23-
home.stateVersion = "25.05";
23+
home.stateVersion = "25.11";
2424
2525
# Let Home Manager install and manage itself.
2626
programs.home-manager.enable = true;
@@ -65,7 +65,7 @@ follows:
6565
# You can update Home Manager without changing this value. See
6666
# the Home Manager release notes for a list of state version
6767
# changes in each release.
68-
home.stateVersion = "25.05";
68+
home.stateVersion = "25.11";
6969
7070
# Let Home Manager install and manage itself.
7171
programs.home-manager.enable = true;

docs/release-notes/rl-2511.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Release 25.11 {#sec-release-25.11}
22

3-
This is the current unstable branch and the information in this
4-
section is therefore not final.
3+
The 25.11 release branch became stable in November, 2025.
54

65
## Highlights {#sec-release-25.11-highlights}
76

home-manager/home-manager

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ $xdgVars
403403
# You should not change this value, even if you update Home Manager. If you do
404404
# want to update the value, then make sure to first check the Home Manager
405405
# release notes.
406-
home.stateVersion = "25.05"; # Please read the comment before changing.
406+
home.stateVersion = "25.11"; # Please read the comment before changing.
407407
408408
# The home.packages option allows you to install Nix packages into your
409409
# environment.
@@ -1039,7 +1039,7 @@ function doUninstall() {
10391039
uninstall = true;
10401040
home.username = "$(escapeForNix "$USER")";
10411041
home.homeDirectory = "$(escapeForNix "$HOME")";
1042-
home.stateVersion = "25.05";
1042+
home.stateVersion = "25.11";
10431043
}
10441044
EOF
10451045
# shellcheck disable=2064

modules/misc/uninstall.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ in
2222
config = mkIf config.uninstall {
2323
home.packages = lib.mkForce [ ];
2424
home.file = lib.mkForce { };
25-
home.stateVersion = lib.mkForce "25.05";
25+
home.stateVersion = lib.mkForce "25.11";
2626
home.enableNixpkgsReleaseCheck = lib.mkForce false;
2727
manual.manpages.enable = lib.mkForce false;
2828
news.display = lib.mkForce "silent";

0 commit comments

Comments
 (0)