2007-02-06 22:14:02 +01:00
|
|
|
|
<chapter xmlns="http://docbook.org/ns/docbook"
|
|
|
|
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
|
|
|
|
2013-01-08 02:02:15 +01:00
|
|
|
|
<title>Installing NixOS</title>
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<!--===============================================================-->
|
|
|
|
|
|
|
|
|
|
<section>
|
|
|
|
|
|
|
|
|
|
<title>Obtaining NixOS</title>
|
|
|
|
|
|
|
|
|
|
<para>NixOS ISO images can be downloaded from the <link
|
|
|
|
|
xlink:href="http://nixos.org/nixos/download.html">NixOS
|
|
|
|
|
homepage</link>. These can be burned onto a CD. It is also possible
|
|
|
|
|
to copy them onto a USB stick and install NixOS from there. For
|
|
|
|
|
details, see the <link
|
|
|
|
|
xlink:href="https://nixos.org/wiki/Installing_NixOS_from_a_USB_stick">NixOS
|
|
|
|
|
Wiki</link>.</para>
|
|
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
2007-02-06 22:14:02 +01:00
|
|
|
|
<!--===============================================================-->
|
|
|
|
|
|
|
|
|
|
<section>
|
|
|
|
|
|
|
|
|
|
<title>Installation</title>
|
|
|
|
|
|
|
|
|
|
<orderedlist>
|
|
|
|
|
|
|
|
|
|
<listitem><para>Boot from the CD.</para></listitem>
|
|
|
|
|
|
2008-02-08 23:43:59 +01:00
|
|
|
|
<listitem><para>The CD contains a basic NixOS installation. (It
|
2012-04-10 16:12:49 +02:00
|
|
|
|
also contains Memtest86+, useful if you want to test new hardware.)
|
2008-02-08 23:43:59 +01:00
|
|
|
|
When it’s finished booting, it should have detected most of your
|
|
|
|
|
hardware and brought up networking (check
|
|
|
|
|
<command>ifconfig</command>). Networking is necessary for the
|
|
|
|
|
installer, since it will download lots of stuff (such as source
|
|
|
|
|
tarballs or Nixpkgs channel binaries). It’s best if you have a DHCP
|
2012-05-14 04:02:45 +02:00
|
|
|
|
server on your network. Otherwise configure networking manually
|
|
|
|
|
using <command>ifconfig</command>.</para></listitem>
|
2008-02-08 23:43:59 +01:00
|
|
|
|
|
2010-09-26 00:29:58 +02:00
|
|
|
|
<listitem><para>The NixOS manual is available on virtual console 8
|
|
|
|
|
(press Alt+F8 to access).</para></listitem>
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
|
|
|
|
<listitem><para>Login as <literal>root</literal>, empty
|
|
|
|
|
password.</para></listitem>
|
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<listitem><para>If you downloaded the graphical ISO image, you can
|
2013-03-24 22:07:27 +01:00
|
|
|
|
run <command>start display-manager</command> to start KDE.</para></listitem>
|
2012-05-14 04:02:45 +02:00
|
|
|
|
|
2007-02-06 22:14:02 +01:00
|
|
|
|
<listitem><para>The NixOS installer doesn’t do any partitioning or
|
|
|
|
|
formatting yet, so you need to that yourself. Use the following
|
|
|
|
|
commands:
|
|
|
|
|
|
|
|
|
|
<itemizedlist>
|
|
|
|
|
|
|
|
|
|
<listitem><para>For partitioning:
|
|
|
|
|
<command>fdisk</command>.</para></listitem>
|
2013-01-08 00:35:27 +01:00
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<listitem><para>For initialising Ext4 partitions:
|
|
|
|
|
<command>mkfs.ext4</command>. It is recommended that you assign a
|
|
|
|
|
unique symbolic label to the file system using the option
|
2011-01-15 22:51:56 +01:00
|
|
|
|
<option>-L <replaceable>label</replaceable></option>. This will
|
|
|
|
|
make the file system configuration independent from device
|
2007-02-06 22:14:02 +01:00
|
|
|
|
changes.</para></listitem>
|
|
|
|
|
|
|
|
|
|
<listitem><para>For creating swap partitions:
|
|
|
|
|
<command>mkswap</command>. Again it’s recommended to assign a
|
|
|
|
|
label to the swap partition: <option>-L
|
|
|
|
|
<replaceable>label</replaceable></option>.</para></listitem>
|
2013-01-08 00:35:27 +01:00
|
|
|
|
|
2007-02-06 22:14:02 +01:00
|
|
|
|
<listitem><para>For creating LVM volumes, the LVM commands, e.g.,
|
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ pvcreate /dev/sda1 /dev/sdb1
|
|
|
|
|
$ vgcreate MyVolGroup /dev/sda1 /dev/sdb1
|
2013-01-08 00:35:27 +01:00
|
|
|
|
$ lvcreate --size 2G --name bigdisk MyVolGroup
|
2007-02-06 22:14:02 +01:00
|
|
|
|
$ lvcreate --size 1G --name smalldisk MyVolGroup</screen>
|
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
</para></listitem>
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<listitem><para>For creating software RAID devices, use
|
2007-02-06 22:14:02 +01:00
|
|
|
|
<command>mdadm</command>.</para></listitem>
|
|
|
|
|
|
2008-02-08 23:43:59 +01:00
|
|
|
|
</itemizedlist>
|
|
|
|
|
|
|
|
|
|
</para></listitem>
|
2013-01-08 00:35:27 +01:00
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<listitem><para>Mount the target file system on which NixOS should
|
|
|
|
|
be installed on <filename>/mnt</filename>.</para></listitem>
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
2008-02-08 23:43:59 +01:00
|
|
|
|
<listitem>
|
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<para>You now need to create a file
|
|
|
|
|
<filename>/mnt/etc/nixos/configuration.nix</filename> that
|
|
|
|
|
specifies the intended configuration of the system. This is
|
|
|
|
|
because NixOS has a <emphasis>declarative</emphasis> configuration
|
|
|
|
|
model: you create or edit a description of the configuration that
|
|
|
|
|
you want to be built and activated, and then NixOS takes care of
|
|
|
|
|
realising that configuration. The command
|
|
|
|
|
<command>nixos-option</command> can generate an initial
|
|
|
|
|
configuration file for you:
|
2008-02-08 23:43:59 +01:00
|
|
|
|
|
|
|
|
|
<screen>
|
2010-09-26 00:30:02 +02:00
|
|
|
|
$ nixos-option --install</screen>
|
2008-02-08 23:43:59 +01:00
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
It tries to figure out the kernel modules necessary for mounting
|
|
|
|
|
the root device, as well as various other hardware
|
|
|
|
|
characteristics. However, it doesn’t try to figure out the
|
2008-02-08 23:43:59 +01:00
|
|
|
|
<option>fileSystems</option> option yet.</para>
|
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<para>You should edit
|
|
|
|
|
<filename>/mnt/etc/nixos/configuration.nix</filename> to suit your
|
|
|
|
|
needs. The text editors <command>nano</command> and
|
|
|
|
|
<command>vim</command> are available.</para>
|
2010-09-26 00:30:02 +02:00
|
|
|
|
|
|
|
|
|
<para>You need to specify a root file system in
|
|
|
|
|
<option>fileSystems</option> and the target device for the Grub boot
|
2013-04-10 23:49:59 +02:00
|
|
|
|
loader in <option>boot.loader.grub.device</option>. See
|
2010-09-26 00:30:02 +02:00
|
|
|
|
<xref linkend="ch-options"/> for a list of the available configuration
|
|
|
|
|
options.</para>
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
2008-02-08 23:43:59 +01:00
|
|
|
|
<note><para>It is very important that you specify in the option
|
2009-12-15 15:05:01 +01:00
|
|
|
|
<option>boot.initrd.kernelModules</option> all kernel modules that
|
|
|
|
|
are necessary for mounting the root file system, otherwise the
|
|
|
|
|
installed system will not be able to boot. (If this happens, boot
|
2012-05-14 04:02:45 +02:00
|
|
|
|
from the CD again, mount the target file system on
|
2008-02-08 23:43:59 +01:00
|
|
|
|
<filename>/mnt</filename>, fix
|
|
|
|
|
<filename>/mnt/etc/nixos/configuration.nix</filename> and rerun
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<filename>nixos-install</filename>.) In most cases,
|
|
|
|
|
<command>nixos-option --install</command> will figure out the
|
|
|
|
|
required modules.</para></note>
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<para>Examples of real-world NixOS configuration files can be
|
|
|
|
|
found at <link
|
2011-10-06 13:29:44 +02:00
|
|
|
|
xlink:href="https://nixos.org/repos/nix/configurations/trunk/"/>.</para>
|
2010-09-26 00:30:02 +02:00
|
|
|
|
|
2008-02-08 23:43:59 +01:00
|
|
|
|
</listitem>
|
2013-01-08 00:35:27 +01:00
|
|
|
|
|
2008-02-08 23:43:59 +01:00
|
|
|
|
<listitem><para>If your machine has a limited amount of memory, you
|
|
|
|
|
may want to activate swap devices now (<command>swapon
|
|
|
|
|
<replaceable>device</replaceable></command>). The installer (or
|
|
|
|
|
rather, the build actions that it may spawn) may need quite a bit of
|
|
|
|
|
RAM, depending on your configuration.</para></listitem>
|
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<!--
|
2008-02-08 23:43:59 +01:00
|
|
|
|
<listitem><para>Optionally, you can run
|
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ nixos-checkout</screen>
|
|
|
|
|
|
|
|
|
|
to make the installer use the latest NixOS/Nixpkgs sources from the
|
2013-08-11 09:40:59 +02:00
|
|
|
|
Git repository, rather than the sources on CD.</para></listitem>
|
2012-05-14 04:02:45 +02:00
|
|
|
|
-->
|
2008-02-08 23:43:59 +01:00
|
|
|
|
|
|
|
|
|
<listitem><para>Do the installation:
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ nixos-install</screen>
|
|
|
|
|
|
|
|
|
|
Cross fingers.</para></listitem>
|
|
|
|
|
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<listitem><para>If everything went well:
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ reboot</screen>
|
|
|
|
|
|
2008-02-08 23:43:59 +01:00
|
|
|
|
</para></listitem>
|
|
|
|
|
|
|
|
|
|
<listitem>
|
|
|
|
|
|
|
|
|
|
<para>You should now be able to boot into the installed NixOS.
|
|
|
|
|
The Grub boot menu shows a list of <emphasis>available
|
2007-02-06 22:14:02 +01:00
|
|
|
|
configurations</emphasis> (initially just one). Every time you
|
2008-02-08 23:43:59 +01:00
|
|
|
|
change the NixOS configuration (see <xref
|
|
|
|
|
linkend="sec-changing-config" />), a new item appears in the menu.
|
2012-05-14 04:02:45 +02:00
|
|
|
|
This allows you to easily roll back to another configuration if
|
2007-02-06 22:14:02 +01:00
|
|
|
|
something goes wrong.</para>
|
|
|
|
|
|
|
|
|
|
<para>You should log in and change the <literal>root</literal>
|
2008-02-08 23:43:59 +01:00
|
|
|
|
password with <command>passwd</command>.</para>
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
2008-02-08 23:43:59 +01:00
|
|
|
|
<para>You’ll probably want to create some user accounts as well,
|
|
|
|
|
which can be done with <command>useradd</command>:
|
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ useradd -c 'Eelco Dolstra' -m eelco
|
|
|
|
|
$ passwd eelco</screen>
|
|
|
|
|
|
|
|
|
|
</para>
|
|
|
|
|
|
|
|
|
|
<para>You may also want to install some software. For instance,
|
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ nix-env -qa \*</screen>
|
|
|
|
|
|
|
|
|
|
shows what packages are available, and
|
|
|
|
|
|
2009-07-14 17:47:03 +02:00
|
|
|
|
<screen>
|
2008-02-08 23:43:59 +01:00
|
|
|
|
$ nix-env -i w3m</screen>
|
|
|
|
|
|
|
|
|
|
install the <literal>w3m</literal> browser.</para>
|
|
|
|
|
|
|
|
|
|
</listitem>
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
|
|
|
|
</orderedlist>
|
|
|
|
|
|
2008-02-08 23:43:59 +01:00
|
|
|
|
<para><xref linkend="ex-install-sequence" /> shows a typical sequence
|
|
|
|
|
of commands for installing NixOS on an empty hard drive (here
|
2012-05-14 04:02:45 +02:00
|
|
|
|
<filename>/dev/sda</filename>). <xref linkend="ex-config" /> shows a
|
|
|
|
|
corresponding configuration Nix expression.</para>
|
2008-02-08 23:43:59 +01:00
|
|
|
|
|
|
|
|
|
<example xml:id='ex-install-sequence'><title>Commands for installing NixOS on <filename>/dev/sda</filename></title>
|
|
|
|
|
<screen>
|
|
|
|
|
$ fdisk /dev/sda <lineannotation>(or whatever device you want to install on)</lineannotation>
|
2013-05-13 11:54:04 +02:00
|
|
|
|
$ mkfs.ext4 -L nixos /dev/sda1 <lineannotation>(idem)</lineannotation>
|
2008-02-08 23:43:59 +01:00
|
|
|
|
$ mkswap -L swap /dev/sda2 <lineannotation>(idem)</lineannotation>
|
|
|
|
|
$ mount LABEL=nixos /mnt
|
2010-09-26 00:30:02 +02:00
|
|
|
|
$ nixos-option --install
|
2008-02-08 23:43:59 +01:00
|
|
|
|
$ nano /mnt/etc/nixos/configuration.nix
|
|
|
|
|
<lineannotation>(in particular, set the fileSystems and swapDevices options)</lineannotation>
|
|
|
|
|
$ nixos-install
|
|
|
|
|
$ reboot</screen>
|
|
|
|
|
</example>
|
|
|
|
|
|
|
|
|
|
<example xml:id='ex-config'><title>NixOS configuration</title>
|
|
|
|
|
<screen>
|
|
|
|
|
{
|
2010-09-26 00:29:58 +02:00
|
|
|
|
boot.loader.grub.device = "/dev/sda";
|
2008-02-08 23:43:59 +01:00
|
|
|
|
|
2012-11-02 18:02:12 +01:00
|
|
|
|
fileSystems."/".device = "/dev/disk/by-label/nixos";
|
2008-02-08 23:43:59 +01:00
|
|
|
|
|
2012-05-14 05:59:38 +02:00
|
|
|
|
swapDevices =
|
|
|
|
|
[ { device = "/dev/disk/by-label/swap"; } ];
|
2013-01-08 00:35:27 +01:00
|
|
|
|
|
2009-12-15 15:05:01 +01:00
|
|
|
|
services.sshd.enable = true;
|
2008-02-08 23:43:59 +01:00
|
|
|
|
}</screen>
|
|
|
|
|
</example>
|
|
|
|
|
|
2007-02-06 22:14:02 +01:00
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!--===============================================================-->
|
|
|
|
|
|
2007-02-06 22:25:36 +01:00
|
|
|
|
<section xml:id="sec-changing-config">
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
|
|
|
|
<title>Changing the configuration</title>
|
|
|
|
|
|
|
|
|
|
<para>The file <filename>/etc/nixos/configuration.nix</filename>
|
|
|
|
|
contains the current configuration of your machine. Whenever you’ve
|
2012-05-14 05:59:38 +02:00
|
|
|
|
changed something to that file, you should do
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ nixos-rebuild switch</screen>
|
|
|
|
|
|
|
|
|
|
to build the new configuration, make it the default configuration for
|
2012-05-14 05:59:38 +02:00
|
|
|
|
booting, and try to realise the configuration in the running system
|
2007-02-06 22:14:02 +01:00
|
|
|
|
(e.g., by restarting system services).</para>
|
|
|
|
|
|
2013-01-08 00:35:27 +01:00
|
|
|
|
<para>You can also do
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ nixos-rebuild test</screen>
|
|
|
|
|
|
|
|
|
|
to build the configuration and switch the running system to it, but
|
|
|
|
|
without making it the boot default. So if (say) the configuration
|
|
|
|
|
locks up your machine, you can just reboot to get back to a working
|
|
|
|
|
configuration.</para>
|
|
|
|
|
|
2013-01-08 00:35:27 +01:00
|
|
|
|
<para>There is also
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ nixos-rebuild boot</screen>
|
|
|
|
|
|
|
|
|
|
to build the configuration and make it the boot default, but not
|
|
|
|
|
switch to it now (so it will only take effect after the next
|
|
|
|
|
reboot).</para>
|
|
|
|
|
|
2013-01-08 00:35:27 +01:00
|
|
|
|
<para>Finally, you can do
|
2007-02-06 22:14:02 +01:00
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ nixos-rebuild build</screen>
|
|
|
|
|
|
|
|
|
|
to build the configuration but nothing more. This is useful to see
|
|
|
|
|
whether everything compiles cleanly.</para>
|
|
|
|
|
|
2012-05-14 05:59:38 +02:00
|
|
|
|
<para>If you have a machine that supports hardware virtualisation, you
|
|
|
|
|
can also test the new configuration in a sandbox by building and
|
|
|
|
|
running a <emphasis>virtual machine</emphasis> that contains the
|
|
|
|
|
desired configuration. Just do
|
|
|
|
|
|
|
|
|
|
<screen>
|
|
|
|
|
$ nixos-rebuild build-vm
|
|
|
|
|
$ ./result/bin/run-*-vm
|
|
|
|
|
</screen>
|
|
|
|
|
|
|
|
|
|
The VM does not have use any data from your host system, so your
|
|
|
|
|
existing user accounts and home directories will not be
|
|
|
|
|
available.</para>
|
|
|
|
|
|
2007-02-06 22:14:02 +01:00
|
|
|
|
</section>
|
|
|
|
|
|
|
|
|
|
|
2007-02-06 22:25:36 +01:00
|
|
|
|
|
|
|
|
|
<!--===============================================================-->
|
|
|
|
|
|
|
|
|
|
<section>
|
|
|
|
|
|
2012-05-14 05:59:38 +02:00
|
|
|
|
<title>Upgrading NixOS</title>
|
2007-02-06 22:25:36 +01:00
|
|
|
|
|
2012-05-14 05:59:38 +02:00
|
|
|
|
<para>The best way to keep your NixOS installation up to date is to
|
|
|
|
|
use the <literal>nixos-unstable</literal> channel. (A channel is a
|
|
|
|
|
Nix mechanism for distributing Nix expressions and associated
|
|
|
|
|
binaries.) The NixOS channel is updated automatically from NixOS’s
|
2013-08-11 09:40:59 +02:00
|
|
|
|
Git repository after running certain tests and building most
|
2012-05-14 05:59:38 +02:00
|
|
|
|
packages.</para>
|
2007-02-06 22:25:36 +01:00
|
|
|
|
|
2012-05-14 05:59:38 +02:00
|
|
|
|
<para>NixOS automatically subscribes you to the NixOS channel. If for
|
|
|
|
|
some reason this is not the case, just do
|
2007-02-06 22:25:36 +01:00
|
|
|
|
|
|
|
|
|
<screen>
|
2012-11-12 09:18:59 +01:00
|
|
|
|
$ nix-channel --add http://nixos.org/channels/nixos-unstable
|
2012-05-14 05:59:38 +02:00
|
|
|
|
</screen>
|
2007-02-06 22:25:36 +01:00
|
|
|
|
|
2012-05-14 05:59:38 +02:00
|
|
|
|
You can then upgrade NixOS to the latest version in the channel by
|
|
|
|
|
running
|
2007-02-06 22:25:36 +01:00
|
|
|
|
|
2012-05-14 05:59:38 +02:00
|
|
|
|
<screen>
|
2013-01-08 00:35:27 +01:00
|
|
|
|
$ nix-channel --update nixos
|
2012-05-14 05:59:38 +02:00
|
|
|
|
</screen>
|
2007-02-06 22:25:36 +01:00
|
|
|
|
|
2012-05-14 05:59:38 +02:00
|
|
|
|
and running the <command>nixos-rebuild</command> command as described
|
|
|
|
|
in <xref linkend="sec-changing-config"/>.</para>
|
2007-02-06 22:25:36 +01:00
|
|
|
|
|
2012-05-14 05:59:38 +02:00
|
|
|
|
</section>
|
2007-02-06 22:25:36 +01:00
|
|
|
|
|
2007-11-05 22:17:16 +01:00
|
|
|
|
</chapter>
|