1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 10:28:31 +02:00

Update stable version to 19.03

Also prepares for 19.09.
This commit is contained in:
Robert Helgesson 2019-04-22 18:55:28 +02:00
parent e3831d8ecc
commit 8ecc311bcc
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
6 changed files with 23 additions and 15 deletions

View File

@ -19,7 +19,7 @@ will write to your dconf store and cannot tell whether a configuration
that it is about to be overwrite was from a previous Home Manager that it is about to be overwrite was from a previous Home Manager
generation or from manual configuration. generation or from manual configuration.
Home Manager targets [NixOS][] unstable and NixOS version 18.09 (the Home Manager targets [NixOS][] unstable and NixOS version 19.03 (the
current stable version), it may or may not work on other Linux current stable version), it may or may not work on other Linux
distributions and NixOS versions. distributions and NixOS versions.
@ -72,11 +72,11 @@ Currently the easiest way to install Home Manager is as follows:
if you are following Nixpkgs master or an unstable channel and if you are following Nixpkgs master or an unstable channel and
```console ```console
$ nix-channel --add https://github.com/rycee/home-manager/archive/release-18.09.tar.gz home-manager $ nix-channel --add https://github.com/rycee/home-manager/archive/release-19.03.tar.gz home-manager
$ nix-channel --update $ nix-channel --update
``` ```
if you follow a Nixpkgs version 18.09 channel. if you follow a Nixpkgs version 19.03 channel.
On NixOS you may need to log out and back in for the channel to On NixOS you may need to log out and back in for the channel to
become available. On non-NixOS you may have to add become available. On non-NixOS you may have to add

View File

@ -79,11 +79,11 @@
if you are following Nixpkgs master or an unstable channel and if you are following Nixpkgs master or an unstable channel and
</para> </para>
<screen> <screen>
<prompt>$</prompt> <userinput>nix-channel --add https://github.com/rycee/home-manager/archive/release-18.09.tar.gz home-manager</userinput> <prompt>$</prompt> <userinput>nix-channel --add https://github.com/rycee/home-manager/archive/release-19.03.tar.gz home-manager</userinput>
<prompt>$</prompt> <userinput>nix-channel --update</userinput> <prompt>$</prompt> <userinput>nix-channel --update</userinput>
</screen> </screen>
<para> <para>
if you follow a Nixpkgs version 18.09 channel. if you follow a Nixpkgs version 19.03 channel.
</para> </para>
<para> <para>
On NixOS you may need to log out and back in for the channel to become On NixOS you may need to log out and back in for the channel to become
@ -169,12 +169,12 @@ $HOME/.nix-profile/etc/profile.d/hm-session-vars.sh
</para> </para>
<screen> <screen>
<prompt>#</prompt> <userinput>nix-channel --add https://github.com/rycee/home-manager/archive/release-18.09.tar.gz home-manager</userinput> <prompt>#</prompt> <userinput>nix-channel --add https://github.com/rycee/home-manager/archive/release-19.03.tar.gz home-manager</userinput>
<prompt>#</prompt> <userinput>nix-channel --update</userinput> <prompt>#</prompt> <userinput>nix-channel --update</userinput>
</screen> </screen>
<para> <para>
if you follow a Nixpkgs version 18.09 channel. if you follow a Nixpkgs version 19.03 channel.
</para> </para>
<para> <para>

View File

@ -8,6 +8,7 @@
This section lists the release notes for stable versions of Home Manager and This section lists the release notes for stable versions of Home Manager and
the current unstable version. the current unstable version.
</para> </para>
<xi:include href="rl-1909.xml" />
<xi:include href="rl-1903.xml" /> <xi:include href="rl-1903.xml" />
<xi:include href="rl-1809.xml" /> <xi:include href="rl-1809.xml" />
</appendix> </appendix>

View File

@ -3,15 +3,10 @@
xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xi="http://www.w3.org/2001/XInclude"
version="5.0" version="5.0"
xml:id="sec-release-19.03"> xml:id="sec-release-19.03">
<title>Release 19.03 (unstable)</title> <title>Release 19.03</title>
<para> <para>
This is the current unstable branch and the information in this section is The 19.03 release branch became the stable branch in April, 2019.
therefore not final.
</para>
<para>
Scheduled released is March, 2019.
</para> </para>
<section xmlns="http://docbook.org/ns/docbook" <section xmlns="http://docbook.org/ns/docbook"

View File

@ -0,0 +1,12 @@
<section xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:xi="http://www.w3.org/2001/XInclude"
version="5.0"
xml:id="sec-release-19.09">
<title>Release 19.09 (unreleased)</title>
<para>
This is the current unstable branch and the information in this section is
therefore not final.
</para>
</section>

View File

@ -5,7 +5,7 @@ with lib;
{ {
options = { options = {
home.stateVersion = mkOption { home.stateVersion = mkOption {
type = types.enum [ "18.09" "19.03" ]; type = types.enum [ "18.09" "19.03" "19.09" ];
default = "18.09"; default = "18.09";
description = '' description = ''
It is occasionally necessary for Home Manager to change It is occasionally necessary for Home Manager to change