@@ -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
4141let
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;
4343in
4444{
4545 imports =
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```
0 commit comments