1
0
Fork 0
mirror of https://github.com/NixOS/nix.dev.git synced 2024-10-18 14:32:43 -04:00
nix.dev/source/concepts/faq.md
2023-11-27 07:31:32 +01:00

8.3 KiB

Frequently Asked Questions

What is the origin of the name Nix?

The name Nix is derived from the Dutch word niks, meaning nothing; build actions do not see anything that has not been explicitly declared as an input.

Nix: A Safe and Policy-Free System for Software Deployment, LISA XVIII, 2004

The Nix logo is inspired by an idea for the Haskell logo and the fact that nix is Latin for snow.

Why are flakes controversial?

{ref}Flakes <flakes> were originally proposed in RFC 49, and have been in development since 2019. Nix introduced the implementation as its first experimental feature in 2021.

The subject is considered controversial among Nix users and developers in terms of design, development processes, and community governance. In particular:

This led to a situation where the stable interface was only sparsely maintained for multiple years, and repeatedly suffered breakages due to ongoing development. Meanwhile, the new interface was adopted widely enough for evolving its design without negatively affecting users to become very challenging.

As of the 2022 community survey, more than half of the user base, a third of which were relative beginners, relied on experimental features. {term}Nixpkgs as a contrasting example, while featuring a flake.nix for compatibility, does not depend on Nix experimental features in its code base.

Should I enable flakes?

You have to judge for yourself based on your needs.

Flakes and the nix command suite bring multiple improvements that are relevant for both software users and package authors:

  • The new command-line interface, together with flakes, makes dealing with existing packages significantly more convenient.
  • The constraints imposed on flakes strengthen reproducibility by default, and enable various performance improvements when interacting with a large Nix package repository like {term}Nixpkgs.
  • Flake references allow for easier handling of version upgrades for existing packages or project dependencies.
  • The flake schema helps with composing Nix projects from multiple sources in an orderly fashion.

Other than that, and below the surface of the flake schema, Nix and the Nix language work exactly the same in both cases. In principle, the same level of reproducibility can be achieved with or without flakes. In particular, the process of adding software to {term}Nixpkgs or maintaining {term}NixOS modules and configurations is not affected by flakes at all.

Both paradigms have their own set of unique concepts and support tooling that have to be learned, with varying ease of use, implementation quality, and support status. At the moment, neither the stable nor the experimental interface is clearly superior to the other in all aspects. While flakes reduce complexity in some regards, they also introduce additional mechanisms and you will have to learn more about the system to fully understand how it works.

There are downsides to relying on experimental features in general:

  • Interfaces and behaviour of experimental features could still be changed by Nix developers. This may require you to adapt your code at some point in the future, which will be more effort when it has grown in complexity. Currently there is no agreed-upon plan or timeline for stabilising flakes.
  • The Nix maintainer team focuses on fixing bugs and regressions in stable interfaces, supporting well-understood use cases, as well as improving the internal design and overall contributor experience in order to ease future development. Improvements to experimental features have a low priority.
  • The Nix documentation team focuses on improving documentation and learning materials for stable features and common principles. When using flakes, you will have to rely more heavily on user-to-user support, third-party documentation, and the source code.

(channel-branches)=

Which channel branch should I use?

Nixpkgs and NixOS have both stable and rolling releases.

Stable

  • On Linux (including NixOS and WSL), use nixos-*.

    These branches point to commits where most Linux packages got pre-built and can be fetched from the binary cache. Furthermore, these commits passed the basic NixOS test suite.

  • On macOS/Darwin, use nixpkgs-*-darwin

    These branches point to commits where most Darwin packages got pre-built and can be fetched from the binary cache.

  • On any other platform it doesn't matter which one of the above is used.

    Hydra doesn't pre-build any binaries for other platforms.

All of these "channel branches" follow the corresponding release-* branch.

:::{admonition} Example nixos-23.05 and nixpkgs-23.05-darwin are both based on release-23.05. :::

Rolling

These branches follow master, the main development branch.

*-small channel branches have passed a smaller test suite, which means they are more up-to-date with respect to their base branch but offer fewer stability guarantees.

Consult the nix-channel entry in the Nix Reference Manual for more information on channels, and the Nixpkgs contributing guide on the Nixpkgs branching strategy.

Are there any impurities left in sandboxed builds?

Yes. There is:

  • CPU architecture—great effort being made to avoid compilation of native instructions in favour of hardcoded supported ones.
  • System's current time/date.
  • The filesystem used for building (see also TMPDIR).
  • Linux kernel parameters, such as:
  • Timing behaviour of the build system—parallel Make build does not get the correct inputs in some cases.
  • Insertion of random values, e.g., from /dev/random or /dev/urandom.
  • Differences between Nix versions. For instance, a new Nix version might introduce a new environment variable. A statement like env > $out is not promised by Nix to result in the same output, going into the future.