1 # Installing from another Linux distribution {#sec-installing-from-other-distro}
3 Because Nix (the package manager) & Nixpkgs (the Nix packages
4 collection) can both be installed on any (most?) Linux distributions,
5 they can be used to install NixOS in various creative ways. You can, for
8 1. Install NixOS on another partition, from your existing Linux
9 distribution (without the use of a USB or optical device!)
11 1. Install NixOS on the same partition (in place!), from your existing
12 non-NixOS Linux distribution using `NIXOS_LUSTRATE`.
14 1. Install NixOS on your hard drive from the Live CD of any Linux
17 The first steps to all these are the same:
19 1. Install the Nix package manager:
24 $ curl -L https://nixos.org/nix/install | sh
25 $ . $HOME/.nix-profile/etc/profile.d/nix.sh # …or open a fresh shell
28 More details in the [ Nix
29 manual](https://nixos.org/nix/manual/#chap-quick-start)
31 1. Switch to the NixOS channel:
33 If you've just installed Nix on a non-NixOS distribution, you will
34 be on the `nixpkgs` channel by default.
38 nixpkgs https://nixos.org/channels/nixpkgs-unstable
41 As that channel gets released without running the NixOS tests, it
42 will be safer to use the `nixos-*` channels instead:
45 $ nix-channel --add https://nixos.org/channels/nixos-<version> nixpkgs
48 Where `<version>` corresponds to the latest version available on [channels.nixos.org](https://channels.nixos.org/).
50 You may want to throw in a `nix-channel --update` for good measure.
52 1. Install the NixOS installation tools:
54 You'll need `nixos-generate-config` and `nixos-install`, but this
55 also makes some man pages and `nixos-enter` available, just in case
56 you want to chroot into your NixOS partition. NixOS installs these
57 by default, but you don't have NixOS yet..
60 $ nix-env -f '<nixpkgs>' -iA nixos-install-tools
64 The following 5 steps are only for installing NixOS to another
65 partition. For installing NixOS in place using `NIXOS_LUSTRATE`,
69 Prepare your target partition:
71 At this point it is time to prepare your target partition. Please
72 refer to the partitioning, file-system creation, and mounting steps
73 of [](#sec-installation)
75 If you're about to install NixOS in place using `NIXOS_LUSTRATE`
76 there is nothing to do for this step.
78 1. Generate your NixOS configuration:
81 $ sudo `which nixos-generate-config` --root /mnt
84 You'll probably want to edit the configuration files. Refer to the
85 `nixos-generate-config` step in [](#sec-installation) for more
88 Consider setting up the NixOS bootloader to give you the ability to
89 boot on your existing Linux partition. For instance, if you're
90 using GRUB and your existing distribution is running Ubuntu, you may
91 want to add something like this to your `configuration.nix`:
95 boot.loader.grub.extraEntries = ''
97 search --set=ubuntu --fs-uuid 3cc3e652-0c1f-4800-8451-033754f68e6e
98 configfile "($ubuntu)/boot/grub/grub.cfg"
104 (You can find the appropriate UUID for your partition in
107 1. Create the `nixbld` group and user on your original distribution:
110 $ sudo groupadd -g 30000 nixbld
111 $ sudo useradd -u 30000 -g nixbld -G nixbld nixbld
114 1. Download/build/install NixOS:
117 Once you complete this step, you might no longer be able to boot on
118 existing systems without the help of a rescue USB drive or similar.
122 On some distributions there are separate PATHS for programs intended
123 only for root. In order for the installation to succeed, you might
124 have to use `PATH="$PATH:/usr/sbin:/sbin"` in the following command.
128 $ sudo PATH="$PATH" `which nixos-install` --root /mnt
131 Again, please refer to the `nixos-install` step in
132 [](#sec-installation) for more information.
134 That should be it for installation to another partition!
136 1. Optionally, you may want to clean up your non-NixOS distribution:
139 $ sudo userdel nixbld
140 $ sudo groupdel nixbld
143 If you do not wish to keep the Nix package manager installed either,
144 run something like `sudo rm -rv ~/.nix-* /nix` and remove the line
145 that the Nix installer added to your `~/.profile`.
148 The following steps are only for installing NixOS in place using
152 Generate your NixOS configuration:
155 $ sudo `which nixos-generate-config`
158 Note that this will place the generated configuration files in
159 `/etc/nixos`. You'll probably want to edit the configuration files.
160 Refer to the `nixos-generate-config` step in
161 [](#sec-installation) for more information.
163 You'll likely want to set a root password for your first boot using
164 the configuration files because you won't have a chance to enter a
165 password until after you reboot. You can initialize the root password
166 to an empty one with this line: (and of course don't forget to set
167 one once you've rebooted or to lock the account with
168 `sudo passwd -l root` if you use `sudo`)
172 users.users.root.initialHashedPassword = "";
176 1. Build the NixOS closure and install it in the `system` profile:
179 $ nix-env -p /nix/var/nix/profiles/system -f '<nixpkgs/nixos>' -I nixos-config=/etc/nixos/configuration.nix -iA system
182 1. Change ownership of the `/nix` tree to root (since your Nix install
183 was probably single user):
186 $ sudo chown -R 0:0 /nix
189 1. Set up the `/etc/NIXOS` and `/etc/NIXOS_LUSTRATE` files:
191 `/etc/NIXOS` officializes that this is now a NixOS partition (the
192 bootup scripts require its presence).
194 `/etc/NIXOS_LUSTRATE` tells the NixOS bootup scripts to move
195 *everything* that's in the root partition to `/old-root`. This will
196 move your existing distribution out of the way in the very early
197 stages of the NixOS bootup. There are exceptions (we do need to keep
198 NixOS there after all), so the NixOS lustrate process will not
201 - The `/nix` directory
203 - The `/boot` directory
205 - Any file or directory listed in `/etc/NIXOS_LUSTRATE` (one per
209 Support for `NIXOS_LUSTRATE` was added in NixOS 16.09. The act of
210 "lustrating" refers to the wiping of the existing distribution.
211 Creating `/etc/NIXOS_LUSTRATE` can also be used on NixOS to remove
212 all mutable files from your root partition (anything that's not in
213 `/nix` or `/boot` gets "lustrated" on the next boot.
215 lustrate /ˈlʌstreɪt/ verb.
217 purify by expiatory sacrifice, ceremonial washing, or some other
221 Let's create the files:
224 $ sudo touch /etc/NIXOS
225 $ sudo touch /etc/NIXOS_LUSTRATE
228 Let's also make sure the NixOS configuration files are kept once we
232 $ echo etc/nixos | sudo tee -a /etc/NIXOS_LUSTRATE
235 1. Finally, move the `/boot` directory of your current distribution out
236 of the way (the lustrate process will take care of the rest once you
237 reboot, but this one must be moved out now because NixOS needs to
238 install its own boot files:
241 Once you complete this step, your current distribution will no
242 longer be bootable! If you didn't get all the NixOS configuration
243 right, especially those settings pertaining to boot loading and root
244 partition, NixOS may not be bootable either. Have a USB rescue
245 device ready in case this happens.
249 $ sudo mv -v /boot /boot.bak &&
250 sudo /nix/var/nix/profiles/system/bin/switch-to-configuration boot
253 Cross your fingers, reboot, hopefully you should get a NixOS prompt!
255 1. If for some reason you want to revert to the old distribution,
256 you'll need to boot on a USB rescue disk and do something along
261 # mount /dev/sdaX root
262 # mkdir root/nixos-root
263 # mv -v root/* root/nixos-root/
264 # mv -v root/nixos-root/old-root/* root/
265 # mv -v root/boot.bak root/boot # We had renamed this by hand earlier
270 This may work as is or you might also need to reinstall the boot
273 And of course, if you're happy with NixOS and no longer need the
277 sudo rm -rf /old-root
280 1. It's also worth noting that this whole process can be automated.
281 This is especially useful for Cloud VMs, where provider do not
282 provide NixOS. For instance,
283 [nixos-infect](https://github.com/elitak/nixos-infect) uses the
284 lustrate process to convert Digital Ocean droplets to NixOS from
285 other distributions automatically.