NixOS and the case for declarative configuration

NixOS

So far, so good. If you like, you can now use the Nix package manager on any Unix-like system. However, things start to get really interesting with NixOS 1, a separate Linux distribution completely based on Nix.

The complete system is assembled and managed with Nix on the lines described previously. This means, in particular, that you can no longer mess around with individual configuration files to suit your mood; instead, you make changes in a working system that are transformed along a defined path into another working system.

System Description

The Nix mindset starts with the installation of NixOS. Apart from the usual gymnastics at boot time, and for mounting the root partition, the essential step consist of writing the declarative specification of the system.

The boot loader, any kernel modules you need to load, the disks, filesystems, the network, and the services are determined right down to the desktop environment level. The installer determines the required packages and then generates the system.

If you have made a mistake in the configuration, the installer lets you know. If an error occurs during the installation, you can restart the process without further ado. A list of the required steps is shown in Listing 1.

Listing 1

NixOS installation

 

One Step Back

Once NixOS is installed, you can install and remove packages, as described in the section on Nix. The Nix -e option removes a package. For a rollback, which resets the system to its state before the last package installation, Nix provides the --rollback option. In general, you can also jump directly to any previously existing system state (known as a generation) by typing

nix-env --switch-generation Generation

NixOS keeps the old versions of the packages; otherwise, this kind of switch would be impossible. However, you can certainly also delete the old generations; after all, at some point you might not want to go back to Generation 1, and disk space is not infinite. Typing:

nix-env --delete-generations old

deletes all the old generations from the profile, while the same call with numbers instead of old wipes out specific generations. After deletion from the profile, a call to nix-store --gc removes the old files. If you want to take a look at what will happen first, type nix-store --gc --print-dead instead.

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • NixOS 22.5 Is Now Available

    The latest release of NixOS with a much-improved package manager and a user-friendly graphical installer.

  • NixOS 21.11 Now Available for Download

    NixOS “Porcupine” has been made available for installation and includes numerous improvements.

  • Nix and NixOS

    NixOS and the Nix package manager offer a promising new approach to the challenge of managing packages in Linux.

  • Next Gen Distributions

    With systemd poised to revolutionize the init process, we look at Linux distributions that have left the familiar path, use new approaches and techniques, and are paving the way for the next generation of Linux distros.

  • News

    In the news: EndeavorOS 21.4 Has Arrived; NixOS 21.11 Now Available for Download; KDE Plasma Developers Introduce a Gnome-Like Overview; Rocky Linux 8.5 Now Available with Secure Boot Support; CronRAT Malware Targets Linux Servers; AlmaLinux OS 8.5 Now Available

comments powered by Disqus
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters

Support Our Work

Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.

Learn More

News