NixOS
NixOS is a Linux distribution based on a package manager named Nix. NixOS uses an immutable design and an atomic update model.[6] Its use of a declarative programming configuration system allows reproducibility and portability.[7] It is free and open-source software with an MIT License. NixOS is configured using composable modules, and relies on packages defined in the Nixpkgs project. Package recipes and configurations are written in the purpose-built "Nix language" that ships with the Nix package manager. History
Nix began in 2003 as a research project led by Eelco Dolstra, who sought to develop a system for reliable software deployment. This work culminated in Dolstra's Ph.D. thesis, The Purely Functional Software Deployment Model, which proposed a novel approach to declarative, functional software configuration. His research, supervised by Eelco Visser at Utrecht University, laid the theoretical groundwork for Nix.[8][9] In 2006, NixOS was introduced as part of Armijn Hemel's Master's thesis, which explored applying Nix principles to a Linux distribution. This led to the creation of a unique, declarative configuration model that distinguished NixOS from other operating systems.[10] The NixOS Foundation was established in 2015 in the Netherlands to support projects that implement the purely functional deployment model, ensuring the ongoing development and sustainability of NixOS and its ecosystem.[11] The project has grown significantly since its inception. Major milestones include the introduction of NixOS modules in 2009, which simplified system configuration, and the development of Nixpkgs, which has become one of the largest package repositories with over 80,000 packages as of 2024. Wiki
The first NixOS community wiki was launched around 2010–2011 to centralize documentation and support collaborative knowledge-sharing. However, as community interest in maintaining the wiki waned, outdated and incorrect information accumulated, reducing its usefulness.[12] In November 2015, Rok Garbas highlighted the decaying state of the wiki in his talk 'Make Nix Friendlier for Beginners', sparking widespread discussion in the community.[13] While many developers argued that the Nix* manuals were a better repository for official documentation, no immediate solution was implemented. By mid-2016, spam bots had overwhelmed the wiki due to insufficient protection, leading to it being locked in August of that year. In February 2017, a GitHub issue was opened to discuss unlocking the wiki, but the debate resulted in no resolution. Finally, in May 2017, the wiki was permanently disabled; the web pages are preserved at the Internet Archive.[14] To fill the void, Jörg Thalheim (Mic92) launched the nixos-users GitHub wiki in April 2017. Although this platform allowed quick edits and community contributions, it lacked features such as search functionality and a table of contents. Shortly thereafter, Tristan Helmich (fadenb) created a new MediaWiki-based wiki on his own initiative, citing the poor user experience of the GitHub wiki. Felix Richter (makefu) later migrated content from the GitHub wiki to Helmich's wiki.[15] In January 2024, a new initiative to establish an official wiki was launched. This resulted in the official wiki currently in use, which was launched on 1 April 2024.[12][16] Release version history
NixOS publishes stable releases twice a year, near the ends of May and November.[17][18][19] Features![]() Declarative configuration modelIn NixOS, the entire operating system—including the kernel, applications, system packages, and configuration files—is built by the Nix Package manager from a description in the Nix language. Building a new version will not overwrite previous versions.[20] A NixOS system is configured by writing a specification of the functionality that the user wants on their machine in a global configuration file (typically located in {
boot.loader.grub.device = "/dev/sda";
fileSystems."/".device = "/dev/sda1";
services.openssh.enable = true;
}
After changing the specification file, the system can be updated using the Reliable and atomic upgradesSince Nix files are pure and declarative, evaluating them will always produce the same result, regardless of what packages or configuration files are on the system. NixOS has a transactional approach to configuration management, making configuration changes such as upgrades atomic. For example, if an upgrade to a new configuration is interrupted by power failure, the system will still be in a consistent state: it will either boot in the old or the new configuration.[22] RollbacksIf, after a system update, the new configuration is undesirable, it can be rolled back using a special command ( Reproducible system configurationsNixOS's declarative configuration model makes it easy to reproduce a system configuration on another machine. Copying the configuration file to the target machine and running the system update command generates the same system configuration (kernel, applications, system services, and so on) except for parts of the system not managed by the package manager, such as user data. Source-based model with binary cacheThe Nix build language used by NixOS specifies how to build packages from source. This makes it easy to adapt the system to user needs. However, building from source being a slow process, the package manager automatically downloads pre-built binaries from a cache server when they are available. It is possible to disable the binary cache and force building from source by using ConsistencyThe Nix package manager ensures that the running system is consistent with the logical specification of the system, meaning that it will rebuild all packages that need to be rebuilt. For instance, if the kernel is changed, then the package manager will ensure that external kernel modules will be rebuilt. Similarly, when a library is updated, it ensures that all the system packages use the new version, even packages statically linked to it. Multi-user package managementThere is no need for special privileges to install software in NixOS. In addition to the system-wide profile, every user has a dedicated profile in which they can install packages. Nix also allows multiple versions of a package to coexist, so different users can have different versions of the same package installed in their respective profiles. If two users install the same version of a package, only one copy will be built or downloaded. Nix's security model ensures that this is secure, because only the users explicitly trusted by the system configuration are allowed to use build parameters that would allow them to control the content of a derivation's output (such as adding impurities to the sandbox, or using an untrusted substituter).[clarification needed] Without those parameters, paths can only be substituted from a substituter trusted by the system, or a local sandboxed build which is implicitly trusted. This approach eliminates dependency conflicts commonly known as "dependency hell" in traditional package managers. FlakesThe flakes feature of Nix aims to improve the reproducibility, composability, and usability of Nix-based configurations. It provides a standardized way to define, manage, and share Nix expressions, making it easier to create and maintain reproducible systems.[25] Nix-shellThe nix-shell command starts an interactive shell based on a Nix expression. It allows developers to work with isolated sets of dependencies without affecting the system globally.[26] ImplementationNixOS is based on the Nix package manager, which stores all packages in isolation from each other in the package store. Installed packages are identified by a cryptographic hash of all input used for their build. Changing the build instructions of a package modifies its hash, and that will result in a different package being installed in the package store. This system is also used to manage configuration files, ensuring that newer configurations do not overwrite older ones. An implication of this is that NixOS does not follow the Filesystem Hierarchy Standard. The only exceptions are that a /bin/sh symlink is created to the version of bash in the Nix store (e.g. ReceptionJesse Smith, reviewing NixOS 15.09 for DistroWatch Weekly in 2015,[27] wrote:
A 2022 review of NixOS 21.11 "Porcupine" in Full Circle concluded:
NixOS 22.11 "Raccoon" reviewed by Liam Proven at The Register:
NixOS 23.11 "Tapir" reviewed by Jesse Smith at DistroWatch:
See also
Notes
References
External links |