nixpkgs/nixos/doc/manual/installation/upgrading.xml

87 lines
5.5 KiB
XML
Raw Normal View History

<chapter xmlns="http://docbook.org/ns/docbook"
xmlns:xlink="http://www.w3.org/1999/xlink"
version="5.0"
xml:id="sec-upgrading">
2018-05-01 23:57:09 +00:00
<title>Upgrading NixOS</title>
<para>
2019-09-18 20:13:35 +00:00
The best way to keep your NixOS installation up to date is to use one of the NixOS <emphasis>channels</emphasis>. A channel is a Nix mechanism for distributing Nix expressions and associated binaries. The NixOS channels are updated automatically from NixOSs Git repository after certain tests have passed and all packages have been built. These channels are:
2018-05-01 23:57:09 +00:00
<itemizedlist>
<listitem>
<para>
2019-09-18 20:13:35 +00:00
<emphasis>Stable channels</emphasis>, such as <literal
xlink:href="https://nixos.org/channels/nixos-19.03">nixos-19.03</literal>. These only get conservative bug fixes and package upgrades. For instance, a channel update may cause the Linux kernel on your system to be upgraded from 4.19.34 to 4.19.38 (a minor bug fix), but not from 4.19.<replaceable>x</replaceable> to 4.20.<replaceable>x</replaceable> (a major change that has the potential to break things). Stable channels are generally maintained until the next stable branch is created.
2018-05-01 23:57:09 +00:00
</para>
2014-12-30 21:31:01 +00:00
<para></para>
2018-05-01 23:57:09 +00:00
</listitem>
<listitem>
<para>
2019-09-18 20:13:35 +00:00
The <emphasis>unstable channel</emphasis>, <literal
xlink:href="https://nixos.org/channels/nixos-unstable">nixos-unstable</literal>. This corresponds to NixOSs main development branch, and may thus see radical changes between channel updates. Its not recommended for production systems.
2018-05-01 23:57:09 +00:00
</para>
</listitem>
<listitem>
<para>
2019-09-18 20:13:35 +00:00
<emphasis>Small channels</emphasis>, such as <literal
xlink:href="https://nixos.org/channels/nixos-19.03-small">nixos-19.03-small</literal> or <literal
xlink:href="https://nixos.org/channels/nixos-unstable-small">nixos-unstable-small</literal>. These are identical to the stable and unstable channels described above, except that they contain fewer binary packages. This means they get updated faster than the regular channels (for instance, when a critical security patch is committed to NixOSs source tree), but may require more packages to be built from source than usual. Theyre mostly intended for server environments and as such contain few GUI applications.
2018-05-01 23:57:09 +00:00
</para>
</listitem>
</itemizedlist>
2019-09-18 20:13:35 +00:00
To see what channels are available, go to <link xlink:href="https://nixos.org/channels"/>. (Note that the URIs of the various channels redirect to a directory that contains the channels latest version and includes ISO images and VirtualBox appliances.) Please note that during the release process, channels that are not yet released will be present here as well. See the Getting NixOS page <link xlink:href="https://nixos.org/nixos/download.html"/> to find the newest supported stable release.
2018-05-01 23:57:09 +00:00
</para>
<para>
2019-09-18 20:13:35 +00:00
When you first install NixOS, youre automatically subscribed to the NixOS channel that corresponds to your installation source. For instance, if you installed from a 19.03 ISO, you will be subscribed to the <literal>nixos-19.03</literal> channel. To see which NixOS channel youre subscribed to, run the following as root:
<screen>
# nix-channel --list | grep nixos
nixos https://nixos.org/channels/nixos-unstable
</screen>
2018-05-01 23:57:09 +00:00
To switch to a different NixOS channel, do
<screen>
# nix-channel --add https://nixos.org/channels/<replaceable>channel-name</replaceable> nixos
</screen>
2019-09-18 20:13:35 +00:00
(Be sure to include the <literal>nixos</literal> parameter at the end.) For instance, to use the NixOS 19.03 stable channel:
2014-12-30 21:31:01 +00:00
<screen>
# nix-channel --add https://nixos.org/channels/nixos-19.03 nixos
2014-12-30 21:31:01 +00:00
</screen>
2018-05-01 23:57:09 +00:00
If you have a server, you may want to use the “small” channel instead:
<screen>
# nix-channel --add https://nixos.org/channels/nixos-19.03-small nixos
</screen>
2018-05-01 23:57:09 +00:00
And if you want to live on the bleeding edge:
<screen>
# nix-channel --add https://nixos.org/channels/nixos-unstable nixos
</screen>
2018-05-01 23:57:09 +00:00
</para>
<para>
2019-09-18 20:13:35 +00:00
You can then upgrade NixOS to the latest version in your chosen channel by running
<screen>
# nixos-rebuild switch --upgrade
</screen>
2019-09-18 20:13:35 +00:00
which is equivalent to the more verbose <literal>nix-channel --update nixos; nixos-rebuild switch</literal>.
2018-05-01 23:57:09 +00:00
</para>
<note>
<para>
2019-09-18 20:13:35 +00:00
Channels are set per user. This means that running <literal> nix-channel --add</literal> as a non root user (or without sudo) will not affect configuration in <literal>/etc/nixos/configuration.nix</literal>
2018-05-01 23:57:09 +00:00
</para>
</note>
<warning>
<para>
2019-09-18 20:13:35 +00:00
It is generally safe to switch back and forth between channels. The only exception is that a newer NixOS may also have a newer Nix version, which may involve an upgrade of Nixs database schema. This cannot be undone easily, so in that case you will not be able to go back to your original channel.
2018-05-01 23:57:09 +00:00
</para>
</warning>
2018-09-01 19:49:04 +00:00
<section xml:id="sec-upgrading-automatic">
2018-05-01 23:57:09 +00:00
<title>Automatic Upgrades</title>
<para>
2019-09-18 20:13:35 +00:00
You can keep a NixOS system up-to-date automatically by adding the following to <filename>configuration.nix</filename>:
2015-09-02 13:38:06 +00:00
<programlisting>
2018-04-05 08:43:56 +00:00
<xref linkend="opt-system.autoUpgrade.enable"/> = true;
2015-09-02 13:38:06 +00:00
</programlisting>
2019-09-18 20:13:35 +00:00
This enables a periodically executed systemd service named <literal>nixos-upgrade.service</literal>. It runs <command>nixos-rebuild switch --upgrade</command> to upgrade NixOS to the latest version in the current channel. (To see when the service runs, see <command>systemctl list-timers</command>.) You can also specify a channel explicitly, e.g.
2015-09-02 13:38:06 +00:00
<programlisting>
<xref linkend="opt-system.autoUpgrade.channel"/> = https://nixos.org/channels/nixos-19.03;
2015-09-02 13:38:06 +00:00
</programlisting>
2018-05-01 23:57:09 +00:00
</para>
</section>
</chapter>