mirror of
https://github.com/nix-community/home-manager
synced 2024-11-22 20:53:14 +00:00
Switch to 21.11 as stable release
This commit is contained in:
parent
c27c8f49c0
commit
dc2a4e4146
3 changed files with 7 additions and 9 deletions
|
@ -54,11 +54,11 @@ $ nix-channel --add https://github.com/nix-community/home-manager/archive/master
|
||||||
$ nix-channel --update
|
$ nix-channel --update
|
||||||
----
|
----
|
||||||
+
|
+
|
||||||
and if you follow a Nixpkgs version 21.05 channel you can run
|
and if you follow a Nixpkgs version 21.11 channel you can run
|
||||||
+
|
+
|
||||||
[source,console]
|
[source,console]
|
||||||
----
|
----
|
||||||
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-21.05.tar.gz home-manager
|
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-21.11.tar.gz home-manager
|
||||||
$ nix-channel --update
|
$ nix-channel --update
|
||||||
----
|
----
|
||||||
+
|
+
|
||||||
|
@ -135,11 +135,11 @@ or an unstable channel, you can run
|
||||||
# nix-channel --update
|
# nix-channel --update
|
||||||
----
|
----
|
||||||
|
|
||||||
and if you follow a Nixpkgs version 21.05 channel, you can run
|
and if you follow a Nixpkgs version 21.11 channel, you can run
|
||||||
|
|
||||||
[source,console]
|
[source,console]
|
||||||
----
|
----
|
||||||
# nix-channel --add https://github.com/nix-community/home-manager/archive/release-21.05.tar.gz home-manager
|
# nix-channel --add https://github.com/nix-community/home-manager/archive/release-21.11.tar.gz home-manager
|
||||||
# nix-channel --update
|
# nix-channel --update
|
||||||
----
|
----
|
||||||
|
|
||||||
|
@ -237,11 +237,11 @@ or an unstable channel, you can run
|
||||||
# nix-channel --update
|
# nix-channel --update
|
||||||
----
|
----
|
||||||
|
|
||||||
and if you follow a Nixpkgs version 21.05 channel, you can run
|
and if you follow a Nixpkgs version 21.11 channel, you can run
|
||||||
|
|
||||||
[source,console]
|
[source,console]
|
||||||
----
|
----
|
||||||
# nix-channel --add https://github.com/nix-community/home-manager/archive/release-21.05.tar.gz home-manager
|
# nix-channel --add https://github.com/nix-community/home-manager/archive/release-21.11.tar.gz home-manager
|
||||||
# nix-channel --update
|
# nix-channel --update
|
||||||
----
|
----
|
||||||
|
|
||||||
|
|
|
@ -440,7 +440,7 @@ in
|
||||||
|
|
||||||
home.enableNixpkgsReleaseCheck = mkOption {
|
home.enableNixpkgsReleaseCheck = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
default = true;
|
default = false; # Temporarily disabled until release stabilizes.
|
||||||
description = ''
|
description = ''
|
||||||
Determines whether to check for release version mismatch between Home
|
Determines whether to check for release version mismatch between Home
|
||||||
Manager and Nixpkgs. Using mismatched versions is likely to cause errors
|
Manager and Nixpkgs. Using mismatched versions is likely to cause errors
|
||||||
|
|
|
@ -22,8 +22,6 @@ let
|
||||||
home.username = "hm-user";
|
home.username = "hm-user";
|
||||||
home.homeDirectory = "/home/hm-user";
|
home.homeDirectory = "/home/hm-user";
|
||||||
|
|
||||||
home.enableNixpkgsReleaseCheck = false;
|
|
||||||
|
|
||||||
# Avoid including documentation since this will cause
|
# Avoid including documentation since this will cause
|
||||||
# unnecessary rebuilds of the tests.
|
# unnecessary rebuilds of the tests.
|
||||||
manual.manpages.enable = false;
|
manual.manpages.enable = false;
|
||||||
|
|
Loading…
Reference in a new issue