Skip to content

Commit 4964f3c

Browse files
committed
home-manager: prepare 24.11 release
1 parent 8eeda28 commit 4964f3c

File tree

14 files changed

+25
-26
lines changed

14 files changed

+25
-26
lines changed

README.md

+2-2
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-24.05`). These branches get
31+
corresponding to NixOS releases (e.g. `release-24.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 24.05 (the current
52+
Home Manager targets [NixOS][] unstable and NixOS version 24.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

+3-3
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 24.05 channel, you can run
18+
and if you follow a Nixpkgs version 24.11 channel, you can run
1919

2020
``` shell
21-
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-24.05.tar.gz home-manager
21+
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-24.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 = "24.05";
48+
home.stateVersion = "24.11";
4949
};
5050
```
5151

docs/manual/installation/nixos.md

+3-3
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 24.05 channel, you can run
20+
and if you follow a Nixpkgs version 24.11 channel, you can run
2121

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

@@ -44,7 +44,7 @@ home-manager.users.eve = { pkgs, ... }: {
4444
4545
# The state version is required and should stay at the version you
4646
# originally installed.
47-
home.stateVersion = "24.05";
47+
home.stateVersion = "24.11";
4848
};
4949
```
5050

docs/manual/installation/standalone.md

+2-2
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 24.05 channel you can run
22+
and if you follow a Nixpkgs version 24.11 channel you can run
2323

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

docs/manual/nix-flakes/standalone.md

+3-3
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 24.05 run
14+
For Nixpkgs or NixOS version 24.11 run
1515

1616
``` shell
17-
$ nix run home-manager/release-24.05 -- init --switch
17+
$ nix run home-manager/release-24.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-24.05`.
33+
Where `$branch` is one of `master` or `release-24.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

+2-2
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 = "24.05";
23+
home.stateVersion = "24.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 = "24.05";
68+
home.stateVersion = "24.11";
6969
7070
# Let Home Manager install and manage itself.
7171
programs.home-manager.enable = true;

docs/release-notes/rl-2411.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# Release 24.11 {#sec-release-24.11}
22

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

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

@@ -29,4 +28,4 @@ The state version in this release includes the changes below. These
2928
changes are only active if the `home.stateVersion` option is set to
3029
\"24.11\" or later.
3130

32-
- No changes.
31+
- There was no state version change in this release.

home-manager/home-manager

+2-2
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ $xdgVars
359359
# You should not change this value, even if you update Home Manager. If you do
360360
# want to update the value, then make sure to first check the Home Manager
361361
# release notes.
362-
home.stateVersion = "24.05"; # Please read the comment before changing.
362+
home.stateVersion = "24.11"; # Please read the comment before changing.
363363
364364
# The home.packages option allows you to install Nix packages into your
365365
# environment.
@@ -857,7 +857,7 @@ function doUninstall() {
857857
uninstall = true;
858858
home.username = "$USER";
859859
home.homeDirectory = "$HOME";
860-
home.stateVersion = "24.05";
860+
home.stateVersion = "24.11";
861861
}
862862
EOF
863863
# shellcheck disable=2064

modules/misc/uninstall.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ in {
2121
config = mkIf config.uninstall {
2222
home.packages = lib.mkForce [ ];
2323
home.file = lib.mkForce { };
24-
home.stateVersion = lib.mkForce "24.05";
24+
home.stateVersion = lib.mkForce "24.11";
2525
home.enableNixpkgsReleaseCheck = lib.mkForce false;
2626
manual.manpages.enable = lib.mkForce false;
2727
news.display = lib.mkForce "silent";

tests/integration/nixos/basics.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
};
1818

1919
home-manager.users.alice = { ... }: {
20-
home.stateVersion = "24.05";
20+
home.stateVersion = "24.11";
2121
home.file.test.text = "testfile";
2222
# Enable a light-weight systemd service.
2323
services.pueue.enable = true;

tests/integration/standalone/alice-home-init.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# You should not change this value, even if you update Home Manager. If you do
1414
# want to update the value, then make sure to first check the Home Manager
1515
# release notes.
16-
home.stateVersion = "24.05"; # Please read the comment before changing.
16+
home.stateVersion = "24.11"; # Please read the comment before changing.
1717

1818
# The home.packages option allows you to install Nix packages into your
1919
# environment.

tests/integration/standalone/alice-home-next.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
home.username = "alice";
55
home.homeDirectory = "/home/alice";
6-
home.stateVersion = "24.05";
6+
home.stateVersion = "24.11";
77
home.packages = [ pkgs.hello ];
88
home.file.test.text = "test";
99
home.sessionVariables.EDITOR = "emacs";

tests/integration/standalone/kitty-theme-bad-home.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ ... }: {
22
home.username = "alice";
33
home.homeDirectory = "/home/alice";
4-
home.stateVersion = "24.05";
4+
home.stateVersion = "24.11";
55

66
# Let Home Manager install and manage itself.
77
programs.home-manager.enable = true;

tests/integration/standalone/kitty-theme-good-home.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
home.username = "alice";
33
home.homeDirectory = "/home/alice";
44

5-
home.stateVersion = "24.05"; # Please read the comment before changing.
5+
home.stateVersion = "24.11"; # Please read the comment before changing.
66

77
# Let Home Manager install and manage itself.
88
programs.home-manager.enable = true;

0 commit comments

Comments
 (0)