NixOS
This article has multiple issues. Please help improve it or discuss these issues on the talk page. (Learn how and when to remove these messages)
|
| NixOS | |
|---|---|
| Developer | NixOS contributors
NixOS Foundation[1][2] |
| Written in | Nix expression language[note 1] |
| OS family | Linux (Unix-like) |
| Working state | Current |
| Source model | Open source |
| Initial release | 3 June 2006 |
| Latest release | 25.05 / May 23, 2025 |
| Latest preview | 25.11-pre / May 16, 2025 |
| Repository | |
| Marketing target | General purpose |
| Package manager | Nix |
| Supported platforms | fully supported: x86-64, AArch64;[3] limited support (must be built from source): i686[4] |
| Kernel type | Monolithic (Linux kernel) |
| Userland | GNU |
| License | MIT[5][note 2] |
| Official website | nixos |
NixOS is a Linux distribution built around the Nix package manager. Unlike traditional Linux distributions, NixOS is configured using a functional language that describes the system configuration. It generates complete system profiles, enabling reproducible deployments, atomic upgrades, and system rollbacks.[6]
NixOS relies on the Nixpkgs collection of package definitions and the Nix expression language for declaring packages and system options.[7] It is free and open-source software with an MIT License.[8][note 2]
History
[edit]Nix as a package manager originated in 2003 as a research project by Eelco Dolstra at Utrecht University under the supervision of Eelco Visser. Dolstra’s 2006 doctoral thesis, The Purely Functional Software Deployment Model, describes a declarative and functional approach to software deployment and lays out the design of the Nix package manager.[9][10]
The first NixOS prototype was created by Armijn Hemel in 2006 as part of his Master's thesis NixOS: The Nix Based Operating System, which explored applying Nix and its principles to a Linux distribution. Hemel demonstrated the application of package management, system services, kernel management, and other principles that defined NixOS.[11][12] After continued development, NixOS issued its first stable release, version 13.10, in 2013. [13]
The NixOS Foundation, a Dutch non-profit established in 2015, supports the development and community infrastructure of NixOS and related Nix projects.[14]
Release version history
[edit]| Version, name | Date |
|---|---|
| 13.10, Aardvark | October 2013 |
| 14.04, Baboon | April 2014 |
| 14.12, Caterpillar | December 2014 |
| 15.09, Dingo | September 2015 |
| 16.03, Emu | March 2016 |
| 16.09, Flounder | September 2016 |
| 17.03, Gorilla | March 2017 |
| 17.09, Hummingbird | September 2017 |
| 18.03, Impala | March 2018 |
| 18.09, Jellyfish | September 2018 |
| 19.03, Koi | March 2019 |
| 19.09, Loris | September 2019 |
| 20.03, Markhor | March 2020 |
| 20.09, Nightingale | September 2020 |
| 21.05, Okapi | May 2021 |
| 21.11, Porcupine | November 2021 |
| 22.05, Quokka | May 2022 |
| 22.11, Raccoon | November 2022 |
| 23.05, Stoat | May 2023 |
| 23.11, Tapir | November 2023 |
| 24.05, Uakari | May 2024 |
| 24.11, Vicuña | November 2024 |
| 25.05, Warbler | May 2025 |
| 25.11, Xantusia | November 2025 |
NixOS publishes stable releases twice per year, near the ends of May and November.[15][16][17] Prior to the first stable release in 2013, major versions were numbered semantically, up to release 0.2.[18]
Features
[edit]
Declarative configuration model
[edit]In NixOS, the entire operating system—including the kernel, applications, system packages, and configuration files—is built by the Nix Package manager from a definition in the Nix language. Building a new version will not overwrite previous versions.[19]
A NixOS system is configured by specifying the desired state in a Nix expression file, typically /etc/nixos/configuration.nix. The following example configures the bootloader and enables the OpenSSH daemon:[20]
{
boot.loader.grub.device = "/dev/sda";
fileSystems."/".device = "/dev/sda1";
services.openssh.enable = true;
}
Changes may be built and activated with the nixos-rebuild command, which evaluates the configuration, builds the necessary derivations, and produces a new system generation.[6]
Atomic upgrades and rollbacks
[edit]Configurations in Nix are evaluated as pure, declarative expressions. Given the same inputs (such as the Nixpkgs revision and configuration files), evaluation is deterministic and produces the same build plan, independent of the machine’s prior state.[21]
Upgrades and configuration changes to NixOS systems are applied transactionally. New system generations are activated atomically, so that previous generations are retained and may be rolled back. If an upgrade is interrupted (for example, by power failure), the system remains consistent and will boot either the old or the new configuration.[22][23]
If, after a system update, the new configuration is undesirable, it may be rolled back by switching to a previous generation (nixos-rebuild switch --rollback). New generations are automatically added to the system bootloader and may be selected prior to boot. Rollbacks are lightweight operations that switch system references to different store paths.[24]
Reproducible system configurations
[edit]NixOS uses a declarative configuration model that allows system configurations to be reproduced on different machines. By sharing a configuration file with a target machine, users can generate an equivalent system, including the kernel, applications, and system services. Components not managed by the package manager, such as user data, are not affected by this process.
Multi-user package management
[edit]In addition to the system-wide profile, every normal user in a NixOS system has a profile in which they can install packages without special privileges. In the Nix store, multiple versions of a package may coexist, allowing different users to have alternate versions of the same package installed in their respective profiles, or share an identical version.
Nix’s security model restricts what unprivileged users can influence. Prebuilt binaries may be fetched from binary caches that are explicitly trusted by the system configuration, otherwise packages are built locally in a sandbox. Without special privileges, users cannot pass options that would introduce impurities into builds or use untrusted caches.
Nix-shell
[edit]The 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.[25]
Experimental features
[edit]Nix command
[edit]The nix command provides a redesigned command-line interface for the Nix package manager, intended to replace the traditional nix-env, nix-build, and related commands. It introduces a more consistent syntax and improved user experience with commands such as nix build, nix develop, and nix run. The goal was to simplify common operations and provide better functionality through a unified command structure.
Flakes
[edit]Flakes provide a standard structure for Nix expressions that explicitly declare dependencies and outputs. Each flake contains a flake.nix file that specifies its inputs (dependencies, external flakes, repositories) and outputs (packages, NixOS configurations, and development environments). Flakes use a lock file to keep exact versions of dependencies to ensure that evaluations remain reproducible over time. The feature provides a standardized way to define, manage, and share Nix expressions, while making it easier to create and maintain reproducible systems.[26]
Implementation
[edit]The Nix store
[edit]Installed packages are stored in a read-only directory known as the Nix store, commonly located at /nix/store. Packages in the store are identified by a cryptographic hash of all input used for their build. This system is also used to manage configuration files, ensuring that newer configurations do not overwrite older ones.
An implication of these principles 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. /nix/store/s/5rnfzla9kcx4mj5zdc7nlnv8na1najvg-bash-4.3.43/), and while NixOS does have an /etc directory to keep system-wide configuration files, most files in that directory are symlinks to generated files in the Nix store, such as /nix/store/s2sjbl85xnrc18rl4fhn56irkxqxyk4p-sshd_config. By not using global directories such as /bin, Nix allows multiple versions of a package to coexist, avoiding package conflicts sometimes known as "dependency hell".
Nix maintains consistency between the running system and its logical specification by rebuilding packages as needed. When the kernel is modified, external kernel modules are automatically rebuilt. Similarly, updates to libraries trigger rebuilds of all system packages that depend on them, including those with static linking.
Source-based model with binary cache
[edit]The Nix build language used by NixOS specifies how to build all packages from source. This makes it easy to adapt the system to user needs and create new packages. To avoid long and intensive builds from source, the package manager automatically downloads pre-built binaries from a cache server known as a "substituter" when they are available. It is possible to disable substitutions and force building from source by passing --option substitute false to a build. Changing any of the build options from the defaults will also cause packages to be built from source. This gives the flexibility of a source-based package management model, with the efficiency of a binary model.[27]
Reception
[edit]Jesse Smith, reviewing NixOS 15.09 for DistroWatch Weekly in 2015,[28] wrote:
I very much like the way NixOS takes the worry out of upgrading packages by placing each change in its own "generation" and I found, from the end user's point of view, NixOS worked just the same as any other Linux distribution. Setting up NixOS is not for beginners, and I do not think NixOS is intended to be used as a general purpose desktop operating system. But what NixOS does do is give us a useful playground in which to examine the Nix package manager and I think this is very interesting technology which deserves further exploration and adoption by additional distributions.
A 2022 review of NixOS 21.11 "Porcupine" in Full Circle concluded:
Overall NixOS Gnome 21.11 impresses as serious, neat and elegant. If you are a fan of the unmodified Gnome desktop, then you will find a lot to like here. The downside of this distribution is the steep learning curve for package management, including updates and the like. No matter which distribution you come from, you will have much to learn to be able to make Nix work well for you on the command-line.[29]
NixOS 22.11 "Raccoon" reviewed by Liam Proven at The Register:
Compared to reports of NixOS from just two or three years ago, we found it was very simple to get it installed and working. This suggests that the tools are maturing well and reaching a certain level of polish, but from a first-time perspective we have no prior baseline to compare against. This is very much not a traditional distro, or even a traditional Unix, but it works and we can see the appeal.[30]
NixOS 23.11 "Tapir" reviewed by Jesse Smith at DistroWatch:
NixOS is a rare gem in that I don't think I ran into any errors while I was using it. The distribution was stable, it worked well with my hardware, and I didn't run into a single issue while running it. I feel NixOS is well worth a try, especially if you're a system administrator and want to deploy (or maintain) identical distributions across multiple machines.[31]
Community
[edit]Wiki
[edit]This section may contain information not important or relevant to the article's subject. (December 2024) |
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.[32] 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.[33] 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.[34]
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.[35]
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.[32][36]
See also
[edit]- GNU Guix System – an operating system built on GNU Guix that is inspired by Nix
Notes
[edit]- ^ Various programming languages are used throughout NixOS, as of December 2023. The Linux kernel is written in C. The Nix package manager is written in C++.
- ^ a b Various other licenses are used for software included with NixOS, for example the Linux kernel is licensed under the GNU General Public License (GPL) version 2.0, as of December 2023.
References
[edit]- ^ "Community - nixos.org". Archived from the original on 2022-09-23. Retrieved 2022-09-23.
- ^ "NixOS/nixos-foundation". GitHub. Archived from the original on 2022-09-23. Retrieved 2022-09-23.
- ^ "Download Nix & NixOS". nixos.org. Retrieved 2024-12-24.
- ^ RaitoBezarius (2024-01-02). "Limited cache availability for i686 (32 bits x86) architecture". discourse.nixos.org. Retrieved 2024-12-24.
[…] we are removing the 32 bits ISO on the NixOS homepage, NixOS tests […]
- ^ "nixpkgs/COPYING at master: NixOS/nixpkgs". GitHub.com. Retrieved 2015-09-19.
- ^ a b "NixOS Manual". NixOS. Retrieved 2025-10-15.
- ^ "Nixpkgs". GitHub. Retrieved 2025-10-15.
- ^ "nixpkgs/COPYING at master: NixOS/nixpkgs". GitHub.com. Retrieved 2015-09-19.
- ^ Dolstra, Eelco (2003). "Integrating Software Construction and Software Deployment" (PDF). Software Configuration Management. Lecture Notes in Computer Science. Vol. 2649. pp. 102–117. doi:10.1007/3-540-39195-9_8. ISBN 978-3-540-14036-8. Archived from the original (PDF) on 2019-04-21.
- ^ Dolstra, Eelco (2006). The Purely Functional Software Deployment Model (PDF) (Ph.D.). Archived from the original (PDF) on 2019-06-09.
- ^ Hemel, Armijn (2006). NixOS: the Nix based operating system (PDF) (Master's). Retrieved 2025-10-15.
- ^ Dolstra, Eelco. "Purely Functional System Configuration Management". Usenix.org. Retrieved 2024-03-04.
- ^ "NixOS 13.10 released". NixOS. Retrieved 15 October 2025.
- ^ "Stichting NixOS Foundation". Nixos.org. Retrieved 2015-09-19.
- ^ "Governance". Nixos.org. Archived from the original on 2020-08-16. Retrieved 2020-08-28.
- ^ "Nix RFCS (Request for Comments)". GitHub. 17 December 2021.
- ^ "Release Announcements". Nixos.org. Retrieved 2023-12-09.
- ^ "Systemd branch merged". Nixos.org. Retrieved 2025-10-15.
- ^ Dolstra, Eelco; Hemel, Armijn (2007-05-07). Purely Functional System Configuration Management (PDF). 11th USENIX workshop on Hot topics in operating systems. San Diego, California, USA: USENIX Association. Archived (PDF) from the original on 2020-07-10. Retrieved 2023-07-19.
- ^ "About NixOS". Nixos.org. Retrieved 2015-09-19.
- ^ van der Burg, Sander; Dolstra, Eelco; de Jonge, Merijn (2008-10-20). Atomic Upgrading of Distributed Systems (PDF). 1st International Workshop on Hot Topics in Software Upgrades. Nashville, Tennessee, USA: Association for Computing Machinery. doi:10.1145/1490283.1490294. ISBN 978-1-60558-304-4. Archived (PDF) from the original on 2021-11-13. Retrieved 2023-07-19.
- ^ van der Burg, Sander; Dolstra, Eelco; de Jonge, Merijn (2008-10-20). Atomic Upgrading of Distributed Systems (PDF). 1st International Workshop on Hot Topics in Software Upgrades. Nashville, Tennessee, USA: Association for Computing Machinery. doi:10.1145/1490283.1490294. ISBN 978-1-60558-304-4. Archived (PDF) from the original on 2021-11-13. Retrieved 2023-07-19.
- ^ "Upgrading and rollbacks". NixOS Manual. Retrieved 2025-10-16.
- ^ NixOS Manual - Rolling Back Configuration Changes, Nixos.org
- ^ "nix-shell". Nix Reference Manual. Retrieved 2025-02-17.
- ^ NixOS Manual - Flakes, Nixos.org
- ^ Dolstra, Eelco (2005-11-07). Secure Sharing Between Untrusted Users in a Transparent Source/Binary Deployment Model (PDF). 20th IEEE/ACM International Conference on Automated Software Engineering. Long Beach, California, USA: Association for Computing Machinery. doi:10.1145/1101908.1101933. ISBN 978-1-58113-993-8. Archived (PDF) from the original on 2021-11-13. Retrieved 2023-07-19.
- ^ Smith, Jesse (23 November 2015). "NixOS 15.09 and the Nix package manager". DistroWatch Weekly. No. 637.
- ^ Hunt, Adam (28 October 2022). "Review: NixOS" (PDF). Full Circle. Archived (PDF) from the original on 28 October 2022. Retrieved 28 October 2022.
- ^ Proven, Liam (2022-12-13). "NixOS 22.11 'Raccoon': Like a proof of concept you can do things with OSes". The Register.
- ^ Smith, Jesse (1 April 2024). "NixOS 23.11". DistroWatch Weekly. No. 1064.
- ^ a b "NixOS Wiki: History". NixOS Wiki. Retrieved 2024-11-28.
- ^ Garbas, Rok (2015). "Make Nix Friendlier for Beginners". media.ccc.de.
- ^ "NixOS Wiki: Main Page". nixos.org/wiki. Archived from the original on 3 May 2017 – via Internet Archive.
- ^ Helmich, Tristan. "MediaWiki for NixOS". Retrieved 2024-01-01.
- ^ "NixOS Wiki:News". NixOS Wiki. Retrieved 2025-01-19.