mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
Switch to 22.05 as current development release
This commit is contained in:
parent
2889ee2363
commit
579f2e8beb
7 changed files with 27 additions and 5 deletions
2
.release
2
.release
|
@ -1 +1 @@
|
|||
21.11
|
||||
22.05
|
||||
|
|
|
@ -6,6 +6,8 @@ This section lists the release notes for stable versions of Home Manager and the
|
|||
|
||||
:leveloffset: 1
|
||||
|
||||
include::rl-2205.adoc[]
|
||||
|
||||
include::rl-2111.adoc[]
|
||||
|
||||
include::rl-2105.adoc[]
|
||||
|
|
19
docs/release-notes/rl-2205.adoc
Normal file
19
docs/release-notes/rl-2205.adoc
Normal file
|
@ -0,0 +1,19 @@
|
|||
[[sec-release-22.05]]
|
||||
== Release 22.05
|
||||
|
||||
This is the current unstable branch and the information in this section is therefore not final.
|
||||
|
||||
[[sec-release-22.05-highlights]]
|
||||
=== Highlights
|
||||
|
||||
This release has the following notable changes:
|
||||
|
||||
* Nothing has happened.
|
||||
|
||||
[[sec-release-22.05-state-version-changes]]
|
||||
=== State Version Changes
|
||||
|
||||
The state version in this release includes the changes below.
|
||||
These changes are only active if the `home.stateVersion` option is set to "22.05" or later.
|
||||
|
||||
* Nothing has happened.
|
|
@ -51,7 +51,7 @@ A fresh install of Home Manager will generate a minimal `~/.config/nixpkgs/home.
|
|||
# You can update Home Manager without changing this value. See
|
||||
# the Home Manager release notes for a list of state version
|
||||
# changes in each release.
|
||||
home.stateVersion = "21.11";
|
||||
home.stateVersion = "22.05";
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
@ -91,7 +91,7 @@ To satisfy the above setup we should elaborate the `home.nix` file as follows:
|
|||
# You can update Home Manager without changing this value. See
|
||||
# the Home Manager release notes for a list of state version
|
||||
# changes in each release.
|
||||
home.stateVersion = "21.11";
|
||||
home.stateVersion = "22.05";
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
|
|
@ -634,7 +634,7 @@ while [[ $# -gt 0 ]]; do
|
|||
export VERBOSE=1
|
||||
;;
|
||||
--version)
|
||||
echo 21.11
|
||||
echo 22.05
|
||||
exit 0
|
||||
;;
|
||||
*)
|
||||
|
|
|
@ -44,7 +44,7 @@ runCommand "home-manager-install" {
|
|||
# You can update Home Manager without changing this value. See
|
||||
# the Home Manager release notes for a list of state version
|
||||
# changes in each release.
|
||||
home.stateVersion = "21.11";
|
||||
home.stateVersion = "22.05";
|
||||
|
||||
# Let Home Manager install and manage itself.
|
||||
programs.home-manager.enable = true;
|
||||
|
|
|
@ -14,6 +14,7 @@ with lib;
|
|||
"21.03"
|
||||
"21.05"
|
||||
"21.11"
|
||||
"22.05"
|
||||
];
|
||||
default = "18.09";
|
||||
description = ''
|
||||
|
|
Loading…
Reference in a new issue