Introduction
Lix is an implementation of Nix, a powerful, purely functional package management system.
This means that it treats packages like values in purely functional programming languages such as Haskell — they are built by functions that don’t have side-effects, and they never change after they have been built.
Lix stores packages in the Nix store, usually the directory /nix/store
, where each package has its own unique subdirectory such as
/nix/store/b6gvzjyb2pg0kjfwrjmg1vfhh54ad73z-firefox-33.1/
where b6gvzjyb2pg0…
is a unique identifier for the package that
captures all its dependencies (it’s a cryptographic hash of the
package’s build dependency graph). This enables many powerful
features.
Multiple versions
You can have multiple versions or variants of a package installed at the same time. This is especially important when different applications have dependencies on different versions of the same package — it prevents the “DLL hell”. Because of the hashing scheme, different versions of a package end up in different paths in the Nix store, so they don’t interfere with each other.
An important consequence is that operations like upgrading or uninstalling an application cannot break other applications, since these operations never “destructively” update or delete files that are used by other packages.
Complete dependencies
Lix helps you make sure that package dependency specifications are complete. In general, when you’re making a package for a package management system like RPM, you have to specify for each package what its dependencies are, but there are no guarantees that this specification is complete. If you forget a dependency, then the package will build and work correctly on your machine if you have the dependency installed, but not on the end user's machine if it's not there.
Since Lix on the other hand doesn’t install packages in “global”
locations like /usr/bin
but in package-specific directories, the
risk of incomplete dependencies is greatly reduced. This is because
tools such as compilers don’t search in per-packages directories such
as /nix/store/5lbfaxb722zp…-openssl-0.9.8d/include
, so if a package
builds correctly on your system, this is because you specified the
dependency explicitly. This takes care of the build-time dependencies.
Once a package is built, runtime dependencies are found by scanning
binaries for the hash parts of Nix store paths (such as r8vvq9kq…
).
This sounds risky, but it works extremely well.
Multi-user support
Lix has multi-user support.
This means that non-privileged users can securely install software, and it is considered a bug if users can trample on each other.
Each user can have a different profile, a set of packages in the Nix store that appear in the user’s PATH
.
If a user installs a package that another user has already installed previously, the package won’t be built or downloaded a second time.
At the same time, it is not possible for one user to inject a Trojan horse into a package that might be used by another user.
Atomic upgrades and rollbacks
Since package management operations never overwrite packages in the Nix store but just add new versions in different paths, they are atomic. So during a package upgrade, there is no time window in which the package has some files from the old version and some files from the new version — which would be bad because a program might well crash if it’s started during that period.
And since packages aren’t overwritten, the old versions are still there after an upgrade. This means that you can roll back to the old version:
$ nix-env --upgrade --attr nixpkgs.some-package
$ nix-env --rollback
Garbage collection
When you uninstall a package like this…
$ nix-env --uninstall firefox
the package isn’t deleted from the system right away (after all, you might want to do a rollback, or it might be in the profiles of other users). Instead, unused packages can be deleted safely by running the garbage collector:
$ nix-collect-garbage
This deletes all packages that aren’t in use by any user profile or by a currently running program.
Functional package language
Packages are built from Nix expressions, which is a simple functional language. A Nix expression describes everything that goes into a package build task (a “derivation”): other packages, sources, the build script, environment variables for the build script, etc. Lix tries very hard to ensure that Nix expressions are deterministic: building a Nix expression twice should yield the same result.
Because it’s a functional language, it’s easy to support building variants of a package: turn the Nix expression into a function and call it any number of times with the appropriate arguments. Due to the hashing scheme, variants don’t conflict with each other in the Nix store.
Transparent source/binary deployment
Nix expressions generally describe how to build a package from source, so an installation action like
$ nix-env --install --attr nixpkgs.firefox
could cause quite a bit of build activity, as not only Firefox but
also all its dependencies (all the way up to the C library and the
compiler) would have to be built, at least if they are not already in the
Nix store. This is a source deployment model. For most users,
building from source is not very pleasant as it takes far too long.
However, Lix can automatically skip building from source and instead
use a binary cache, a web server that provides pre-built
binaries. For instance, when asked to build
/nix/store/b6gvzjyb2pg0…-firefox-33.1
from source, Lix would first
check if the file https://cache.nixos.org/b6gvzjyb2pg0….narinfo
exists, and if so, fetch the pre-built binary referenced from there;
otherwise, it would fall back to building from source.
Nix Packages collection
We provide a large set of Nix expressions containing tens of thousands of existing Unix packages, the Nix Packages collection (Nixpkgs).
Managing build environments
Lix is extremely useful for developers as it makes it easy to
automatically set up the build environment for a package. Given a Nix
expression that describes the dependencies of your package, the
command nix-shell
will build or download those dependencies if
they’re not already in your Nix store, and then start a Bash shell in
which all necessary environment variables (such as compiler search
paths) are set.
For example, the following command gets all dependencies of the Pan newsreader, as described by its Nix expression:
$ nix-shell '<nixpkgs>' --attr pan
You’re then dropped into a shell where you can edit, build and test the package:
[nix-shell]$ unpackPhase
[nix-shell]$ cd pan-*
[nix-shell]$ configurePhase
[nix-shell]$ buildPhase
[nix-shell]$ ./pan/gui/pan
Portability
Lix runs on Linux and macOS.
NixOS
NixOS is a Linux distribution based on Nix technology. It uses Nix not just for
package management but also to manage the system configuration (e.g.,
to build configuration files in /etc
). This means, among other
things, that it is easy to roll back the entire configuration of the
system to an earlier state. Also, users can install software without
root privileges. For more information and downloads, see the NixOS
homepage.
License
Lix is released under the terms of the GNU LGPLv2.1 or (at your option) any later version.
Quick Start
FIXME(Lix): This chapter is quite outdated with respect to recommended practices in 2024 and needs updating. The commands in here will work, however, and the installation section is up to date.
For more updated guidance, see the links on https://lix.systems/resources/
This chapter is for impatient people who don't like reading documentation. For more in-depth information you are kindly referred to subsequent chapters.
-
Install Lix:
On Linux and macOS the easiest way to install Lix is to run the following shell command (as a user other than root):
$ curl -sSf -L https://install.lix.systems/lix | sh -s -- install
For systems that already have a Nix implementation installed, such as NixOS systems, read our install page
The install script will use
sudo
, so make sure you have sufficient rights.For other installation methods, see here.
-
See what installable packages are currently available in the channel:
$ nix-env --query --available --attr-path nixpkgs.docbook_xml_dtd_43 docbook-xml-4.3 nixpkgs.docbook_xml_dtd_45 docbook-xml-4.5 nixpkgs.firefox firefox-33.0.2 nixpkgs.hello hello-2.9 nixpkgs.libxslt libxslt-1.1.28 …
-
Install some packages from the channel:
$ nix-env --install --attr nixpkgs.hello
This should download pre-built packages; it should not build them locally (if it does, something went wrong).
-
Test that they work:
$ which hello /home/eelco/.nix-profile/bin/hello $ hello Hello, world!
-
Uninstall a package:
$ nix-env --uninstall hello
-
You can also test a package without installing it:
$ nix-shell --packages hello
This builds or downloads GNU Hello and its dependencies, then drops you into a Bash shell where the
hello
command is present, all without affecting your normal environment:[nix-shell:~]$ hello Hello, world! [nix-shell:~]$ exit $ hello hello: command not found
-
To keep up-to-date with the channel, do:
$ nix-channel --update nixpkgs $ nix-env --upgrade '*'
The latter command will upgrade each installed package for which there is a “newer” version (as determined by comparing the version numbers).
-
If you're unhappy with the result of a
nix-env
action (e.g., an upgraded package turned out not to work properly), you can go back:$ nix-env --rollback
-
You should periodically run the Lix garbage collector to get rid of unused packages, since uninstalls or upgrades don't actually delete them:
$ nix-collect-garbage --delete-old
N.B. on NixOS there is an option
nix.gc.automatic
to enable a systemd timer to automate this task.
Installation
See https://lix.systems/install/ for more details.
Supported Platforms
Lix is currently supported on the following platforms:
-
Linux (i686 (tier 2), x86_64 (tier 1), aarch64 (tier 1)).
-
macOS (x86_64 (tier 2 (issue to make tier 1)), aarch64 (tier 1)).
Tier 2 platforms aren't checked in CI, so may break without notice; such breakage is however considered a bug. We would like for them to work but they are a secondary priority.
Installing a Binary Distribution
See https://lix.systems/install/ for more details.
Installing Lix from Source
If no binary package is available or if you want to hack on Lix, you can build Lix from its Git repository.
Prerequisites
FIXME(meson): This section is very wrong with respect to meson and we have commented it out.
We are sorry.
The most current alternative to this section is to read package.nix
and see which things are being depended on.
Obtaining the Source
The most recent sources of Lix can be obtained from its Git
repository. For example, the following
command will check out the latest revision into a directory called
nix
:
$ git clone https://git.lix.systems/lix-project/lix
Likewise, specific releases can be obtained from the tags of the repository.
Building Lix from Source
FIXME(meson): This section is outdated for meson and has been commented out. See https://git.lix.systems/lix-project/lix/issues/258
Using Lix within Docker
Lix is available on the following two container registries:
To run the latest stable release of Lix with Docker run the following command:
~ » sudo podman run -it ghcr.io/lix-project/lix:latest
Trying to pull ghcr.io/lix-project/lix:latest...
bash-5.2# nix --version
nix (Lix, like Nix) 2.90.0
What is included in Lix's Docker image?
The official Docker image is created using nix2container
(and not with Dockerfile
as it is usual with Docker images). You can still
base your custom Docker image on it as you would do with any other Docker
image.
The Docker image is also not based on any other image and includes the nixpkgs that Lix was built with along with a minimal set of tools in the system profile:
- bashInteractive
- cacert.out
- coreutils-full
- curl
- findutils
- gitMinimal
- gnugrep
- gnutar
- gzip
- iana-etc
- less
- libxml2
- lix
- man
- openssh
- sqlite
- wget
- which
Docker image with the latest development version of Lix
FIXME: There are not currently images of development versions of Lix. Tracking issue: https://git.lix.systems/lix-project/lix/issues/381
You can build a Docker image from source yourself and copy it to either:
Podman: nix run '.#dockerImage.copyTo' containers-storage:lix
Docker: nix run '.#dockerImage.copyToDockerDaemon'
Then:
$ docker run -ti lix
Security
Lix has two basic security models. First, it can be used in “single-user mode”, which is similar to what most other package management tools do: there is a single user (typically root) who performs all package management operations. All other users can then use the installed packages, but they cannot perform package management operations themselves.
Alternatively, you can configure Lix in “multi-user mode”. In this model, all users can perform package management operations — for instance, every user can install software for themselves without requiring root privileges. Lix does its best to ensure that this is secure. For instance, it would be considered a serious security bug for one untrusted user to be able to overwrite a package used by another user with a Trojan horse.
Nevertheless, the Lix team does not consider multi-user mode a strong security boundary, and does not recommend running untrusted user-supplied Nix language code on privileged machines, even if it is secure to the best of our knowledge at any moment in time.
Single-User Mode
In single-user mode, all Nix operations that access the database in
prefix/var/nix/db
or modify the Nix store in prefix/store
must be
performed under the user ID that owns those directories. This is
typically root. (If you install from RPM packages, that’s in fact the
default ownership.) However, on single-user machines, it is often
convenient to chown
those directories to your normal user account so
that you don’t have to su
to root all the time.
Multi-User Mode
To allow a Nix store to be shared safely among multiple users, it is important that users cannot meaningfully influence the execution of derivation builds such that they could inject malicious code into them without changing their (either input- or output- addressed) hash. If they could do so, they could install a Trojan horse in some package and compromise the accounts of other users.
To prevent this, the Nix store and database are owned by some privileged user (usually root
) and builders are executed under unprivileged system user accounts (usually named nixbld1
, nixbld2
, etc.).
When an unprivileged user runs a Nix command, actions that operate on the Nix store (such as builds) are forwarded to a Nix daemon running under the owner of the Nix store/database that performs the operation.
The buried lede in the above sentence is that currently, even in multi-user mode using a daemon, if executing as the user that owns the store, Lix directly manipulates the store unless --store daemon
is specified.
We intend to change this in the future.
Do not evaluate or build untrusted, potentially-malicious, Nix language code on machines that you care deeply about maintaining user isolation on.
Although we would consider any sandbox escapes to be serious security bugs and we intend to fix them, we are not confident enough in the daemon's security to call the daemon a security boundary.
Trust model
There are two categories of users of the Lix daemon: trusted users and untrusted users.
The Lix daemon only allows connections from users that are either trusted users, or are specified in, or are members of groups specified in, allowed-users
in nix.conf
.
Trusted users are users and users of groups specified in trusted-users
in nix.conf
.
All users of the Lix daemon may do the following to bring things into the Nix store:
-
Users may load derivations and output-addressed files into the store with
nix-store --add
or through Nix language code. -
Users may locally build derivations, either of the output-addressed or input-addressed variety, creating output paths.
Note that fixed-output derivations only consider name and hash, so it is possible to write a fixed-output derivation for something important with a bogus hash and have it resolve to something else already built in the store.
On systems with
sandbox
enabled (default on Linux; not yet on macOS), derivations are either:-
Input-addressed, so they are run in the sandbox with no network access, with the following exceptions:
- The (poorly named, since it is not just about chroot) property
__noChroot
is set on the derivation andsandbox
is set torelaxed
. - On macOS, the derivation property
__darwinAllowLocalNetworking
allows network access to localhost from input-addressed derivations regardless of thesandbox
setting value. This property exists with such semantics because macOS has no network namespace equivalent to isolate individual processes' localhost networking.
- The (poorly named, since it is not just about chroot) property
-
Output-addressed, so they are run with network access but their result must match an expected hash.
Trusted users may set any setting, including
sandbox = false
, so the sandbox state can be different at runtime from what is described innix.conf
for builds invoked with such settings. -
-
Users may copy appropriately-signed derivation outputs into the store.
By default, any paths copied into a store (such as by substitution) must have signatures from
trusted-public-keys
unless they are output-addressed.Unsigned paths may be copied into a store if
require-sigs
is disabled in the daemon's configuration (not default), or if the client is a trusted user and passed--no-check-sigs
tonix copy
. -
Users may request that the daemon substitutes appropriately-signed derivation outputs from a binary cache in the daemon's
substituters
list.Untrusted clients may also specify additional values for
substituters
(via e.g.--extra-substituters
on a Nix command) that are listed intrusted-substituters
.A client could in principle substitute such paths itself then copy them to the daemon (see clause above) if they are appropriately signed but are not from a trusted substituter, however this is not implemented in the current Lix client to our knowledge, at the time of writing. This probably means that
trusted-substituters
is a redundant setting except insofar as such substitution would have to be done on the client rather than as root on the daemon; and it is highly defensible to not allow random usage of our HTTP client running as root.
The Lix daemon as a security non-boundary
The Lix team and wider community does not consider the Lix daemon to be a security boundary against malicious Nix language code.
Although we do our best to make it secure, we do not recommend sharing a Lix daemon with potentially malicious users. That means that public continuous integration (CI) builds of untrusted Nix code should not share builders with CI that writes into a cache used by trusted infrastructure.
For example, hydra.nixos.org, which is the builder for cache.nixos.org, does not execute untrusted Nix language code; a separate system, ofborg is used for CI of nixpkgs pull requests. The build output of pull request CI is never pushed to cache.nixos.org, and those systems are considered entirely untrusted.
This is because, among other things, the Lix sandbox is more susceptible to kernel exploits than Docker, which, unlike Lix, blocks nested user namespaces via seccomp
in its default policy, and there have been many kernel bugs only exposed to unprivileged users via user namespaces allowing otherwise-root-only system calls.
In general, the Lix sandbox is set up to be relatively unrestricted while maintaining its goals of building useful, reproducible software; security is not its primary goal.
The Lix sandbox is a custom non-rootless Linux container implementation that has not been audited to nearly the same degree as Docker and similar systems. Also, the Lix daemon is a complex and historied C++ executable running as root with very little privilege separation. All of this means that a security hole in the Lix daemon gives immediate root access. Systems like Docker (especially non-rootless Docker) should themselves probably not be used in a multi-tenant manner with mutually distrusting tenants, but the Lix daemon especially should not be used as such as of this writing.
The primary purpose of the sandbox is to strongly encourage packages to be reproducible, a goal which it is generally quite successful at.
Trusted users
Trusted users are permitted to set any setting and bypass security restrictions on the daemon. They are currently in widespread use for a couple of reasons such as remote builds (which we intend to fix).
Trusted users are effectively root on Nix daemons running as root (the default configuration) for at least the following reasons, and should be thus thought of as equivalent to passwordless sudo. This is not a comprehensive list.
-
They may copy an unsigned malicious built output into the store for
systemd
or anything else that will run as root, then when the system is upgraded, that path will be used from the local store rather than substituted. -
They may set the following settings that are commands the daemon will run as root:
build-hook
diff-hook
pre-build-hook
post-build-hook
-
They may set
build-users-group
.In particular, they may set it to empty string, which runs builds as root with respect to the rest of the system (!!). We, too, think that is absurd and intend to not accept such a configuration. It is then simply an exercise to the reader to find a daemon that does
SCM_CREDENTIALS
over aunix(7)
socket and lets you run commands as root, and mount it into the sandbox withextra-sandbox-paths
.At the very least, the Lix daemon itself (since
root
is a trusted user by default) and probablysystemd
qualify for this. -
They may set the
builders
list, which will have ssh run as root. We aren't sure if there is a way to abuse this for command execution but it's plausible.
Note that setting accept-flake-config
allows arbitrary Nix flakes to set Nix settings in the nixConfig
stanza.
Do not set this setting or pass --accept-flake-config
while executing untrusted Nix language code as a trusted user for the reasons above!
Build users
The build users are the special UIDs under which builds are performed.
A build user is selected for a build by looking in the group specified by build-users-group
, by default, nixbld
, then a member of that group not currently executing a build is selected for the build.
The build users should not be members of any other group.
There can never be more concurrent builds than the number of build users, unless using auto-allocate-uids
(tracking issue).
If, for some reason, you need to create such users manually, the following command will create 10 build users on Linux:
$ groupadd -r nixbld
$ for n in $(seq 1 10); do useradd -c "Nix build user $n" \
-d /var/empty -g nixbld -G nixbld -M -N -r -s "$(which nologin)" \
nixbld$n; done
Running the daemon
The Nix daemon can be started manually as follows (as root
):
# nix-daemon
In standard installations of Lix, the daemon is started by a systemd
unit (Linux) or launchd
service (macOS).
Environment Variables
To use Lix, some environment variables should be set. In particular,
PATH
should contain the directories prefix/bin
and
~/.nix-profile/bin
. The first directory contains the Nix tools
themselves, while ~/.nix-profile
is a symbolic link to the current
user environment (an automatically generated package consisting of
symlinks to installed packages). The simplest way to set the required
environment variables is to include the file
prefix/etc/profile.d/nix.sh
in your ~/.profile
(or similar), like
this:
source prefix/etc/profile.d/nix.sh
NIX_SSL_CERT_FILE
FIXME(Lix): This section is undoubtedly wrong due to the Lix installer being replaced. The definitely-wrong install section has been commented out.
If you need to specify a custom certificate bundle to account for an
HTTPS-intercepting man in the middle proxy, you must specify the path to
the certificate bundle in the environment variable NIX_SSL_CERT_FILE
.
If you don't specify a NIX_SSL_CERT_FILE
manually, Lix will install
and use its own certificate bundle.
In the shell profile and rc files (for example, /etc/bashrc
,
/etc/zshrc
), add the following line:
export NIX_SSL_CERT_FILE=/etc/ssl/my-certificate-bundle.crt
Note
You must not add the export and then do the install, as the Lix installer will detect the presence of Nix configuration, and abort.
If you use the Lix daemon, you should also add the following to
/etc/nix/nix.conf
:
ssl-cert-file = /etc/ssl/my-certificate-bundle.crt
Proxy Environment Variables
The Lix installer has special handling for these proxy-related
environment variables: http_proxy
, https_proxy
, ftp_proxy
,
no_proxy
, HTTP_PROXY
, HTTPS_PROXY
, FTP_PROXY
, NO_PROXY
.
If any of these variables are set when running the Lix installer, then
the installer will create an override file at
/etc/systemd/system/nix-daemon.service.d/override.conf
so nix-daemon
will use them.
Upgrading Lix
FIXME(Lix): does Lix forward to the installer for nix upgrade-nix
? Should it, if present? Lix should restart the daemon for you but currently doesn't (issue).
For instructions to switch to Lix, see https://lix.systems/install.
Lix may be upgraded by running nix upgrade-nix
and then restarting the Nix daemon.
Restarting daemon on Linux
sudo systemctl daemon-reload && sudo systemctl restart nix-daemon
Restarting daemon on macOS
FIXME(Lix): Write instructions that, according to the beta installation guide do not sometimes crash macOS (?!)
Uninstalling Lix
FIXME(Lix): This section is outdated and commented out due to the Lix installer being replaced such that it has an actual uninstaller.
See https://git.lix.systems/lix-project/lix-installer#uninstalling for up-to-date uninstallation instructions using the installer.
This chapter discusses how to do package management with Lix, i.e., how to obtain, install, upgrade, and erase packages. This is the “user’s” perspective of the Nix system — people who want to create packages should consult the chapter on the Nix language.
Basic Package Management
FIXME(Lix): This section does not document the most common modern practices in terms of avoiding channels, pinning, declarative software installation (see flakey-profile or home-manager or NixOS), or using flakes, etc. It is, however, likely correct at a technical level.
For more information on modern practices, see the resources page on the Lix site.
The main command for package management is
nix-env
. You can use it to install,
upgrade, and erase packages, and to query what packages are installed
or are available for installation.
In Nix systems, different users can have different “views” on the set of
installed applications. That is, there might be lots of applications
present on the system (possibly in many different versions), but users
can have a specific selection of those active — where “active” just
means that it appears in a directory in the user’s PATH
. Such a view
on the set of installed applications is called a user environment,
which is just a directory tree consisting of symlinks to the files of
the active applications.
Components are installed from a set of Nix expressions that tell Lix how to build those packages, including, if necessary, their dependencies. There is a very large collection of Nix expressions called the Nixpkgs package collection that contains packages ranging from basic development stuff such as GCC and Glibc, to end-user applications like Mozilla Firefox. (Lix is however not tied to the Nixpkgs package collection; you could write your own Nix expressions based on Nixpkgs, or completely new ones.)
You can manually download the latest version of Nixpkgs from https://github.com/NixOS/nixpkgs. However, it’s much more convenient to use the Nixpkgs channel, since it makes it easy to stay up to date with new versions of Nixpkgs. Nixpkgs is automatically added to your list of “subscribed” channels when you install Lix. If this is not the case for some reason, you can add it as follows:
$ nix-channel --add https://nixos.org/channels/nixpkgs-unstable
$ nix-channel --update
Note
On NixOS, you’re automatically subscribed to a NixOS channel corresponding to your NixOS major release (e.g. http://nixos.org/channels/nixos-21.11). A NixOS channel is identical to the Nixpkgs channel, except that it contains only Linux binaries and is updated only if a set of regression tests succeed.
You can view the set of available packages in Nixpkgs:
$ nix-env --query --available --attr-path
nixpkgs.aterm aterm-2.2
nixpkgs.bash bash-3.0
nixpkgs.binutils binutils-2.15
nixpkgs.bison bison-1.875d
nixpkgs.blackdown blackdown-1.4.2
nixpkgs.bzip2 bzip2-1.0.2
…
The flag -q
specifies a query operation, -a
means that you want
to show the “available” (i.e., installable) packages, as opposed to the
installed packages, and -P
prints the attribute paths that can be used
to unambiguously select a package for installation (listed in the first column).
If you downloaded Nixpkgs yourself, or if you checked it out from GitHub,
then you need to pass the path to your Nixpkgs tree using the -f
flag:
$ nix-env --query --available --attr-path --file /path/to/nixpkgs
aterm aterm-2.2
bash bash-3.0
…
where /path/to/nixpkgs is where you’ve unpacked or checked out Nixpkgs.
You can filter the packages by name:
$ nix-env --query --available --attr-path firefox
nixpkgs.firefox-esr firefox-91.3.0esr
nixpkgs.firefox firefox-94.0.1
and using regular expressions:
$ nix-env --query --available --attr-path 'firefox.*'
It is also possible to see the status of available packages, i.e., whether they are installed into the user environment and/or present in the system:
$ nix-env --query --available --attr-path --status
…
-PS nixpkgs.bash bash-3.0
--S nixpkgs.binutils binutils-2.15
IPS nixpkgs.bison bison-1.875d
…
The first character (I
) indicates whether the package is installed in
your current user environment. The second (P
) indicates whether it is
present on your system (in which case installing it into your user
environment would be a very quick operation). The last one (S
)
indicates whether there is a so-called substitute for the package,
which is Nix’s mechanism for doing binary deployment. It just means that
Lix knows that it can fetch a pre-built package from somewhere
(typically a network server) instead of building it locally.
You can install a package using nix-env --install --attr
. For instance,
$ nix-env --install --attr nixpkgs.subversion
will install the package called subversion
from nixpkgs
channel (which is, of course, the
Subversion version management system).
Note
When you ask Lix to install a package, it will first try to get it in pre-compiled form from a binary cache. By default, Lix will use the binary cache https://cache.nixos.org; it contains binaries for most packages in Nixpkgs. Only if no binary is available in the binary cache, Lix will build the package from source. So if
nix-env -iA nixpkgs.subversion
results in Lix building stuff from source, then either the package is not built for your platform by the Nixpkgs build servers, or your version of Nixpkgs is too old or too new. For instance, if you have a very recent checkout of Nixpkgs, then the Nixpkgs build servers may not have had a chance to build everything and upload the resulting binaries to https://cache.nixos.org. The Nixpkgs channel is only updated after all binaries have been uploaded to the cache, so if you stick to the Nixpkgs channel (rather than using a Git checkout of the Nixpkgs tree), you will get binaries for most packages.
Naturally, packages can also be uninstalled. Unlike when installing, you will
need to use the derivation name (though the version part can be omitted),
instead of the attribute path, as nix-env
does not record which attribute
was used for installing:
$ nix-env --uninstall subversion
Upgrading to a new version is just as easy. If you have a new release of nixpkgs, you can do:
$ nix-env --upgrade --attr nixpkgs.subversion
This will only upgrade Subversion if there is a “newer” version in the
new set of Nix expressions, as defined by some pretty arbitrary rules
regarding ordering of version numbers (which generally do what you’d
expect of them). To just unconditionally replace Subversion with
whatever version is in the Nix expressions, use -i
instead of -u
;
-i
will remove whatever version is already installed.
You can also upgrade all packages for which there are newer versions:
$ nix-env --upgrade
Sometimes it’s useful to be able to ask what nix-env
would do, without
actually doing it. For instance, to find out what packages would be
upgraded by nix-env --upgrade
, you can do
$ nix-env --upgrade --dry-run
(dry run; not doing anything)
upgrading `libxslt-1.1.0' to `libxslt-1.1.10'
upgrading `graphviz-1.10' to `graphviz-1.12'
upgrading `coreutils-5.0' to `coreutils-5.2.1'
Profiles
Profiles and user environments are Nix’s mechanism for implementing the
ability to allow different users to have different configurations, and
to do atomic upgrades and rollbacks. To understand how they work, it’s
useful to know a bit about how Nix works. In Nix, packages are stored in
unique locations in the Nix store (typically, /nix/store
). For
instance, a particular version of the Subversion package might be stored
in a directory
/nix/store/dpmvp969yhdqs7lm2r1a3gng7pyq6vy4-subversion-1.1.3/
, while
another version might be stored in
/nix/store/5mq2jcn36ldlmh93yj1n8s9c95pj7c5s-subversion-1.1.2
. The long
strings prefixed to the directory names are cryptographic hashes (to be
precise, 160-bit truncations of SHA-256 hashes encoded in a base-32
notation) of all inputs involved in building the package — sources,
dependencies, compiler flags, and so on. So if two packages differ in
any way, they end up in different locations in the file system, so they
don’t interfere with each other. Here is what a part of a typical Nix
store looks like:
Of course, you wouldn’t want to type
$ /nix/store/dpmvp969yhdq...-subversion-1.1.3/bin/svn
every time you want to run Subversion. Of course we could set up the
PATH
environment variable to include the bin
directory of every
package we want to use, but this is not very convenient since changing
PATH
doesn’t take effect for already existing processes. The solution
Nix uses is to create directory trees of symlinks to activated
packages. These are called user environments and they are packages
themselves (though automatically generated by nix-env
), so they too
reside in the Nix store. For instance, in the figure above, the user
environment /nix/store/0c1p5z4kda11...-user-env
contains a symlink to
just Subversion 1.1.2 (arrows in the figure indicate symlinks). This
would be what we would obtain if we had done
$ nix-env --install --attr nixpkgs.subversion
on a set of Nix expressions that contained Subversion 1.1.2.
This doesn’t in itself solve the problem, of course; you wouldn’t want
to type /nix/store/0c1p5z4kda11...-user-env/bin/svn
either. That’s why
there are symlinks outside of the store that point to the user
environments in the store; for instance, the symlinks default-42-link
and default-43-link
in the example. These are called generations
since every time you perform a nix-env
operation, a new user
environment is generated based on the current one. For instance,
generation 43 was created from generation 42 when we did
$ nix-env --install --attr nixpkgs.subversion nixpkgs.firefox
on a set of Nix expressions that contained Firefox and a new version of Subversion.
Generations are grouped together into profiles so that different users don’t interfere with each other if they don’t want to. For example:
$ ls -l /nix/var/nix/profiles/
...
lrwxrwxrwx 1 eelco ... default-42-link -> /nix/store/0c1p5z4kda11...-user-env
lrwxrwxrwx 1 eelco ... default-43-link -> /nix/store/3aw2pdyx2jfc...-user-env
lrwxrwxrwx 1 eelco ... default -> default-43-link
This shows a profile called default
. The file default
itself is
actually a symlink that points to the current generation. When we do a
nix-env
operation, a new user environment and generation link are
created based on the current one, and finally the default
symlink is
made to point at the new generation. This last step is atomic on Unix,
which explains how we can do atomic upgrades. (Note that the
building/installing of new packages doesn’t interfere in any way with
old packages, since they are stored in different locations in the Nix
store.)
If you find that you want to undo a nix-env
operation, you can just do
$ nix-env --rollback
which will just make the current generation link point at the previous
link. E.g., default
would be made to point at default-42-link
. You
can also switch to a specific generation:
$ nix-env --switch-generation 43
which in this example would roll forward to generation 43 again. You can also see all available generations:
$ nix-env --list-generations
You generally wouldn’t have /nix/var/nix/profiles/some-profile/bin
in
your PATH
. Rather, there is a symlink ~/.nix-profile
that points to
your current profile. This means that you should put
~/.nix-profile/bin
in your PATH
(and indeed, that’s what the
initialisation script /nix/etc/profile.d/nix.sh
does). This makes it
easier to switch to a different profile. You can do that using the
command nix-env --switch-profile
:
$ nix-env --switch-profile /nix/var/nix/profiles/my-profile
$ nix-env --switch-profile /nix/var/nix/profiles/default
These commands switch to the my-profile
and default profile,
respectively. If the profile doesn’t exist, it will be created
automatically. You should be careful about storing a profile in another
location than the profiles
directory, since otherwise it might not be
used as a root of the garbage collector.
All nix-env
operations work on the profile pointed to by
~/.nix-profile
, but you can override this using the --profile
option
(abbreviation -p
):
$ nix-env --profile /nix/var/nix/profiles/other-profile --install --attr nixpkgs.subversion
This will not change the ~/.nix-profile
symlink.
Garbage Collection
nix-env
operations such as upgrades (-u
) and uninstall (-e
) never
actually delete packages from the system. All they do (as shown above)
is to create a new user environment that no longer contains symlinks to
the “deleted” packages.
Of course, since disk space is not infinite, unused packages should be removed at some point. You can do this by running the Lix garbage collector. It will remove from the Nix store any package not used (directly or indirectly) by any generation of any profile.
Note however that as long as old generations reference a package, it will not be deleted. After all, we wouldn’t be able to do a rollback otherwise. So in order for garbage collection to be effective, you should also delete (some) old generations. Of course, this should only be done if you are certain that you will not need to roll back.
To delete all old (non-current) generations of your current profile:
$ nix-env --delete-generations old
Instead of old
you can also specify a list of generations, e.g.,
$ nix-env --delete-generations 10 11 14
To delete all generations older than a specified number of days (except
the current generation), use the d
suffix. For example,
$ nix-env --delete-generations 14d
deletes all generations older than two weeks.
After removing appropriate old generations you can run the garbage collector as follows:
$ nix-store --gc
The behaviour of the garbage collector is affected by the
keep-derivations
(default: true) and keep-outputs
(default: false)
options in the Nix configuration file. The defaults will ensure that all
derivations that are build-time dependencies of garbage collector roots
will be kept and that all output paths that are runtime dependencies
will be kept as well. All other derivations or paths will be collected.
(This is usually what you want, but while you are developing it may make
sense to keep outputs to ensure that rebuild times are quick.) If you
are feeling uncertain, you can also first view what files would be
deleted:
$ nix-store --gc --print-dead
Likewise, the option --print-live
will show the paths that won’t be
deleted.
There is also a convenient little utility nix-collect-garbage
, which
when invoked with the -d
(--delete-old
) switch deletes all old
generations of all profiles in /nix/var/nix/profiles
. So
$ nix-collect-garbage -d
is a quick and easy way to clean up your system.
Garbage Collector Roots
The roots of the garbage collector are all store paths to which there
are symlinks in the directory prefix/nix/var/nix/gcroots
. For
instance, the following command makes the path
/nix/store/d718ef...-foo
a root of the collector:
$ ln -s /nix/store/d718ef...-foo /nix/var/nix/gcroots/bar
That is, after this command, the garbage collector will not remove
/nix/store/d718ef...-foo
or any of its dependencies.
Subdirectories of prefix/nix/var/nix/gcroots
are also searched for
symlinks. Symlinks to non-store paths are followed and searched for
roots, but symlinks to non-store paths inside the paths reached in
that way are not followed to prevent infinite recursion.
Sharing Packages Between Machines
Sometimes you want to copy a package from one machine to another. Or, you want to install some packages and you know that another machine already has some or all of those packages or their dependencies. In that case there are mechanisms to quickly copy packages between machines.
Serving a Nix store via HTTP
FIXME(Lix): This section documents outdated practices.
In particular, the Lix developers would not recommend using nix-serve
as it is relatively-unmaintained Perl.
The Lix developers would recommend instead using an s3 based cache (which is what https://cache.nixos.org is), and if it is desired to self-host it, use something like garage.
See the following projects:
You can easily share the Nix store of a machine via HTTP. This allows other machines to fetch store paths from that machine to speed up installations. It uses the same binary cache mechanism that Lix usually uses to fetch pre-built binaries from https://cache.nixos.org.
The daemon that handles binary cache requests via HTTP, nix-serve
, is
not part of the Nix distribution, but you can install it from Nixpkgs:
$ nix-env --install --attr nixpkgs.nix-serve
You can then start the server, listening for HTTP connections on whatever port you like:
$ nix-serve -p 8080
To check whether it works, try the following on the client:
$ curl http://avalon:8080/nix-cache-info
which should print something like:
StoreDir: /nix/store
WantMassQuery: 1
Priority: 30
On the client side, you can tell Lix to use your binary cache using --substituters
(assuming you are a trusted user, see trusted-users
in nix.conf), e.g.:
$ nix-env --install --attr nixpkgs.firefox --substituters http://avalon:8080/
The option substituters
tells Lix to use this binary cache in
addition to your default caches, such as https://cache.nixos.org.
Thus, for any path in the closure of Firefox, Lix will first check if
the path is available on the server avalon
or another binary caches.
If not, it will fall back to building from source.
You can also tell Lix to always use your binary cache by adding a line
to the nix.conf
configuration file like this:
substituters = http://avalon:8080/ https://cache.nixos.org/
Copying Closures via SSH
The command nix-copy-closure
copies a Nix store path along with all
its dependencies to or from another machine via the SSH protocol. It
doesn’t copy store paths that are already present on the target machine.
For example, the following command copies Firefox with all its
dependencies:
$ nix-copy-closure --to alice@itchy.example.org $(type -p firefox)
See the manpage for nix-copy-closure
for details.
With nix-store --export
and nix-store --import
you can write the closure of a store
path (that is, the path and all its dependencies) to a file, and then
unpack that file into another Nix store. For example,
$ nix-store --export $(nix-store --query --requisites $(type -p firefox)) > firefox.closure
writes the closure of Firefox to a file. You can then copy this file to another machine and install the closure:
$ nix-store --import < firefox.closure
Any store paths in the closure that are already present in the target store are ignored. It is also possible to pipe the export into another command, e.g. to copy and install a closure directly to/on another machine:
$ nix-store --export $(nix-store --query --requisites $(type -p firefox)) | bzip2 | \
ssh alice@itchy.example.org "bunzip2 | nix-store --import"
However, nix-copy-closure
is generally more efficient because it only
copies paths that are not already present in the target Nix store.
Serving a Nix store via SSH
You can tell Lix to automatically fetch needed binaries from a remote
Nix store via SSH. For example, the following installs Firefox,
automatically fetching any store paths in Firefox’s closure if they are
available on the server avalon
:
$ nix-env --install --attr nixpkgs.firefox --substituters ssh://alice@avalon
This works similar to the binary cache substituter that Lix usually
uses, only using SSH instead of HTTP: if a store path P
is needed, Lix
will first check if it’s available in the Nix store on avalon
. If not,
it will fall back to using the binary cache substituter, and then to
building from source.
Note
The SSH substituter currently does not allow you to enter an SSH passphrase interactively. Therefore, you should use
ssh-add
to load the decrypted private key intossh-agent
.
You can also copy the closure of some store path, without installing it into your profile, e.g.
$ nix-store --realise /nix/store/m85bxg…-firefox-34.0.5 --substituters
ssh://alice@avalon
This is essentially equivalent to doing
$ nix-copy-closure --from alice@avalon
/nix/store/m85bxg…-firefox-34.0.5
You can use SSH’s forced command feature to set up a restricted user
account for SSH substituter access, allowing read-only access to the
local Nix store, but nothing more. For example, add the following lines
to sshd_config
to restrict the user nix-ssh
:
Match User nix-ssh
AllowAgentForwarding no
AllowTcpForwarding no
PermitTTY no
PermitTunnel no
X11Forwarding no
ForceCommand nix-store --serve
Match All
On NixOS, you can accomplish the same by adding the following to your
configuration.nix
:
nix.sshServe.enable = true;
nix.sshServe.keys = [ "ssh-dss AAAAB3NzaC1k... bob@example.org" ];
where the latter line lists the public keys of users that are allowed to connect.
Serving a Nix store via S3
Lix has built-in support for storing and fetching store paths from Amazon S3 and S3-compatible services.
FIXME(Lix): document the correct setup to fetch from a s3 cache via HTTP rather than just through s3://
(which works, but forces you to remain s3-like on the client side)
In this example we will use the bucket named example-nix-cache
.
Anonymous Reads to your S3-compatible binary cache
If your binary cache is publicly accessible and does not require authentication, the simplest and easiest way to use Lix with your S3 compatible binary cache is to use the HTTP URL for that cache.
For AWS S3 the binary cache URL for example bucket will be exactly https://example-nix-cache.s3.amazonaws.com or s3://example-nix-cache. For S3 compatible binary caches, consult that cache's documentation.
Your bucket will need the following bucket policy:
{
"Id": "DirectReads",
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowDirectReads",
"Action": [
"s3:GetObject",
"s3:GetBucketLocation"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::example-nix-cache",
"arn:aws:s3:::example-nix-cache/*"
],
"Principal": "*"
}
]
}
Authenticated Reads to your S3 binary cache
For AWS S3 the binary cache URL for example bucket will be exactly s3://example-nix-cache.
Lix will use the default credential provider chain for authenticating requests to Amazon S3.
Lix supports authenticated reads from Amazon S3 and S3 compatible binary caches.
Your bucket will need a bucket policy allowing the desired users to
perform the s3:GetObject
and s3:GetBucketLocation
action on all
objects in the bucket. The anonymous policy given
above can be
updated to have a restricted Principal
to support this.
Authenticated Writes to your S3-compatible binary cache
Lix support fully supports writing to Amazon S3 and S3 compatible buckets. The binary cache URL for our example bucket will be s3://example-nix-cache.
Lix will use the default credential provider chain for authenticating requests to Amazon S3.
Your account will need the following IAM policy to upload to the cache:
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "UploadToCache",
"Effect": "Allow",
"Action": [
"s3:AbortMultipartUpload",
"s3:GetBucketLocation",
"s3:GetObject",
"s3:ListBucket",
"s3:ListBucketMultipartUploads",
"s3:ListMultipartUploadParts",
"s3:PutObject"
],
"Resource": [
"arn:aws:s3:::example-nix-cache",
"arn:aws:s3:::example-nix-cache/*"
]
}
]
}
Examples
To upload with a specific credential profile for Amazon S3:
$ nix copy nixpkgs.hello \
--to 's3://example-nix-cache?profile=cache-upload®ion=eu-west-2'
To upload to an S3-compatible binary cache:
$ nix copy nixpkgs.hello --to \
's3://example-nix-cache?profile=cache-upload&scheme=https&endpoint=minio.example.com'
Nix Language
The Nix language is designed for conveniently creating and composing derivations – precise descriptions of how contents of existing files are used to derive new files. It is:
-
domain-specific
It comes with built-in functions to integrate with the Nix store, which manages files and performs the derivations declared in the Nix language.
-
declarative
There is no notion of executing sequential steps. Dependencies between operations are established only through data.
-
pure
Values cannot change during computation. Functions always produce the same output if their input does not change.
-
functional
Functions are like any other value. Functions can be assigned to names, taken as arguments, or returned by functions.
-
lazy
Values are only computed when they are needed.
-
dynamically typed
Type errors are only detected when expressions are evaluated.
Overview
This is an incomplete overview of language features, by example.
Example | Description |
---|---|
Basic values |
|
|
A string |
|
A multi-line string. Strips common prefixed whitespace. Evaluates to |
|
String interpolation (expands to |
|
Booleans |
|
Null value |
|
An integer |
|
A floating point number |
|
An absolute path |
|
A path relative to the file containing this Nix expression |
|
A home path. Evaluates to the |
|
Search path for Nix files. Value determined by |
Compound values |
|
|
A set with attributes named |
|
A nested set, equivalent to |
|
A recursive set, equivalent to |
|
Lists with three elements. |
Operators |
|
|
String concatenation |
|
Integer addition |
|
Equality test (evaluates to |
|
Inequality test (evaluates to |
|
Boolean negation |
|
Attribute selection (evaluates to |
|
Attribute selection with default (evaluates to |
|
Merge two sets (attributes in the right-hand set taking precedence) |
Control structures |
|
|
Conditional expression |
|
Assertion check (evaluates to |
|
Variable definition |
|
Add all attributes from the given set to the scope (evaluates to |
Functions (lambdas) |
|
|
A function that expects an integer and returns it increased by 1 |
|
Curried function, equivalent to |
|
A function call (evaluates to 101) |
|
A function bound to a variable and subsequently called by name (evaluates to 103) |
|
A function that expects a set with required attributes |
|
A function that expects a set with required attribute |
|
A function that expects a set with required attributes |
|
A function that expects a set with required attributes |
Built-in functions |
|
|
Load and return Nix expression in given file |
|
Apply a function to every element of a list (evaluates to |
Data Types
Primitives
-
Strings can be written in three ways.
The most common way is to enclose the string between double quotes, e.g.,
"foo bar"
. Strings can span multiple lines. The special characters"
and\
and the character sequence${
must be escaped by prefixing them with a backslash (\
). Newlines, carriage returns and tabs can be written as\n
,\r
and\t
, respectively.You can include the results of other expressions into a string by enclosing them in
${ }
, a feature known as string interpolation.The second way to write string literals is as an indented string, which is enclosed between pairs of double single-quotes, like so:
'' This is the first line. This is the second line. This is the third line. ''
This kind of string literal intelligently strips indentation from the start of each line. To be precise, it strips from each line a number of spaces equal to the minimal indentation of the string as a whole (disregarding the indentation of empty lines). For instance, the first and second line are indented two spaces, while the third line is indented four spaces. Thus, two spaces are stripped from each line, so the resulting string is
"This is the first line.\nThis is the second line.\n This is the third line.\n"
Note that the whitespace and newline following the opening
''
is ignored if there is no non-whitespace text on the initial line.Indented strings support string interpolation.
Since
${
and''
have special meaning in indented strings, you need a way to quote them.$
can be escaped by prefixing it with''
(that is, two single quotes), i.e.,''$
.''
can be escaped by prefixing it with'
, i.e.,'''
.$
removes any special meaning from the following$
. Linefeed, carriage-return and tab characters can be written as''\n
,''\r
,''\t
, and''\
escapes any other character.Indented strings are primarily useful in that they allow multi-line string literals to follow the indentation of the enclosing Nix expression, and that less escaping is typically necessary for strings representing languages such as shell scripts and configuration files because
''
is much less common than"
. Example:stdenv.mkDerivation { ... postInstall = '' mkdir $out/bin $out/etc cp foo $out/bin echo "Hello World" > $out/etc/foo.conf ${if enableBar then "cp bar $out/bin" else ""} ''; ... }
Finally, as a convenience, URIs as defined in appendix B of RFC 2396 can be written as is, without quotes. For instance, the string
"http://example.org/foo.tar.bz2"
can also be written ashttp://example.org/foo.tar.bz2
. -
Numbers, which can be integers (like
123
) or floating point (like123.43
or.27e13
).See arithmetic and comparison operators for semantics.
-
Paths, e.g.,
/bin/sh
or./builder.sh
. A path must contain at least one slash to be recognised as such. For instance,builder.sh
is not a path: it's parsed as an expression that selects the attributesh
from the variablebuilder
. If the file name is relative, i.e., if it does not begin with a slash, it is made absolute at parse time relative to the directory of the Nix expression that contained it. For instance, if a Nix expression in/foo/bar/bla.nix
refers to../xyzzy/fnord.nix
, the absolute path is/foo/xyzzy/fnord.nix
.If the first component of a path is a
~
, it is interpreted as if the rest of the path were relative to the user's home directory. e.g.~/foo
would be equivalent to/home/edolstra/foo
for a user whose home directory is/home/edolstra
.Paths can also be specified between angle brackets, e.g.
<nixpkgs>
. This means that the directories listed in the environment variableNIX_PATH
will be searched for the given file or directory name.When an interpolated string evaluates to a path, the path is first copied into the Nix store and the resulting string is the store path of the newly created store object.
For instance, evaluating
"${./foo.txt}"
will causefoo.txt
in the current directory to be copied into the Nix store and result in the string"/nix/store/<hash>-foo.txt"
.Note that the Nix language assumes that all input files will remain unchanged while evaluating a Nix expression. For example, assume you used a file path in an interpolated string during a
nix repl
session. Later in the same session, after having changed the file contents, evaluating the interpolated string with the file path again might not return a new store path, since Nix might not re-read the file contents.Paths themselves, except those in angle brackets (
< >
), support string interpolation.At least one slash (
/
) must appear before any interpolated expression for the result to be recognized as a path.a.${foo}/b.${bar}
is a syntactically valid division operation../a.${foo}/b.${bar}
is a path. -
Booleans with values
true
andfalse
. -
The null value, denoted as
null
.
List
Lists are formed by enclosing a whitespace-separated list of values between square brackets. For example,
[ 123 ./foo.nix "abc" (f { x = y; }) ]
defines a list of four elements, the last being the result of a call to
the function f
. Note that function calls have to be enclosed in
parentheses. If they had been omitted, e.g.,
[ 123 ./foo.nix "abc" f { x = y; } ]
the result would be a list of five elements, the fourth one being a function and the fifth being a set.
Note that lists are only lazy in values, and they are strict in length.
Attribute Set
An attribute set is a collection of name-value-pairs (called attributes) enclosed in curly brackets ({ }
).
An attribute name can be an identifier or a string.
An identifier must start with a letter (a-z
, A-Z
) or underscore (_
), and can otherwise contain letters (a-z
, A-Z
), numbers (0-9
), underscores (_
), apostrophes ('
), or dashes (-
).
name = identifier | string
identifier ~[a-zA-Z_][a-zA-Z0-9_'-]*
Names and values are separated by an equal sign (=
).
Each value is an arbitrary expression terminated by a semicolon (;
).
attrset =
{
[ name=
expr;
]
...}
Attributes can appear in any order. An attribute name may only occur once.
Example:
{
x = 123;
text = "Hello";
y = f { bla = 456; };
}
This defines a set with attributes named x
, text
, y
.
Attributes can be accessed with the .
operator.
Example:
{ a = "Foo"; b = "Bar"; }.a
This evaluates to "Foo"
.
It is possible to provide a default value in an attribute selection using the or
keyword.
Example:
{ a = "Foo"; b = "Bar"; }.c or "Xyzzy"
{ a = "Foo"; b = "Bar"; }.c.d.e.f.g or "Xyzzy"
will both evaluate to "Xyzzy"
because there is no c
attribute in the set.
You can use arbitrary double-quoted strings as attribute names:
{ "$!@#?" = 123; }."$!@#?"
let bar = "bar"; in
{ "foo ${bar}" = 123; }."foo ${bar}"
Both will evaluate to 123
.
Attribute names support string interpolation:
let bar = "foo"; in
{ foo = 123; }.${bar}
let bar = "foo"; in
{ ${bar} = 123; }.foo
Both will evaluate to 123
.
In the special case where an attribute name inside of a set declaration
evaluates to null
(which is normally an error, as null
cannot be coerced to
a string), that attribute is simply not added to the set:
{ ${if foo then "bar" else null} = true; }
This will evaluate to {}
if foo
evaluates to false
.
A set that has a __functor
attribute whose value is callable (i.e. is
itself a function or a set with a __functor
attribute whose value is
callable) can be applied as if it were a function, with the set itself
passed in first , e.g.,
let add = { __functor = self: x: x + self.x; };
inc = add // { x = 1; };
in inc 1
evaluates to 2
. This can be used to attach metadata to a function
without the caller needing to treat it specially, or to implement a form
of object-oriented programming, for example.
Language Constructs
Recursive sets
Recursive sets are like normal attribute sets, but the attributes can refer to each other.
rec-attrset =
rec {
[ name=
expr;
]
...}
Example:
rec {
x = y;
y = 123;
}.x
This evaluates to 123
.
Note that without rec
the binding x = y;
would
refer to the variable y
in the surrounding scope, if one exists, and
would be invalid if no such variable exists. That is, in a normal
(non-recursive) set, attributes are not added to the lexical scope; in a
recursive set, they are.
Recursive sets of course introduce the danger of infinite recursion. For example, the expression
rec {
x = y;
y = x;
}.x
will crash with an infinite recursion encountered
error message.
Let-expressions
A let-expression allows you to define local variables for an expression.
let-in =
let
[ identifier = expr ]...in
expr
Example:
let
x = "foo";
y = "bar";
in x + y
This evaluates to "foobar"
.
Inheriting attributes
When defining an attribute set or in a let-expression it is often convenient to copy variables from the surrounding lexical scope (e.g., when you want to propagate attributes).
This can be shortened using the inherit
keyword.
Example:
let x = 123; in
{
inherit x;
y = 456;
}
is equivalent to
let x = 123; in
{
x = x;
y = 456;
}
and both evaluate to { x = 123; y = 456; }
.
Note
This works because
x
is added to the lexical scope by thelet
construct.
It is also possible to inherit attributes from another attribute set.
Example:
In this fragment from all-packages.nix
,
graphviz = (import ../tools/graphics/graphviz) {
inherit fetchurl stdenv libpng libjpeg expat x11 yacc;
inherit (xorg) libXaw;
};
xorg = {
libX11 = ...;
libXaw = ...;
...
}
libpng = ...;
libjpg = ...;
...
the set used in the function call to the function defined in
../tools/graphics/graphviz
inherits a number of variables from the
surrounding scope (fetchurl
... yacc
), but also inherits libXaw
(the X Athena Widgets) from the xorg
set.
Summarizing the fragment
...
inherit x y z;
inherit (src-set) a b c;
...
is equivalent to
...
x = x; y = y; z = z;
a = src-set.a; b = src-set.b; c = src-set.c;
...
when used while defining local variables in a let-expression or while defining a set.
Functions
Functions have the following form:
pattern: body
The pattern specifies what the argument of the function must look like, and binds variables in the body to (parts of) the argument. There are three kinds of patterns:
-
If a pattern is a single identifier, then the function matches any argument. Example:
let negate = x: !x; concat = x: y: x + y; in if negate true then concat "foo" "bar" else ""
Note that
concat
is a function that takes one argument and returns a function that takes another argument. This allows partial parameterisation (i.e., only filling some of the arguments of a function); e.g.,map (concat "foo") [ "bar" "bla" "abc" ]
evaluates to
[ "foobar" "foobla" "fooabc" ]
. -
A set pattern of the form
{ name1, name2, …, nameN }
matches a set containing the listed attributes, and binds the values of those attributes to variables in the function body. For example, the function{ x, y, z }: z + y + x
can only be called with a set containing exactly the attributes
x
,y
andz
. No other attributes are allowed. If you want to allow additional arguments, you can use an ellipsis (...
):{ x, y, z, ... }: z + y + x
This works on any set that contains at least the three named attributes.
It is possible to provide default values for attributes, in which case they are allowed to be missing. A default value is specified by writing
name ? e
, where e is an arbitrary expression. For example,{ x, y ? "foo", z ? "bar" }: z + y + x
specifies a function that only requires an attribute named
x
, but optionally acceptsy
andz
. -
An
@
-pattern provides a means of referring to the whole value being matched:args@{ x, y, z, ... }: z + y + x + args.a
but can also be written as:
{ x, y, z, ... } @ args: z + y + x + args.a
Here
args
is bound to the argument as passed, which is further matched against the pattern{ x, y, z, ... }
. The@
-pattern makes mainly sense with an ellipsis(...
) as you can access attribute names asa
, usingargs.a
, which was given as an additional attribute to the function.Warning
args@
binds the nameargs
to the attribute set that is passed to the function. In particular,args
does not include any default values specified with?
in the function's set pattern.For instance
let f = args@{ a ? 23, ... }: [ a args ]; in f {}
is equivalent to
let f = args @ { ... }: [ (args.a or 23) args ]; in f {}
and both expressions will evaluate to:
[ 23 {} ]
Note that functions do not have names. If you want to give them a name, you can bind them to an attribute, e.g.,
let concat = { x, y }: x + y;
in concat { x = "foo"; y = "bar"; }
Conditionals
Conditionals look like this:
if e1 then e2 else e3
where e1 is an expression that should evaluate to a Boolean value
(true
or false
).
Assertions
Assertions are generally used to check that certain requirements on or between features and dependencies hold. They look like this:
assert e1; e2
where e1 is an expression that should evaluate to a Boolean value. If
it evaluates to true
, e2 is returned; otherwise expression
evaluation is aborted and a backtrace is printed.
Here is a Nix expression for the Subversion package that shows how assertions can be used:.
{ localServer ? false
, httpServer ? false
, sslSupport ? false
, pythonBindings ? false
, javaSwigBindings ? false
, javahlBindings ? false
, stdenv, fetchurl
, openssl ? null, httpd ? null, db4 ? null, expat, swig ? null, j2sdk ? null
}:
assert localServer -> db4 != null; ①
assert httpServer -> httpd != null && httpd.expat == expat; ②
assert sslSupport -> openssl != null && (httpServer -> httpd.openssl == openssl); ③
assert pythonBindings -> swig != null && swig.pythonSupport;
assert javaSwigBindings -> swig != null && swig.javaSupport;
assert javahlBindings -> j2sdk != null;
stdenv.mkDerivation {
name = "subversion-1.1.1";
...
openssl = if sslSupport then openssl else null; ④
...
}
The points of interest are:
-
This assertion states that if Subversion is to have support for local repositories, then Berkeley DB is needed. So if the Subversion function is called with the
localServer
argument set totrue
but thedb4
argument set tonull
, then the evaluation fails.Note that
->
is the logical implication Boolean operation. -
This is a more subtle condition: if Subversion is built with Apache (
httpServer
) support, then the Expat library (an XML library) used by Subversion should be same as the one used by Apache. This is because in this configuration Subversion code ends up being linked with Apache code, and if the Expat libraries do not match, a build- or runtime link error or incompatibility might occur. -
This assertion says that in order for Subversion to have SSL support (so that it can access
https
URLs), an OpenSSL library must be passed. Additionally, it says that if Apache support is enabled, then Apache's OpenSSL should match Subversion's. (Note that if Apache support is not enabled, we don't care about Apache's OpenSSL.) -
The conditional here is not really related to assertions, but is worth pointing out: it ensures that if SSL support is disabled, then the Subversion derivation is not dependent on OpenSSL, even if a non-
null
value was passed. This prevents an unnecessary rebuild of Subversion if OpenSSL changes.
With-expressions
A with-expression,
with e1; e2
introduces the set e1 into the lexical scope of the expression e2. For instance,
let as = { x = "foo"; y = "bar"; };
in with as; x + y
evaluates to "foobar"
since the with
adds the x
and y
attributes
of as
to the lexical scope in the expression x + y
. The most common
use of with
is in conjunction with the import
function. E.g.,
with (import ./definitions.nix); ...
makes all attributes defined in the file definitions.nix
available as
if they were defined locally in a let
-expression.
The bindings introduced by with
do not shadow bindings introduced by
other means, e.g.
let a = 3; in with { a = 1; }; let a = 4; in with { a = 2; }; ...
establishes the same scope as
let a = 1; in let a = 2; in let a = 3; in let a = 4; in ...
Comments
Comments can be single-line, started with a #
character, or
inline/multi-line, enclosed within /* ... */
.
Context-dependent keywords
-
__curPos
-
A quasi-constant which will be replaced with an attribute set describing the location where
__curPos
was used, with attributesfile
,line
, andcolumn
. For example,import ./file.nix
will result in{ column = 1; file = "/path/to/some/file.nix"; line = 1; }
assuming
file.nix
contains nothing but__curPos
.In context without a source file (such as
nix-repl
), it will always be replaced withnull
:nix-repl> __curPos null
While it may vaguely look like a builtin, this is a very different beast that is handled directly by the parser. It thus cannot be shadowed, bound to a different name, and is also not available under
builtins
.nix-repl> let __curPos = "no"; in __curPos null
Despite this
__curPos
, much likeor
, may still be used as an identifier, it is only treated specially when it appears as an unqualified name:nix-repl> { __curPos = 1; }.__curPos 1
-
or
-
or
is used in Attribute selection, where it is a keyword.However, it is not a keyword in some other contexts, and can be used as a binding name in attribute sets, let-bindings, non-initial function application position, and as a label in attribute paths.
Its use as anything other than a keyword is discouraged.
String interpolation
String interpolation is a language feature where a string, path, or attribute name can contain expressions enclosed in ${ }
(dollar-sign with curly brackets).
Such a string is an interpolated string, and an expression inside is an interpolated expression.
Interpolated expressions must evaluate to one of the following:
- a string
- a path
- a derivation
Examples
String
Rather than writing
"--with-freetype2-library=" + freetype + "/lib"
(where freetype
is a derivation), you can instead write
"--with-freetype2-library=${freetype}/lib"
The latter is automatically translated to the former.
A more complicated example (from the Nix expression for Qt):
configureFlags = "
-system-zlib -system-libpng -system-libjpeg
${if openglSupport then "-dlopen-opengl
-L${mesa}/lib -I${mesa}/include
-L${libXmu}/lib -I${libXmu}/include" else ""}
${if threadSupport then "-thread" else "-no-thread"}
";
Note that Nix expressions and strings can be arbitrarily nested;
in this case the outer string contains various interpolated expressions that themselves contain strings (e.g., "-thread"
), some of which in turn contain interpolated expressions (e.g., ${mesa}
).
Path
Rather than writing
./. + "/" + foo + "-" + bar + ".nix"
or
./. + "/${foo}-${bar}.nix"
you can instead write
./${foo}-${bar}.nix
Attribute name
Attribute names can be created dynamically with string interpolation:
let name = "foo"; in
{
${name} = "bar";
}
{ foo = "bar"; }
Operators
Name | Syntax | Associativity | Precedence |
---|---|---|---|
Attribute selection | attrset . attrpath [ or expr ] | none | 1 |
Function application | func expr | left | 2 |
Arithmetic negation | - number | none | 3 |
Has attribute | attrset ? attrpath | none | 4 |
List concatenation | list ++ list | right | 5 |
Multiplication | number * number | left | 6 |
Division | number / number | left | 6 |
Subtraction | number - number | left | 7 |
Addition | number + number | left | 7 |
String concatenation | string + string | left | 7 |
Path concatenation | path + path | left | 7 |
Path and string concatenation | path + string | left | 7 |
String and path concatenation | string + path | left | 7 |
Logical negation (NOT ) | ! bool | none | 8 |
Update | attrset // attrset | right | 9 |
Less than | expr < expr | none | 10 |
Less than or equal to | expr <= expr | none | 10 |
Greater than | expr > expr | none | 10 |
Greater than or equal to | expr >= expr | none | 10 |
Equality | expr == expr | none | 11 |
Inequality | expr != expr | none | 11 |
Logical conjunction (AND ) | bool && bool | left | 12 |
Logical disjunction (OR ) | bool || bool | left | 13 |
Logical implication | bool -> bool | none | 14 |
Attribute selection
attrset
.
attrpath [or
expr ]
Select the attribute denoted by attribute path attrpath from attribute set attrset.
If the attribute doesn’t exist, return the expr after or
if provided, otherwise abort evaluation.
An attribute path is a dot-separated list of attribute names.
attrpath = name [
.
name ]...
Has attribute
attrset
?
attrpath
Test whether attribute set attrset contains the attribute denoted by attrpath. The result is a Boolean value.
Arithmetic
Numbers are type-compatible: Pure integer operations will always return integers, whereas any operation involving at least one floating point number return a floating point number.
See also Comparison and Equality.
The +
operator is overloaded to also work on strings and paths.
String concatenation
string
+
string
Concatenate two strings and merge their string contexts.
Path concatenation
path
+
path
Concatenate two paths. The result is a path.
Path and string concatenation
path + string
Concatenate path with string. The result is a path.
Note
The string must not have a string context that refers to a store path.
String and path concatenation
string + path
Concatenate string with path. The result is a string.
Important
The file or directory at path must exist and is copied to the store. The path appears in the result as the corresponding store path.
Update
attrset1 // attrset2
Update attribute set attrset1 with names and values from attrset2.
The returned attribute set will have of all the attributes in attrset1 and attrset2. If an attribute name is present in both, the attribute value from the latter is taken.
Comparison
Comparison is
- arithmetic for numbers
- lexicographic for strings and paths
- item-wise lexicographic for lists: elements at the same index in both lists are compared according to their type and skipped if they are equal.
All comparison operators are implemented in terms of <
, and the following equivalencies hold:
comparison | implementation |
---|---|
a <= b | ! ( b < a ) |
a > b | b < a |
a >= b | ! ( a < b ) |
Equality
- Attribute sets and lists are compared recursively, and therefore are fully evaluated.
- Comparison of functions always returns
false
. - Numbers are type-compatible, see arithmetic operators.
- Floating point numbers only differ up to a limited precision.
Logical implication
Equivalent to !
b1 ||
b2.
Derivations
The most important built-in function is derivation
, which is used to
describe a single derivation (a build task). It takes as input a set,
the attributes of which specify the inputs of the build.
-
There must be an attribute named
system
whose value must be a string specifying a Nix system type, such as"i686-linux"
or"x86_64-darwin"
. (To figure out your system type, runnix -vv --version
.) The build can only be performed on a machine and operating system matching the system type. (Nix can automatically forward builds for other platforms by forwarding them to other machines.) -
There must be an attribute named
name
whose value must be a string. This is used as a symbolic name for the package bynix-env
, and it is appended to the output paths of the derivation. -
There must be an attribute named
builder
that identifies the program that is executed to perform the build. It can be either a derivation or a source (a local file reference, e.g.,./builder.sh
). -
Every attribute is passed as an environment variable to the builder. Attribute values are translated to environment variables as follows:
-
Strings and numbers are just passed verbatim.
-
A path (e.g.,
../foo/sources.tar
) causes the referenced file to be copied to the store; its location in the store is put in the environment variable. The idea is that all sources should reside in the Nix store, since all inputs to a derivation should reside in the Nix store. -
A derivation causes that derivation to be built prior to the present derivation; its default output path is put in the environment variable.
-
Lists of the previous types are also allowed. They are simply concatenated, separated by spaces.
-
true
is passed as the string1
,false
andnull
are passed as an empty string.
-
-
The optional attribute
args
specifies command-line arguments to be passed to the builder. It should be a list. -
The optional attribute
outputs
specifies a list of symbolic outputs of the derivation. By default, a derivation produces a single output path, denoted asout
. However, derivations can produce multiple output paths. This is useful because it allows outputs to be downloaded or garbage-collected separately. For instance, imagine a library package that provides a dynamic library, header files, and documentation. A program that links against the library doesn’t need the header files and documentation at runtime, and it doesn’t need the documentation at build time. Thus, the library package could specify:outputs = [ "lib" "headers" "doc" ];
This will cause Lix to pass environment variables
lib
,headers
anddoc
to the builder containing the intended store paths of each output. The builder would typically do something like./configure \ --libdir=$lib/lib \ --includedir=$headers/include \ --docdir=$doc/share/doc
for an Autoconf-style package. You can refer to each output of a derivation by selecting it as an attribute, e.g.
buildInputs = [ pkg.lib pkg.headers ];
The first element of
outputs
determines the default output. Thus, you could also writebuildInputs = [ pkg pkg.headers ];
since
pkg
is equivalent topkg.lib
.
The function mkDerivation
in the Nixpkgs standard environment is a
wrapper around derivation
that adds a default value for system
and
always uses Bash as the builder, to which the supplied builder is passed
as a command-line argument. See the Nixpkgs manual for details.
The builder is executed as follows:
-
A temporary directory is created under the directory specified by
TMPDIR
(default/tmp
) where the build will take place. The current directory is changed to this directory. -
The environment is cleared and set to the derivation attributes, as specified above.
-
In addition, the following variables are set:
-
NIX_BUILD_TOP
contains the path of the temporary directory for this build. -
Also,
TMPDIR
,TEMPDIR
,TMP
,TEMP
are set to point to the temporary directory. This is to prevent the builder from accidentally writing temporary files anywhere else. Doing so might cause interference by other processes. -
PATH
is set to/path-not-set
to prevent shells from initialising it to their built-in default value. -
HOME
is set to/homeless-shelter
to prevent programs from using/etc/passwd
or the like to find the user's home directory, which could cause impurity. Usually, whenHOME
is set, it is used as the location of the home directory, even if it points to a non-existent path. -
NIX_STORE
is set to the path of the top-level Nix store directory (typically,/nix/store
). -
NIX_ATTRS_JSON_FILE
&NIX_ATTRS_SH_FILE
if__structuredAttrs
is set totrue
for the derivation. A detailed explanation of this behavior can be found in the section about structured attrs. -
For each output declared in
outputs
, the corresponding environment variable is set to point to the intended path in the Nix store for that output. Each output path is a concatenation of the cryptographic hash of all build inputs, thename
attribute and the output name. (The output name is omitted if it’sout
.)
-
-
If an output path already exists, it is removed. Also, locks are acquired to prevent multiple Lix instances from performing the same build at the same time.
-
A log of the combined standard output and error is written to
/nix/var/log/nix
. -
The builder is executed with the arguments specified by the attribute
args
. If it exits with exit code 0, it is considered to have succeeded. -
The temporary directory is removed (unless the
-K
option was specified). -
If the build was successful, Lix scans each output path for references to input paths by looking for the hash parts of the input paths. Since these are potential runtime dependencies, Lix registers them as dependencies of the output paths.
-
After the build, Lix sets the last-modified timestamp on all files in the build result to 1 (00:00:01 1/1/1970 UTC), sets the group to the default group, and sets the mode of the file to 0444 or 0555 (i.e., read-only, with execute permission enabled if the file was originally executable). Note that possible
setuid
andsetgid
bits are cleared. Setuid and setgid programs are not currently supported by Lix. This is because the Lix archives used in deployment have no concept of ownership information, and because it makes the build result dependent on the user performing the build.
Advanced Attributes
Derivations can declare some infrequently used optional attributes.
-
allowedReferences
The optional attributeallowedReferences
specifies a list of legal references (dependencies) of the output of the builder. For example,allowedReferences = [];
enforces that the output of a derivation cannot have any runtime dependencies on its inputs. To allow an output to have a runtime dependency on itself, use
"out"
as a list item. This is used in NixOS to check that generated files such as initial ramdisks for booting Linux don’t have accidental dependencies on other paths in the Nix store. -
allowedRequisites
This attribute is similar toallowedReferences
, but it specifies the legal requisites of the whole closure, so all the dependencies recursively. For example,allowedRequisites = [ foobar ];
enforces that the output of a derivation cannot have any other runtime dependency than
foobar
, and in addition it enforces thatfoobar
itself doesn't introduce any other dependency itself. -
disallowedReferences
The optional attributedisallowedReferences
specifies a list of illegal references (dependencies) of the output of the builder. For example,disallowedReferences = [ foo ];
enforces that the output of a derivation cannot have a direct runtime dependencies on the derivation
foo
. -
disallowedRequisites
This attribute is similar todisallowedReferences
, but it specifies illegal requisites for the whole closure, so all the dependencies recursively. For example,disallowedRequisites = [ foobar ];
enforces that the output of a derivation cannot have any runtime dependency on
foobar
or any other derivation depending recursively onfoobar
. -
exportReferencesGraph
This attribute allows builders access to the references graph of their inputs. The attribute is a list of inputs in the Nix store whose references graph the builder needs to know. The value of this attribute should be a list of pairs[ name1 path1 name2 path2 ... ]
. The references graph of each pathN will be stored in a text file nameN in the temporary build directory. The text files have the format used bynix-store --register-validity
(with the deriver fields left empty). For example, when the following derivation is built:derivation { ... exportReferencesGraph = [ "libfoo-graph" libfoo ]; };
the references graph of
libfoo
is placed in the filelibfoo-graph
in the temporary build directory.exportReferencesGraph
is useful for builders that want to do something with the closure of a store path. Examples include the builders in NixOS that generate the initial ramdisk for booting Linux (acpio
archive containing the closure of the boot script) and the ISO-9660 image for the installation CD (which is populated with a Nix store containing the closure of a bootable NixOS configuration). -
impureEnvVars
This attribute allows you to specify a list of environment variables that should be passed from the environment of the calling user to the builder. Usually, the environment is cleared completely when the builder is executed, but with this attribute you can allow specific environment variables to be passed unmodified. For example,fetchurl
in Nixpkgs has the lineimpureEnvVars = [ "http_proxy" "https_proxy" ... ];
to make it use the proxy server configuration specified by the user in the environment variables
http_proxy
and friends.This attribute is only allowed in fixed-output derivations (see below), where impurities such as these are okay since (the hash of) the output is known in advance. It is ignored for all other derivations.
Warning
impureEnvVars
implementation takes environment variables from the current builder process. When a daemon is building its environmental variables are used. Without the daemon, the environmental variables come from the environment of thenix-build
. -
outputHash
;outputHashAlgo
;outputHashMode
These attributes declare that the derivation is a so-called fixed-output derivation, which means that a cryptographic hash of the output is already known in advance. When the build of a fixed-output derivation finishes, Lix computes the cryptographic hash of the output and compares it to the hash declared with these attributes. If there is a mismatch, the build fails.The rationale for fixed-output derivations is derivations such as those produced by the
fetchurl
function. This function downloads a file from a given URL. To ensure that the downloaded file has not been modified, the caller must also specify a cryptographic hash of the file. For example,fetchurl { url = "http://ftp.gnu.org/pub/gnu/hello/hello-2.1.1.tar.gz"; sha256 = "1md7jsfd8pa45z73bz1kszpp01yw6x5ljkjk2hx7wl800any6465"; }
It sometimes happens that the URL of the file changes, e.g., because servers are reorganised or no longer available. We then must update the call to
fetchurl
, e.g.,fetchurl { url = "ftp://ftp.nluug.nl/pub/gnu/hello/hello-2.1.1.tar.gz"; sha256 = "1md7jsfd8pa45z73bz1kszpp01yw6x5ljkjk2hx7wl800any6465"; }
If a
fetchurl
derivation was treated like a normal derivation, the output paths of the derivation and all derivations depending on it would change. For instance, if we were to change the URL of the Glibc source distribution in Nixpkgs (a package on which almost all other packages depend) massive rebuilds would be needed. This is unfortunate for a change which we know cannot have a real effect as it propagates upwards through the dependency graph.For fixed-output derivations, on the other hand, the name of the output path only depends on the
outputHash*
andname
attributes, while all other attributes are ignored for the purpose of computing the output path. (Thename
attribute is included because it is part of the path.)As an example, here is the (simplified) Nix expression for
fetchurl
:{ stdenv, curl }: # The curl program is used for downloading. { url, sha256 }: stdenv.mkDerivation { name = baseNameOf (toString url); builder = ./builder.sh; buildInputs = [ curl ]; # This is a fixed-output derivation; the output must be a regular # file with SHA256 hash sha256. outputHashMode = "flat"; outputHashAlgo = "sha256"; outputHash = sha256; inherit url; }
The
outputHashAlgo
attribute specifies the hash algorithm used to compute the hash. It can currently be"sha1"
,"sha256"
or"sha512"
.The
outputHashMode
attribute determines how the hash is computed. It must be one of the following two values:-
"flat"
The output must be a non-executable regular file. If it isn’t, the build fails. The hash is simply computed over the contents of that file (so it’s equal to what Unix commands likesha256sum
orsha1sum
produce).This is the default.
-
"recursive"
The hash is computed over the NAR archive dump of the output (i.e., the result ofnix-store --dump
). In this case, the output can be anything, including a directory tree.
The
outputHash
attribute, finally, must be a string containing the hash in either hexadecimal or base-32 notation. (See thenix-hash
command for information about converting to and from base-32 notation.) -
-
Warning This attribute is part of an experimental feature.
To use this attribute, you must enable the
ca-derivations
experimental feature. For example, in nix.conf you could add:extra-experimental-features = ca-derivations
If this attribute is set to
true
, then the derivation outputs will be stored in a content-addressed location rather than the traditional input-addressed one.Setting this attribute also requires setting
outputHashMode
andoutputHashAlgo
like for fixed-output derivations (see above). -
passAsFile
A list of names of attributes that should be passed via files rather than environment variables. For example, if you havepassAsFile = ["big"]; big = "a very long string";
then when the builder runs, the environment variable
bigPath
will contain the absolute path to a temporary file containinga very long string
. That is, for any attribute x listed inpassAsFile
, Lix will pass an environment variablexPath
holding the path of the file containing the value of attribute x. This is useful when you need to pass large strings to a builder, since most operating systems impose a limit on the size of the environment (typically, a few hundred kilobyte). -
preferLocalBuild
If this attribute is set totrue
and distributed building is enabled, then, if possible, the derivation will be built locally instead of forwarded to a remote machine. This is appropriate for trivial builders where the cost of doing a download or remote build would exceed the cost of building locally. -
allowSubstitutes
If this attribute is set tofalse
, then Lix will always build this derivation; it will not try to substitute its outputs. This is useful for very trivial derivations (such aswriteText
in Nixpkgs) that are cheaper to build than to substitute from a binary cache.You may disable the effects of this attibute by enabling the
always-allow-substitutes
configuration option in Lix.Note
You need to have a builder configured which satisfies the derivation’s
system
attribute, since the derivation cannot be substituted. Thus it is usually a good idea to alignsystem
withbuiltins.currentSystem
when settingallowSubstitutes
tofalse
. For most trivial derivations this should be the case. -
__structuredAttrs
If the special attribute__structuredAttrs
is set totrue
, the other derivation attributes are serialised into a file in JSON format. The environment variableNIX_ATTRS_JSON_FILE
points to the exact location of that file both in a build and anix-shell
. This obviates the need forpassAsFile
since JSON files have no size restrictions, unlike process environments.It also makes it possible to tweak derivation settings in a structured way; see
outputChecks
for example.As a convenience to Bash builders, Lix writes a script that initialises shell variables corresponding to all attributes that are representable in Bash. The environment variable
NIX_ATTRS_SH_FILE
points to the exact location of the script, both in a build and anix-shell
. This includes non-nested (associative) arrays. For example, the attributehardening.format = true
ends up as the Bash associative array element${hardening[format]}
. -
outputChecks
When using structured attributes, theoutputChecks
attribute allows defining checks per-output.In addition to
allowedReferences
,allowedRequisites
,disallowedReferences
anddisallowedRequisites
, the following attributes are available:maxSize
defines the maximum size of the resulting store object.maxClosureSize
defines the maximum size of the output's closure.ignoreSelfRefs
controls whether self-references should be considered when checking for allowed references/requisites.
Example:
__structuredAttrs = true; outputChecks.out = { # The closure of 'out' must not be larger than 256 MiB. maxClosureSize = 256 * 1024 * 1024; # It must not refer to the C compiler or to the 'dev' output. disallowedRequisites = [ stdenv.cc "dev" ]; }; outputChecks.dev = { # The 'dev' output must not be larger than 128 KiB. maxSize = 128 * 1024; };
-
When using structured attributes, the attribute
unsafeDiscardReferences
is an attribute set with a boolean value for each output name. If set totrue
, it disables scanning the output for runtime dependencies.Example:
__structuredAttrs = true; unsafeDiscardReferences.out = true;
This is useful, for example, when generating self-contained filesystem images with their own embedded Nix store: hashes found inside such an image refer to the embedded store and not to the host's Nix store.
Built-in Constants
These constants are built into the Nix language evaluator:
-
builtins
(set) -
Contains all the built-in functions and values.
Since built-in functions were added over time, testing for attributes in
builtins
can be used for graceful fallback on older Nix installations:# if hasContext is not available, we assume `s` has a context if builtins ? hasContext then builtins.hasContext s else true
-
currentSystem
(string) -
The value of the
eval-system
or elsesystem
configuration option.It can be used to set the
system
attribute forbuiltins.derivation
such that the resulting derivation can be built on the same system that evaluates the Nix expression:builtins.derivation { # ... system = builtins.currentSystem; }
It can be overridden in order to create derivations for different system than the current one:
$ nix-instantiate --system "mips64-linux" --eval --expr 'builtins.currentSystem' "mips64-linux"
Note
Not available in pure evaluation mode.
-
currentTime
(integer) -
Return the Unix time at first evaluation. Repeated references to that name will re-use the initially obtained value.
Example:
$ nix repl Welcome to Nix 2.15.1 Type :? for help. nix-repl> builtins.currentTime 1683705525 nix-repl> builtins.currentTime 1683705525
The store path of a derivation depending on
currentTime
will differ for each evaluation, unless both evaluatebuiltins.currentTime
in the same second.Note
Not available in pure evaluation mode.
-
false
(Boolean) -
Primitive value.
It can be returned by comparison operators and used in conditional expressions.
The name
false
is not special, and can be shadowed:nix-repl> let false = 1; in false 1
-
langVersion
(integer) -
The legacy version of the Nix language. Always is
6
on Lix, matching Nix 2.18.Code in the Nix language should use other means of feature detection like detecting the presence of builtins, rather than trying to find the version of the Nix implementation, as there may be other Nix implementations with different feature combinations.
If the feature you want to write compatibility code for cannot be detected by any means, please file a Lix bug.
-
nixPath
(list) -
The search path used to resolve angle bracket path lookups.
Angle bracket expressions can be desugared using this and
builtins.findFile
:<nixpkgs>
is equivalent to:
builtins.findFile builtins.nixPath "nixpkgs"
-
nixVersion
(string) -
Legacy version of Nix. Always returns "2.18.3-lix" on Lix.
Code in the Nix language should use other means of feature detection like detecting the presence of builtins, rather than trying to find the version of the Nix implementation, as there may be other Nix implementations with different feature combinations.
If the feature you want to write compatibility code for cannot be detected by any means, please file a Lix bug.
-
null
(null) -
Primitive value.
The name
null
is not special, and can be shadowed:nix-repl> let null = 1; in null 1
-
storeDir
(string) -
Logical file system location of the Nix store currently in use.
This value is determined by the
store
parameter in Store URLs:$ nix-instantiate --store 'dummy://?store=/blah' --eval --expr builtins.storeDir "/blah"
-
true
(Boolean) -
Primitive value.
It can be returned by comparison operators and used in conditional expressions.
The name
true
is not special, and can be shadowed:nix-repl> let true = 1; in true 1
Things which might be mistaken for constants
__curPos
-
This is not a constant but a context-dependent keyword
Built-in Functions
This section lists the functions built into the Nix language evaluator.
All built-in functions are available through the global builtins
constant.
For convenience, some built-ins can be accessed directly:
derivation attrs
derivation is described in its own section.
-
abort s
-
Abort Nix expression evaluation and print the error message s.
-
add e1 e2
-
Return the sum of the numbers e1 and e2.
-
addDrvOutputDependencies s
-
Create a copy of the given string where a single constant string context element is turned into a "derivation deep" string context element.
The store path that is the constant string context element should point to a valid derivation, and end in
.drv
.The original string context element must not be empty or have multiple elements, and it must not have any other type of element other than a constant or derivation deep element. The latter is supported so this function is idempotent.
This is the opposite of
builtins.unsafeDiscardOutputDependency
. -
all pred list
-
Return
true
if the function pred returnstrue
for all elements of list, andfalse
otherwise. -
any pred list
-
Return
true
if the function pred returnstrue
for at least one element of list, andfalse
otherwise. -
attrNames set
-
Return the names of the attributes in the set set in an alphabetically sorted list. For instance,
builtins.attrNames { y = 1; x = "foo"; }
evaluates to[ "x" "y" ]
. -
attrValues set
-
Return the values of the attributes in the set set in the order corresponding to the sorted attribute names.
-
baseNameOf s
-
Return the base name of the string s, that is, everything following the final slash in the string. This is similar to the GNU
basename
command. -
bitAnd e1 e2
-
Return the bitwise AND of the integers e1 and e2.
-
bitOr e1 e2
-
Return the bitwise OR of the integers e1 and e2.
-
bitXor e1 e2
-
Return the bitwise XOR of the integers e1 and e2.
-
break v
-
In debug mode (enabled using
--debugger
), pause Nix expression evaluation and enter the REPL. Otherwise, return the argumentv
. -
catAttrs attr list
-
Collect each attribute named attr from a list of attribute sets. Attrsets that don't contain the named attribute are ignored. For example,
builtins.catAttrs "a" [{a = 1;} {b = 0;} {a = 2;}]
evaluates to
[1 2]
. -
ceil double
-
Converts an IEEE-754 double-precision floating-point number (double) to the next higher integer.
If the datatype is neither an integer nor a "float", an evaluation error will be thrown.
-
compareVersions s1 s2
-
Compare two strings representing versions and return
-1
if version s1 is older than version s2,0
if they are the same, and1
if s1 is newer than s2. The version comparison algorithm is the same as the one used bynix-env -u
. -
concatLists lists
-
Concatenate a list of lists into a single list.
-
concatMap f list
-
This function is equivalent to
builtins.concatLists (map f list)
but is more efficient. -
concatStringsSep separator list
-
Concatenate a list of strings with a separator between each element, e.g.
concatStringsSep "/" ["usr" "local" "bin"] == "usr/local/bin"
. -
deepSeq e1 e2
-
This is like
seq e1 e2
, except that e1 is evaluated deeply: if it’s a list or set, its elements or attributes are also evaluated recursively. -
dirOf s
-
Return the directory part of the string s, that is, everything before the final slash in the string. This is similar to the GNU
dirname
command. -
div e1 e2
-
Return the quotient of the numbers e1 and e2.
-
elem x xs
-
Return
true
if a value equal to x occurs in the list xs, andfalse
otherwise. -
elemAt xs n
-
Return element n from the list xs. Elements are counted starting from 0. A fatal error occurs if the index is out of bounds.
-
fetchClosure args
-
Fetch a store path closure from a binary cache, and return the store path as a string with context.
This function can be invoked in three ways, that we will discuss in order of preference.
Fetch a content-addressed store path
Example:
builtins.fetchClosure { fromStore = "https://cache.nixos.org"; fromPath = /nix/store/ldbhlwhh39wha58rm61bkiiwm6j7211j-git-2.33.1; }
This is the simplest invocation, and it does not require the user of the expression to configure
trusted-public-keys
to ensure their authenticity.If your store path is input addressed instead of content addressed, consider the other two invocations.
Fetch any store path and rewrite it to a fully content-addressed store path
Example:
builtins.fetchClosure { fromStore = "https://cache.nixos.org"; fromPath = /nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1; toPath = /nix/store/ldbhlwhh39wha58rm61bkiiwm6j7211j-git-2.33.1; }
This example fetches
/nix/store/r2jd...
from the specified binary cache, and rewrites it into the content-addressed store path/nix/store/ldbh...
.Like the previous example, no extra configuration or privileges are required.
To find out the correct value for
toPath
given afromPath
, usenix store make-content-addressed
:# nix store make-content-addressed --from https://cache.nixos.org /nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1 rewrote '/nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1' to '/nix/store/ldbhlwhh39wha58rm61bkiiwm6j7211j-git-2.33.1'
Alternatively, set
toPath = ""
and find the correcttoPath
in the error message.Fetch an input-addressed store path as is
Example:
builtins.fetchClosure { fromStore = "https://cache.nixos.org"; fromPath = /nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1; inputAddressed = true; }
It is possible to fetch an input-addressed store path and return it as is. However, this is the least preferred way of invoking
fetchClosure
, because it requires that the input-addressed paths are trusted by the Lix configuration.builtins.storePath
fetchClosure
is similar tobuiltins.storePath
in that it allows you to use a previously built store path in a Nix expression. However,fetchClosure
is more reproducible because it specifies a binary cache from which the path can be fetched. Also, using content-addressed store paths does not require users to configuretrusted-public-keys
to ensure their authenticity.This function is only available if the fetch-closure experimental feature is enabled.
-
fetchGit args
-
Fetch a path from git. args can be a URL, in which case the HEAD of the repo at that URL is fetched. Otherwise, it can be an attribute with the following attributes (all except
url
optional):-
url
The URL of the repo.
-
name
(default: basename of the URL)The name of the directory the repo should be exported to in the store.
-
rev
(default: the tip ofref
)The Git revision to fetch. This is typically a commit hash.
-
ref
(default:HEAD
)The Git reference under which to look for the requested revision. This is often a branch or tag name.
By default, the
ref
value is prefixed withrefs/heads/
. As of 2.3.0, Nix will not prefixrefs/heads/
ifref
starts withrefs/
. -
submodules
(default:false
)A Boolean parameter that specifies whether submodules should be checked out.
-
shallow
(default:false
)A Boolean parameter that specifies whether fetching from a shallow remote repository is allowed. This still performs a full clone of what is available on the remote.
-
allRefs
Whether to fetch all references of the repository. With this argument being true, it's possible to load a
rev
from anyref
(by default onlyrev
s from the specifiedref
are supported).
Here are some examples of how to use
fetchGit
.-
To fetch a private repository over SSH:
builtins.fetchGit { url = "git@github.com:my-secret/repository.git"; ref = "master"; rev = "adab8b916a45068c044658c4158d81878f9ed1c3"; }
-
To fetch an arbitrary reference:
builtins.fetchGit { url = "https://github.com/NixOS/nix.git"; ref = "refs/heads/0.5-release"; }
-
If the revision you're looking for is in the default branch of the git repository you don't strictly need to specify the branch name in the
ref
attribute.However, if the revision you're looking for is in a future branch for the non-default branch you will need to specify the the
ref
attribute as well.builtins.fetchGit { url = "https://github.com/nixos/nix.git"; rev = "841fcbd04755c7a2865c51c1e2d3b045976b7452"; ref = "1.11-maintenance"; }
Note
It is nice to always specify the branch which a revision belongs to. Without the branch being specified, the fetcher might fail if the default branch changes. Additionally, it can be confusing to try a commit from a non-default branch and see the fetch fail. If the branch is specified the fault is much more obvious.
-
If the revision you're looking for is in the default branch of the git repository you may omit the
ref
attribute.builtins.fetchGit { url = "https://github.com/nixos/nix.git"; rev = "841fcbd04755c7a2865c51c1e2d3b045976b7452"; }
-
To fetch a specific tag:
builtins.fetchGit { url = "https://github.com/nixos/nix.git"; ref = "refs/tags/1.9"; }
-
To fetch the latest version of a remote branch:
builtins.fetchGit { url = "ssh://git@github.com/nixos/nix.git"; ref = "master"; }
Nix will refetch the branch according to the
tarball-ttl
setting.This behavior is disabled in pure evaluation mode.
-
To fetch the content of a checked-out work directory:
builtins.fetchGit ./work-dir
If the URL points to a local directory, and no
ref
orrev
is given,fetchGit
will use the current content of the checked-out files, even if they are not committed or added to Git's index. It will only consider files added to the Git repository, as listed bygit ls-files
. -
-
fetchTarball args
-
Download the specified URL, unpack it and return the path of the unpacked tree. The file must be a tape archive (
.tar
) compressed withgzip
,bzip2
orxz
. The top-level path component of the files in the tarball is removed, so it is best if the tarball contains a single directory at top level. The typical use of the function is to obtain external Nix expression dependencies, such as a particular version of Nixpkgs, e.g.with import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/nixos-14.12.tar.gz") {}; stdenv.mkDerivation { … }
The fetched tarball is cached for a certain amount of time (1 hour by default) in
~/.cache/nix/tarballs/
. You can change the cache timeout either on the command line with--tarball-ttl
number-of-seconds or in the Nix configuration file by adding the linetarball-ttl =
number-of-seconds.Note that when obtaining the hash with
nix-prefetch-url
the option--unpack
is required.This function can also verify the contents against a hash. In that case, the function takes a set instead of a URL. The set requires the attribute
url
and the attributesha256
, e.g.with import (fetchTarball { url = "https://github.com/NixOS/nixpkgs/archive/nixos-14.12.tar.gz"; sha256 = "1jppksrfvbk5ypiqdz4cddxdl8z6zyzdb2srq8fcffr327ld5jj2"; }) {}; stdenv.mkDerivation { … }
Not available in restricted evaluation mode.
-
fetchurl url
-
Download the specified URL and return the path of the downloaded file.
Not available in restricted evaluation mode.
-
filter f list
-
Return a list consisting of the elements of list for which the function f returns
true
. -
filterSource e1 e2
-
Warning
filterSource
should not be used to filter store paths. SincefilterSource
uses the name of the input directory while naming the output directory, doing so will produce a directory name in the form of<hash2>-<hash>-<name>
, where<hash>-<name>
is the name of the input directory. Since<hash>
depends on the unfiltered directory, the name of the output directory will indirectly depend on files that are filtered out by the function. This will trigger a rebuild even when a filtered out file is changed. Usebuiltins.path
instead, which allows specifying the name of the output directory.This function allows you to copy sources into the Nix store while filtering certain files. For instance, suppose that you want to use the directory
source-dir
as an input to a Nix expression, e.g.stdenv.mkDerivation { ... src = ./source-dir; }
However, if
source-dir
is a Subversion working copy, then all those annoying.svn
subdirectories will also be copied to the store. Worse, the contents of those directories may change a lot, causing lots of spurious rebuilds. WithfilterSource
you can filter out the.svn
directories:src = builtins.filterSource (path: type: type != "directory" || baseNameOf path != ".svn") ./source-dir;
Thus, the first argument e1 must be a predicate function that is called for each regular file, directory or symlink in the source tree e2. If the function returns
true
, the file is copied to the Nix store, otherwise it is omitted. The function is called with two arguments. The first is the full path of the file. The second is a string that identifies the type of the file, which is either"regular"
,"directory"
,"symlink"
or"unknown"
(for other kinds of files such as device nodes or fifos — but note that those cannot be copied to the Nix store, so if the predicate returnstrue
for them, the copy will fail). If you exclude a directory, the entire corresponding subtree of e2 will be excluded. -
findFile search path lookup path
-
Look up the given path with the given search path.
A search path is represented list of attribute sets with two attributes,
prefix
, andpath
.prefix
is a relative path.path
denotes a file system location; the exact syntax depends on the command line interface.Examples of search path attribute sets:
-
{ prefix = "nixos-config"; path = "/etc/nixos/configuration.nix"; }
-
{ prefix = ""; path = "/nix/var/nix/profiles/per-user/root/channels"; }
The lookup algorithm checks each entry until a match is found, returning a path value of the match.
This is the process for each entry: If the lookup path matches
prefix
, then the remainder of the lookup path (the "suffix") is searched for within the directory denoted bypatch
. Note that thepath
may need to be downloaded at this point to look inside. If the suffix is found inside that directory, then the entry is a match; the combined absolute path of the directory (now downloaded if need be) and the suffix is returned.The syntax
<nixpkgs>
is equivalent to:
builtins.findFile builtins.nixPath "nixpkgs"
-
-
flakeRefToString attrs
-
Convert a flake reference from attribute set format to URL format.
For example:
builtins.flakeRefToString { dir = "lib"; owner = "NixOS"; ref = "23.05"; repo = "nixpkgs"; type = "github"; }
evaluates to
"github:NixOS/nixpkgs/23.05?dir=lib"
This function is only available if the flakes experimental feature is enabled.
-
floor double
-
Converts an IEEE-754 double-precision floating-point number (double) to the next lower integer.
If the datatype is neither an integer nor a "float", an evaluation error will be thrown.
-
foldl' op nul list
-
Reduce a list by applying a binary operator, from left to right, e.g.
foldl' op nul [x0 x1 x2 ...] = op (op (op nul x0) x1) x2) ...
. For example,foldl' (x: y: x + y) 0 [1 2 3]
evaluates to 6. The return value of each application ofop
is evaluated immediately, even for intermediate values. -
fromJSON e
-
Convert a JSON string to a Nix value. For example,
builtins.fromJSON ''{"x": [1, 2, 3], "y": null}''
returns the value
{ x = [ 1 2 3 ]; y = null; }
. -
fromTOML e
-
Convert a TOML string to a Nix value. For example,
builtins.fromTOML '' x=1 s="a" [table] y=2 ''
returns the value
{ s = "a"; table = { y = 2; }; x = 1; }
. -
functionArgs f
-
Return a set containing the names of the formal arguments expected by the function f. The value of each attribute is a Boolean denoting whether the corresponding argument has a default value. For instance,
functionArgs ({ x, y ? 123}: ...) = { x = false; y = true; }
."Formal argument" here refers to the attributes pattern-matched by the function. Plain lambdas are not included, e.g.
functionArgs (x: ...) = { }
. -
genList generator length
-
Generate list of size length, with each element i equal to the value returned by generator
i
. For example,builtins.genList (x: x * x) 5
returns the list
[ 0 1 4 9 16 ]
. -
genericClosure attrset
-
Take an attrset with values named
startSet
andoperator
in order to return a list of attrsets by starting with thestartSet
and recursively applying theoperator
function to eachitem
. The attrsets in thestartSet
and the attrsets produced byoperator
must contain a value namedkey
which is comparable. The result is produced by callingoperator
for eachitem
with a value forkey
that has not been called yet including newly produceditem
s. The function terminates when no newitem
s are produced. The resulting list of attrsets contains only attrsets with a unique key. For example,builtins.genericClosure { startSet = [ {key = 5;} ]; operator = item: [{ key = if (item.key / 2 ) * 2 == item.key then item.key / 2 else 3 * item.key + 1; }]; }
evaluates to
[ { key = 5; } { key = 16; } { key = 8; } { key = 4; } { key = 2; } { key = 1; } ]
-
getAttr s set
-
getAttr
returns the attribute named s from set. Evaluation aborts if the attribute doesn’t exist. This is a dynamic version of the.
operator, since s is an expression rather than an identifier. -
getContext s
-
Return the string context of s.
The string context tracks references to derivations within a string. It is represented as an attribute set of store derivation paths mapping to output names.
Using string interpolation on a derivation will add that derivation to the string context. For example,
builtins.getContext "${derivation { name = "a"; builder = "b"; system = "c"; }}"
evaluates to
{ "/nix/store/arhvjaf6zmlyn8vh8fgn55rpwnxq0n7l-a.drv" = { outputs = [ "out" ]; }; }
-
getEnv s
-
getEnv
returns the value of the environment variable s, or an empty string if the variable doesn’t exist. This function should be used with care, as it can introduce all sorts of nasty environment dependencies in your Nix expression.getEnv
is used in Nix Packages to locate the file~/.nixpkgs/config.nix
, which contains user-local settings for Nix Packages. (That is, it does agetEnv "HOME"
to locate the user’s home directory.) -
getFlake args
-
Fetch a flake from a flake reference, and return its output attributes and some metadata. For example:
(builtins.getFlake "nix/55bc52401966fbffa525c574c14f67b00bc4fb3a").packages.x86_64-linux.nix
Unless impure evaluation is allowed (
--impure
), the flake reference must be "locked", e.g. contain a Git revision or content hash. An example of an unlocked usage is:(builtins.getFlake "github:edolstra/dwarffs").rev
This function is only available if the flakes experimental feature is enabled.
-
groupBy f list
-
Groups elements of list together by the string returned from the function f called on each element. It returns an attribute set where each attribute value contains the elements of list that are mapped to the same corresponding attribute name returned by f.
For example,
builtins.groupBy (builtins.substring 0 1) ["foo" "bar" "baz"]
evaluates to
{ b = [ "bar" "baz" ]; f = [ "foo" ]; }
-
hasAttr s set
-
hasAttr
returnstrue
if set has an attribute named s, andfalse
otherwise. This is a dynamic version of the?
operator, since s is an expression rather than an identifier. -
hasContext s
-
Return
true
if string s has a non-empty context. The context can be obtained withgetContext
.Example
Many operations require a string context to be empty because they are intended only to work with "regular" strings, and also to help users avoid unintentionally losing track of string context elements.
builtins.hasContext
can help create better domain-specific errors in those case.name: meta: if builtins.hasContext name then throw "package name cannot contain string context" else { ${name} = meta; }
-
hashFile type p
-
Return a base-16 representation of the cryptographic hash of the file at path p. The hash algorithm specified by type must be one of
"md5"
,"sha1"
,"sha256"
or"sha512"
. -
hashString type s
-
Return a base-16 representation of the cryptographic hash of string s. The hash algorithm specified by type must be one of
"md5"
,"sha1"
,"sha256"
or"sha512"
. -
head list
-
Return the first element of a list; abort evaluation if the argument isn’t a list or is an empty list. You can test whether a list is empty by comparing it with
[]
. -
import path
-
Load, parse and return the Nix expression in the file path.
The value path can be a path, a string, or an attribute set with an
__toString
attribute or aoutPath
attribute (as derivations or flake inputs typically have).If path is a directory, the file
default.nix
in that directory is loaded.Evaluation aborts if the file doesn’t exist or contains an incorrect Nix expression.
import
implements Nix’s module system: you can put any Nix expression (such as a set or a function) in a separate file, and use it from Nix expressions in other files.Note
Unlike some languages,
import
is a regular function in Nix. Paths using the angle bracket syntax (e.g.,import
<foo>) are normal path values.A Nix expression loaded by
import
must not contain any free variables (identifiers that are not defined in the Nix expression itself and are not built-in). Therefore, it cannot refer to variables that are in scope at the call site. For instance, if you have a calling expressionrec { x = 123; y = import ./foo.nix; }
then the following
foo.nix
will give an error:x + 456
since
x
is not in scope infoo.nix
. If you wantx
to be available infoo.nix
, you should pass it as a function argument:rec { x = 123; y = import ./foo.nix x; }
and
x: x + 456
(The function argument doesn’t have to be called
x
infoo.nix
; any name would work.) -
intersectAttrs e1 e2
-
Return a set consisting of the attributes in the set e2 which have the same name as some attribute in e1.
Performs in O(n log m) where n is the size of the smaller set and m the larger set's size.
-
isAttrs e
-
Return
true
if e evaluates to a set, andfalse
otherwise. -
isBool e
-
Return
true
if e evaluates to a bool, andfalse
otherwise. -
isFloat e
-
Return
true
if e evaluates to a float, andfalse
otherwise. -
isFunction e
-
Return
true
if e evaluates to a function, andfalse
otherwise. -
isInt e
-
Return
true
if e evaluates to an integer, andfalse
otherwise. -
isList e
-
Return
true
if e evaluates to a list, andfalse
otherwise. -
isNull e
-
Return
true
if e evaluates tonull
, andfalse
otherwise.This is equivalent to
e == null
. -
isPath e
-
Return
true
if e evaluates to a path, andfalse
otherwise. -
isString e
-
Return
true
if e evaluates to a string, andfalse
otherwise. -
length e
-
Return the length of the list e.
-
lessThan e1 e2
-
Return
true
if the number e1 is less than the number e2, andfalse
otherwise. Evaluation aborts if either e1 or e2 does not evaluate to a number. -
listToAttrs e
-
Construct a set from a list specifying the names and values of each attribute. Each element of the list should be a set consisting of a string-valued attribute
name
specifying the name of the attribute, and an attributevalue
specifying its value.In case of duplicate occurrences of the same name, the first takes precedence.
Example:
builtins.listToAttrs [ { name = "foo"; value = 123; } { name = "bar"; value = 456; } { name = "bar"; value = 420; } ]
evaluates to
{ foo = 123; bar = 456; }
-
map f list
-
Apply the function f to each element in the list list. For example,
map (x: "foo" + x) [ "bar" "bla" "abc" ]
evaluates to
[ "foobar" "foobla" "fooabc" ]
. -
mapAttrs f attrset
-
Apply function f to every element of attrset. For example,
builtins.mapAttrs (name: value: value * 10) { a = 1; b = 2; }
evaluates to
{ a = 10; b = 20; }
. -
match regex str
-
Returns a list if the extended POSIX regular expression regex matches str precisely, otherwise returns
null
. Each item in the list is a regex group.builtins.match "ab" "abc"
Evaluates to
null
.builtins.match "abc" "abc"
Evaluates to
[ ]
.builtins.match "a(b)(c)" "abc"
Evaluates to
[ "b" "c" ]
.builtins.match "[[:space:]]+([[:upper:]]+)[[:space:]]+" " FOO "
Evaluates to
[ "FOO" ]
. -
mul e1 e2
-
Return the product of the numbers e1 and e2.
-
outputOf derivation-reference output-name
-
Return the output path of a derivation, literally or using a placeholder if needed.
If the derivation has a statically-known output path (i.e. the derivation output is input-addressed, or fixed content-addresed), the output path will just be returned. But if the derivation is content-addressed or if the derivation is itself not-statically produced (i.e. is the output of another derivation), a placeholder will be returned instead.
derivation reference
must be a string that may contain a regular store path to a derivation, or may be a placeholder reference. If the derivation is produced by a derivation, you must explicitly selectdrv.outPath
. This primop can be chained arbitrarily deeply. For instance,builtins.outputOf (builtins.outputOf myDrv "out) "out"
will return a placeholder for the output of the output of
myDrv
.This primop corresponds to the
^
sigil for derivable paths, e.g. as part of installable syntax on the command line.This function is only available if the dynamic-derivations experimental feature is enabled.
-
parseDrvName s
-
Split the string s into a package name and version. The package name is everything up to but not including the first dash not followed by a letter, and the version is everything following that dash. The result is returned in a set
{ name, version }
. Thus,builtins.parseDrvName "nix-0.12pre12876"
returns{ name = "nix"; version = "0.12pre12876"; }
. -
parseFlakeRef flake-ref
-
Parse a flake reference, and return its exploded form.
For example:
builtins.parseFlakeRef "github:NixOS/nixpkgs/23.05?dir=lib"
evaluates to:
{ dir = "lib"; owner = "NixOS"; ref = "23.05"; repo = "nixpkgs"; type = "github"; }
This function is only available if the flakes experimental feature is enabled.
-
partition pred list
-
Given a predicate function pred, this function returns an attrset containing a list named
right
, containing the elements in list for which pred returnedtrue
, and a list namedwrong
, containing the elements for which it returnedfalse
. For example,builtins.partition (x: x > 10) [1 23 9 3 42]
evaluates to
{ right = [ 23 42 ]; wrong = [ 1 9 3 ]; }
-
path args
-
An enrichment of the built-in path type, based on the attributes present in args. All are optional except
path
:-
path
The underlying path. -
name
The name of the path when added to the store. This can used to reference paths that have nix-illegal characters in their names, like@
. -
filter
A function of the type expected bybuiltins.filterSource
, with the same semantics. -
recursive
Whenfalse
, whenpath
is added to the store it is with a flat hash, rather than a hash of the NAR serialization of the file. Thus,path
must refer to a regular file, not a directory. This allows similar behavior tofetchurl
. Defaults totrue
. -
sha256
When provided, this is the expected hash of the file at the path. Evaluation will fail if the hash is incorrect, and providing a hash allowsbuiltins.path
to be used even when thepure-eval
nix config option is on.
-
-
pathExists path
-
Return
true
if the path path exists at evaluation time, andfalse
otherwise. -
placeholder output
-
Return a placeholder string for the specified output that will be substituted by the corresponding output path at build time. Typical outputs would be
"out"
,"bin"
or"dev"
. -
readDir path
-
Return the contents of the directory path as a set mapping directory entries to the corresponding file type. For instance, if directory
A
contains a regular fileB
and another directoryC
, thenbuiltins.readDir ./A
will return the set{ B = "regular"; C = "directory"; }
The possible values for the file type are
"regular"
,"directory"
,"symlink"
and"unknown"
. -
readFile path
-
Return the contents of the file path as a string.
-
readFileType p
-
Determine the directory entry type of a filesystem node, being one of "directory", "regular", "symlink", or "unknown".
-
removeAttrs set list
-
Remove the attributes listed in list from set. The attributes don’t have to exist in set. For instance,
removeAttrs { x = 1; y = 2; z = 3; } [ "a" "x" "z" ]
evaluates to
{ y = 2; }
. -
replaceStrings from to s
-
Given string s, replace every occurrence of the strings in from with the corresponding string in to.
The argument to is lazy, that is, it is only evaluated when its corresponding pattern in from is matched in the string s
Example:
builtins.replaceStrings ["oo" "a"] ["a" "i"] "foobar"
evaluates to
"fabir"
. -
seq e1 e2
-
Evaluate e1, then evaluate and return e2. This ensures that a computation is strict in the value of e1.
-
sort comparator list
-
Return list in sorted order. It repeatedly calls the function comparator with two elements. The comparator should return
true
if the first element is less than the second, andfalse
otherwise. For example,builtins.sort builtins.lessThan [ 483 249 526 147 42 77 ]
produces the list
[ 42 77 147 249 483 526 ]
.This is a stable sort: it preserves the relative order of elements deemed equal by the comparator.
-
split regex str
-
Returns a list composed of non matched strings interleaved with the lists of the extended POSIX regular expression regex matches of str. Each item in the lists of matched sequences is a regex group.
builtins.split "(a)b" "abc"
Evaluates to
[ "" [ "a" ] "c" ]
.builtins.split "([ac])" "abc"
Evaluates to
[ "" [ "a" ] "b" [ "c" ] "" ]
.builtins.split "(a)|(c)" "abc"
Evaluates to
[ "" [ "a" null ] "b" [ null "c" ] "" ]
.builtins.split "([[:upper:]]+)" " FOO "
Evaluates to
[ " " [ "FOO" ] " " ]
. -
splitVersion s
-
Split a string representing a version into its components, by the same version splitting logic underlying the version comparison in
nix-env -u
. -
storePath path
-
This function allows you to define a dependency on an already existing store path. For example, the derivation attribute
src = builtins.storePath /nix/store/f1d18v1y…-source
causes the derivation to depend on the specified path, which must exist or be substitutable. Note that this differs from a plain path (e.g.src = /nix/store/f1d18v1y…-source
) in that the latter causes the path to be copied again to the Nix store, resulting in a new path (e.g./nix/store/ld01dnzc…-source-source
).Not available in pure evaluation mode.
See also
builtins.fetchClosure
. -
stringLength e
-
Return the length of the string e. If e is not a string, evaluation is aborted.
-
sub e1 e2
-
Return the difference between the numbers e1 and e2.
-
substring start len s
-
Return the substring of s from character position start (zero-based) up to but not including start + len. If start is greater than the length of the string, an empty string is returned, and if start + len lies beyond the end of the string, only the substring up to the end of the string is returned. start must be non-negative. For example,
builtins.substring 0 3 "nixos"
evaluates to
"nix"
. -
tail list
-
Return the second to last elements of a list; abort evaluation if the argument isn’t a list or is an empty list.
Warning
This function should generally be avoided since it's inefficient: unlike Haskell's
tail
, it takes O(n) time, so recursing over a list by repeatedly callingtail
takes O(n^2) time. -
throw s
-
Throw an error message s. This usually aborts Nix expression evaluation, but in
nix-env -qa
and other commands that try to evaluate a set of derivations to get information about those derivations, a derivation that throws an error is silently skipped (which is not the case forabort
). -
toFile name s
-
Store the string s in a file in the Nix store and return its path. The file has suffix name. This file can be used as an input to derivations. One application is to write builders “inline”. For instance, the following Nix expression combines the Nix expression for GNU Hello and its build script into one file:
{ stdenv, fetchurl, perl }: stdenv.mkDerivation { name = "hello-2.1.1"; builder = builtins.toFile "builder.sh" " source $stdenv/setup PATH=$perl/bin:$PATH tar xvfz $src cd hello-* ./configure --prefix=$out make make install "; src = fetchurl { url = "http://ftp.nluug.nl/pub/gnu/hello/hello-2.1.1.tar.gz"; sha256 = "1md7jsfd8pa45z73bz1kszpp01yw6x5ljkjk2hx7wl800any6465"; }; inherit perl; }
It is even possible for one file to refer to another, e.g.,
builder = let configFile = builtins.toFile "foo.conf" " # This is some dummy configuration file. ... "; in builtins.toFile "builder.sh" " source $stdenv/setup ... cp ${configFile} $out/etc/foo.conf ";
Note that
${configFile}
is a string interpolation, so the result of the expressionconfigFile
(i.e., a path like/nix/store/m7p7jfny445k...-foo.conf
) will be spliced into the resulting string.It is however not allowed to have files mutually referring to each other, like so:
let foo = builtins.toFile "foo" "...${bar}..."; bar = builtins.toFile "bar" "...${foo}..."; in foo
This is not allowed because it would cause a cyclic dependency in the computation of the cryptographic hashes for
foo
andbar
.It is also not possible to reference the result of a derivation. If you are using Nixpkgs, the
writeTextFile
function is able to do that. -
toJSON e
-
Return a string containing a JSON representation of e. Strings, integers, floats, booleans, nulls and lists are mapped to their JSON equivalents. Sets (except derivations) are represented as objects. Derivations are translated to a JSON string containing the derivation’s output path. Paths are copied to the store and represented as a JSON string of the resulting store path.
-
toPath s
-
DEPRECATED. Use
/. + "/path"
to convert a string into an absolute path. For relative paths, use./. + "/path"
. -
toString e
-
Convert the expression e to a string. e can be:
-
A string (in which case the string is returned unmodified).
-
A path (e.g.,
toString /foo/bar
yields"/foo/bar"
. -
A set containing
{ __toString = self: ...; }
or{ outPath = ...; }
. -
An integer.
-
A list, in which case the string representations of its elements are joined with spaces.
-
A Boolean (
false
yields""
,true
yields"1"
). -
null
, which yields the empty string.
-
-
toXML e
-
Return a string containing an XML representation of e. The main application for
toXML
is to communicate information with the builder in a more structured format than plain environment variables.Here is an example where this is the case:
{ stdenv, fetchurl, libxslt, jira, uberwiki }: stdenv.mkDerivation (rec { name = "web-server"; buildInputs = [ libxslt ]; builder = builtins.toFile "builder.sh" " source $stdenv/setup mkdir $out echo "$servlets" | xsltproc ${stylesheet} - > $out/server-conf.xml ① "; stylesheet = builtins.toFile "stylesheet.xsl" ② "<?xml version='1.0' encoding='UTF-8'?> <xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'> <xsl:template match='/'> <Configure> <xsl:for-each select='/expr/list/attrs'> <Call name='addWebApplication'> <Arg><xsl:value-of select=\"attr[@name = 'path']/string/@value\" /></Arg> <Arg><xsl:value-of select=\"attr[@name = 'war']/path/@value\" /></Arg> </Call> </xsl:for-each> </Configure> </xsl:template> </xsl:stylesheet> "; servlets = builtins.toXML [ ③ { path = "/bugtracker"; war = jira + "/lib/atlassian-jira.war"; } { path = "/wiki"; war = uberwiki + "/uberwiki.war"; } ]; })
The builder is supposed to generate the configuration file for a Jetty servlet container. A servlet container contains a number of servlets (
*.war
files) each exported under a specific URI prefix. So the servlet configuration is a list of sets containing thepath
andwar
of the servlet (①). This kind of information is difficult to communicate with the normal method of passing information through an environment variable, which just concatenates everything together into a string (which might just work in this case, but wouldn’t work if fields are optional or contain lists themselves). Instead the Nix expression is converted to an XML representation withtoXML
, which is unambiguous and can easily be processed with the appropriate tools. For instance, in the example an XSLT stylesheet (at point ②) is applied to it (at point ①) to generate the XML configuration file for the Jetty server. The XML representation produced at point ③ bytoXML
is as follows:<?xml version='1.0' encoding='utf-8'?> <expr> <list> <attrs> <attr name="path"> <string value="/bugtracker" /> </attr> <attr name="war"> <path value="/nix/store/d1jh9pasa7k2...-jira/lib/atlassian-jira.war" /> </attr> </attrs> <attrs> <attr name="path"> <string value="/wiki" /> </attr> <attr name="war"> <path value="/nix/store/y6423b1yi4sx...-uberwiki/uberwiki.war" /> </attr> </attrs> </list> </expr>
Note that we used the
toFile
built-in to write the builder and the stylesheet “inline” in the Nix expression. The path of the stylesheet is spliced into the builder using the syntaxxsltproc ${stylesheet}
. -
trace e1 e2
-
Evaluate e1 and print its abstract syntax representation on standard error. Then return e2. This function is useful for debugging.
If the
debugger-on-trace
option is set totrue
and the--debugger
flag is given, the interactive debugger will be started whentrace
is called (likebreak
). -
traceVerbose e1 e2
-
Evaluate e1 and print its abstract syntax representation on standard error if
--trace-verbose
is enabled. Then return e2. This function is useful for debugging. -
tryEval e
-
Try to shallowly evaluate e. Return a set containing the attributes
success
(true
if e evaluated successfully,false
if an error was thrown) andvalue
, equalling e if successful andfalse
otherwise.tryEval
will only prevent errors created bythrow
orassert
from being thrown. ErrorstryEval
will not catch are for example those created byabort
and type errors generated by builtins. Also note that this doesn't evaluate e deeply, solet e = { x = throw ""; }; in (builtins.tryEval e).success
will betrue
. Usingbuiltins.deepSeq
one can get the expected result:let e = { x = throw ""; }; in (builtins.tryEval (builtins.deepSeq e e)).success
will befalse
. -
typeOf e
-
Return a string representing the type of the value e, namely
"int"
,"bool"
,"string"
,"path"
,"null"
,"set"
,"list"
,"lambda"
or"float"
. -
unsafeDiscardOutputDependency s
-
Create a copy of the given string where every "derivation deep" string context element is turned into a constant string context element.
This is the opposite of
builtins.addDrvOutputDependencies
.This is unsafe because it allows us to "forget" store objects we would have otherwise refered to with the string context, whereas Nix normally tracks all dependencies consistently. Safe operations "grow" but never "shrink" string contexts.
builtins.addDrvOutputDependencies
in contrast is safe because "derivation deep" string context element always refers to the underlying derivation (among many more things). Replacing a constant string context element with a "derivation deep" element is a safe operation that just enlargens the string context without forgetting anything. -
zipAttrsWith f list
-
Transpose a list of attribute sets into an attribute set of lists, then apply
mapAttrs
.f
receives two arguments: the attribute name and a non-empty list of all values encountered for that attribute name.The result is an attribute set where the attribute names are the union of the attribute names in each element of
list
. The attribute values are the return values off
.builtins.zipAttrsWith (name: values: { inherit name values; }) [ { a = "x"; } { a = "y"; b = "z"; } ]
evaluates to
{ a = { name = "a"; values = [ "x" "y" ]; }; b = { name = "b"; values = [ "z" ]; }; }
This section lists advanced topics related to builds and builds performance
Remote Builds
Lix supports remote builds, where a local Lix installation can forward
Nix builds to other machines. This allows multiple builds to be
performed in parallel and allows Lix to perform multi-platform builds in
a semi-transparent way. For instance, if you perform a build for a
x86_64-darwin
on an i686-linux
machine, Lix can automatically
forward the build to a x86_64-darwin
machine, if available.
To forward a build to a remote machine, it’s required that the remote machine is accessible via SSH and that it has Nix installed. You can test whether connecting to the remote Nix instance works, e.g.
$ nix store ping --store ssh://mac
will try to connect to the machine named mac
. It is possible to
specify an SSH identity file as part of the remote store URI, e.g.
$ nix store ping --store ssh://mac?ssh-key=/home/alice/my-key
Since builds should be non-interactive, the key should not have a
passphrase. Alternatively, you can load identities ahead of time into
ssh-agent
or gpg-agent
.
If you get the error
bash: nix-store: command not found
error: cannot connect to 'mac'
then you need to ensure that the PATH
of non-interactive login shells
contains Nix.
Warning
If you are building via the Lix daemon (default on Linux and macOS), it is the Lix daemon user account (that is,
root
) that should have SSH access to a user (not necessarilyroot
) on the remote machine.Furthermore,
root
needs to have the public host keys for the remote system in its.ssh/known_hosts
. To add them toknown_hosts
for root, dossh-keyscan USER@HOST | sudo tee -a ~root/.ssh/known_hosts
.If you can’t or don’t want to configure
root
to be able to access the remote machine, you can use a private Nix store instead by passing e.g.--store ~/my-nix
when running a Nix command from the local machine.
The list of remote machines can be specified on the command line or in
the Lix configuration file. The former is convenient for testing. For
example, the following command allows you to build a derivation for
x86_64-darwin
on a Linux machine:
$ uname
Linux
$ nix build --impure \
--expr '(with import <nixpkgs> { system = "x86_64-darwin"; }; runCommand "foo" {} "uname > $out")' \
--builders 'ssh://mac x86_64-darwin'
[1/0/1 built, 0.0 MiB DL] building foo on ssh://mac
$ cat ./result
Darwin
It is possible to specify multiple builders separated by a semicolon or a newline, e.g.
--builders 'ssh://mac x86_64-darwin ; ssh://beastie x86_64-freebsd'
Each machine specification consists of the following elements, separated
by spaces. Only the first element is required. To leave a field at its
default, set it to -
.
-
The URI of the remote store in the format
ssh://[username@]hostname
, e.g.ssh://nix@mac
orssh://mac
. For backward compatibility,ssh://
may be omitted. The hostname may be an alias defined in your~/.ssh/config
. -
A comma-separated list of Nix platform type identifiers, such as
x86_64-darwin
. It is possible for a machine to support multiple platform types, e.g.,i686-linux,x86_64-linux
. If omitted, this defaults to the local platform type. -
The SSH identity file to be used to log in to the remote machine. If omitted, SSH will use its regular identities.
-
The maximum number of builds that Lix will execute in parallel on the machine. Typically this should be equal to the number of CPU cores. For instance, the machine
itchy
in the example will execute up to 8 builds in parallel. -
The “speed factor”, indicating the relative speed of the machine. If there are multiple machines of the right type, Lix will prefer the fastest, taking load into account.
-
A comma-separated list of supported features. If a derivation has the
requiredSystemFeatures
attribute, then Lix will only perform the derivation on a machine that has the specified features. For instance, the attributerequiredSystemFeatures = [ "kvm" ];
will cause the build to be performed on a machine that has the
kvm
feature. -
A comma-separated list of mandatory features. A machine will only be used to build a derivation if all of the machine’s mandatory features appear in the derivation’s
requiredSystemFeatures
attribute. -
The (base64-encoded) public host key of the remote machine. If omitted, SSH will use its regular known-hosts file. Specifically, the field is calculated via
base64 -w0 /etc/ssh/ssh_host_ed25519_key.pub
.
For example, the machine specification
nix@scratchy.labs.cs.uu.nl i686-linux /home/nix/.ssh/id_scratchy_auto 8 1 kvm
nix@itchy.labs.cs.uu.nl i686-linux /home/nix/.ssh/id_scratchy_auto 8 2
nix@poochie.labs.cs.uu.nl i686-linux /home/nix/.ssh/id_scratchy_auto 1 2 kvm benchmark
specifies several machines that can perform i686-linux
builds.
However, poochie
will only do builds that have the attribute
requiredSystemFeatures = [ "benchmark" ];
or
requiredSystemFeatures = [ "benchmark" "kvm" ];
itchy
cannot do builds that require kvm
, but scratchy
does support
such builds. For regular builds, itchy
will be preferred over
scratchy
because it has a higher speed factor.
Remote builders can also be configured in nix.conf
, e.g.
builders = ssh://mac x86_64-darwin ; ssh://beastie x86_64-freebsd
Finally, remote builders can be configured in a separate configuration
file included in builders
via the syntax @file
. For example,
builders = @/etc/nix/machines
causes the list of machines in /etc/nix/machines
to be included. (This
is the default.)
If you want the builders to use caches, you likely want to set the
option builders-use-substitutes
in your local nix.conf
.
To build only on remote builders and disable building on the local
machine, you can use the option --max-jobs 0
.
Tuning Cores and Jobs
Lix has two relevant settings with regards to how your CPU cores will
be utilized: cores
and max-jobs
. This chapter will talk about what
they are, how they interact, and their configuration trade-offs.
-
max-jobs
Dictates how many separate derivations will be built at the same time. If you set this to zero, the local machine will do no builds. Lix will still substitute from binary caches, and build remotely if remote builders are configured. -
cores
Suggests how many cores each derivation should use. Similar tomake -j
.
The cores
setting determines the value of
NIX_BUILD_CORES
. NIX_BUILD_CORES
is equal to cores
, unless
cores
equals 0
, in which case NIX_BUILD_CORES
will be the total
number of cores in the system.
The maximum number of consumed cores is a simple multiplication,
max-jobs
* NIX_BUILD_CORES
.
The balance on how to set these two independent variables depends upon each builder's workload and hardware. Here are a few example scenarios on a machine with 24 cores:
max-jobs | cores | NIX_BUILD_CORES | Maximum Processes | Result |
---|---|---|---|---|
1 | 24 | 24 | 24 | One derivation will be built at a time, each one can use 24 cores. Undersold if a job can’t use 24 cores. |
4 | 6 | 6 | 24 | Four derivations will be built at once, each given access to six cores. |
12 | 6 | 6 | 72 | 12 derivations will be built at once, each given access to six cores. This configuration is over-sold. If all 12 derivations being built simultaneously try to use all six cores, the machine's performance will be degraded due to extensive context switching between the 12 builds. |
24 | 1 | 1 | 24 | 24 derivations can build at the same time, each using a single core. Never oversold, but derivations which require many cores will be very slow to compile. |
24 | 0 | 24 | 576 | 24 derivations can build at the same time, each using all the available cores of the machine. Very likely to be oversold, and very likely to suffer context switches. |
It is up to the derivations' build script to respect host's requested
cores-per-build by following the value of the NIX_BUILD_CORES
environment variable.
Verifying Build Reproducibility
You can use Lix's diff-hook
setting to compare build results. Note
that this hook is only executed if the results differ; it is not used
for determining if the results are the same.
For purposes of demonstration, we'll use the following Nix file,
deterministic.nix
for testing:
let
inherit (import <nixpkgs> {}) runCommand;
in {
stable = runCommand "stable" {} ''
touch $out
'';
unstable = runCommand "unstable" {} ''
echo $RANDOM > $out
'';
}
Additionally, nix.conf
contains:
diff-hook = /etc/nix/my-diff-hook
run-diff-hook = true
where /etc/nix/my-diff-hook
is an executable file containing:
#!/bin/sh
exec >&2
echo "For derivation $3:"
/run/current-system/sw/bin/diff -r "$1" "$2"
The diff hook is executed by the same user and group who ran the build. However, the diff hook does not have write access to the store path just built.
Spot-Checking Build Determinism
Verify a path which already exists in the Nix store by passing --check
to the build command.
If the build passes and is deterministic, Lix will exit with a status code of 0:
$ nix-build ./deterministic.nix --attr stable
this derivation will be built:
/nix/store/z98fasz2jqy9gs0xbvdj939p27jwda38-stable.drv
building '/nix/store/z98fasz2jqy9gs0xbvdj939p27jwda38-stable.drv'...
/nix/store/yyxlzw3vqaas7wfp04g0b1xg51f2czgq-stable
$ nix-build ./deterministic.nix --attr stable --check
checking outputs of '/nix/store/z98fasz2jqy9gs0xbvdj939p27jwda38-stable.drv'...
/nix/store/yyxlzw3vqaas7wfp04g0b1xg51f2czgq-stable
If the build is not deterministic, Lix will exit with a status code of 1:
$ nix-build ./deterministic.nix --attr unstable
this derivation will be built:
/nix/store/cgl13lbj1w368r5z8gywipl1ifli7dhk-unstable.drv
building '/nix/store/cgl13lbj1w368r5z8gywipl1ifli7dhk-unstable.drv'...
/nix/store/krpqk0l9ib0ibi1d2w52z293zw455cap-unstable
$ nix-build ./deterministic.nix --attr unstable --check
checking outputs of '/nix/store/cgl13lbj1w368r5z8gywipl1ifli7dhk-unstable.drv'...
error: derivation '/nix/store/cgl13lbj1w368r5z8gywipl1ifli7dhk-unstable.drv' may
not be deterministic: output '/nix/store/krpqk0l9ib0ibi1d2w52z293zw455cap-unstable' differs
In the Lix daemon's log, we will now see:
For derivation /nix/store/cgl13lbj1w368r5z8gywipl1ifli7dhk-unstable.drv:
1c1
< 8108
---
> 30204
Using --check
with --keep-failed
will cause Lix to keep the second
build's output in a special, .check
path:
$ nix-build ./deterministic.nix --attr unstable --check --keep-failed
checking outputs of '/nix/store/cgl13lbj1w368r5z8gywipl1ifli7dhk-unstable.drv'...
note: keeping build directory '/tmp/nix-build-unstable.drv-0'
error: derivation '/nix/store/cgl13lbj1w368r5z8gywipl1ifli7dhk-unstable.drv' may
not be deterministic: output '/nix/store/krpqk0l9ib0ibi1d2w52z293zw455cap-unstable' differs
from '/nix/store/krpqk0l9ib0ibi1d2w52z293zw455cap-unstable.check'
In particular, notice the
/nix/store/krpqk0l9ib0ibi1d2w52z293zw455cap-unstable.check
output. Lix
has copied the build results to that directory where you can examine it.
Check paths are not protected against garbage collection, and this path will be deleted on the next garbage collection.
The path is guaranteed to be alive for the duration of the
diff-hook
's execution, but may be deleted any time after.If the comparison is performed as part of automated tooling, please use the diff-hook or author your tooling to handle the case where the build was not deterministic and also a check path does not exist.
--check
is only usable if the derivation has been built on the system
already. If the derivation has not been built Lix will fail with the
error:
error: some outputs of '/nix/store/hzi1h60z2qf0nb85iwnpvrai3j2w7rr6-unstable.drv'
are not valid, so checking is not possible
Run the build without --check
, and then try with --check
again.
Using the post-build-hook
Implementation Caveats
Here we use the post-build hook to upload to a binary cache. This is a simple and working example, but it is not suitable for all use cases.
The post build hook program runs after each executed build, and blocks the build loop. The build loop exits if the hook program fails.
Concretely, this implementation will make Lix slow or unusable when the internet is slow or unreliable.
A more advanced implementation might pass the store paths to a user-supplied daemon or queue for processing the store paths outside of the build loop.
Prerequisites
This tutorial assumes you have configured an S3-compatible binary
cache, and that the root
user's default AWS profile can upload to the bucket.
Set up a Signing Key
Use nix-store --generate-binary-cache-key
to create our public and
private signing keys. We will sign paths with the private key, and
distribute the public key for verifying the authenticity of the paths.
# nix-store --generate-binary-cache-key example-nix-cache-1 /etc/nix/key.private /etc/nix/key.public
# cat /etc/nix/key.public
example-nix-cache-1:1/cKDz3QCCOmwcztD2eV6Coggp6rqc9DGjWv7C0G+rM=
Then update nix.conf
on any machine that will access the cache.
Add the cache URL to substituters
and the public key to trusted-public-keys
:
substituters = https://cache.nixos.org/ s3://example-nix-cache
trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= example-nix-cache-1:1/cKDz3QCCOmwcztD2eV6Coggp6rqc9DGjWv7C0G+rM=
Machines that build for the cache must sign derivations using the private key.
On those machines, add the path to the key file to the secret-key-files
field in their nix.conf
:
secret-key-files = /etc/nix/key.private
We will restart the Nix daemon in a later step.
Implementing the build hook
Write the following script to /etc/nix/upload-to-cache.sh
:
#!/bin/sh
set -eu
set -f # disable globbing
export IFS=' '
echo "Uploading paths" $OUT_PATHS
exec nix copy --to "s3://example-nix-cache" $OUT_PATHS
Note
The
$OUT_PATHS
variable is a space-separated list of Nix store paths. In this case, we expect and want the shell to perform word splitting to make each output path its own argument tonix store sign
. Nix guarantees the paths will not contain any spaces, however a store path might contain glob characters. Theset -f
disables globbing in the shell.
Then make sure the hook program is executable by the root
user:
# chmod +x /etc/nix/upload-to-cache.sh
Updating Lix Configuration
Edit /etc/nix/nix.conf
to run our hook, by adding the following
configuration snippet at the end:
post-build-hook = /etc/nix/upload-to-cache.sh
Then, restart the nix-daemon
.
Testing
Build any derivation, for example:
$ nix-build --expr '(import <nixpkgs> {}).writeText "example" (builtins.toString builtins.currentTime)'
this derivation will be built:
/nix/store/s4pnfbkalzy5qz57qs6yybna8wylkig6-example.drv
building '/nix/store/s4pnfbkalzy5qz57qs6yybna8wylkig6-example.drv'...
running post-build-hook '/home/grahamc/projects/github.com/NixOS/nix/post-hook.sh'...
post-build-hook: Signing paths /nix/store/ibcyipq5gf91838ldx40mjsp0b8w9n18-example
post-build-hook: Uploading paths /nix/store/ibcyipq5gf91838ldx40mjsp0b8w9n18-example
/nix/store/ibcyipq5gf91838ldx40mjsp0b8w9n18-example
Then delete the path from the store, and try substituting it from the binary cache:
$ rm ./result
$ nix-store --delete /nix/store/ibcyipq5gf91838ldx40mjsp0b8w9n18-example
Now, copy the path back from the cache:
$ nix-store --realise /nix/store/ibcyipq5gf91838ldx40mjsp0b8w9n18-example
copying path '/nix/store/m8bmqwrch6l3h8s0k3d673xpmipcdpsa-example from 's3://example-nix-cache'...
warning: you did not specify '--add-root'; the result might be removed by the garbage collector
/nix/store/m8bmqwrch6l3h8s0k3d673xpmipcdpsa-example
Conclusion
We now have a Lix installation configured to automatically sign and upload every local build to a remote binary cache.
Before deploying this to production, be sure to consider the implementation caveats.
This section lists commands and options that you can use when you work with Lix.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Main Commands
This section lists commands and options that you can use when you work with Lix.
Name
nix-build
- build a Nix expression
Synopsis
nix-build
[paths…]
[--arg
name value]
[--argstr
name value]
[{--attr
| -A
} attrPath]
[--no-out-link
]
[--dry-run
]
[{--out-link
| -o
} outlink]
Disambiguation
This man page describes the command nix-build
, which is distinct from nix build
.
For documentation on the latter, run nix build --help
or see man nix3-build
.
Description
The nix-build
command builds the derivations described by the Nix
expressions in paths. If the build succeeds, it places a symlink to
the result in the current directory. The symlink is called result
. If
there are multiple Nix expressions, or the Nix expressions evaluate to
multiple derivations, multiple sequentially numbered symlinks are
created (result
, result-2
, and so on).
If no paths are specified, then nix-build
will use default.nix
in
the current directory, if it exists.
If an element of paths starts with http://
or https://
, it is
interpreted as the URL of a tarball that will be downloaded and unpacked
to a temporary location. The tarball must include a single top-level
directory containing at least a file named default.nix
.
nix-build
is essentially a wrapper around
nix-instantiate
(to translate a high-level Nix
expression to a low-level store derivation) and nix-store --realise
(to build the store
derivation).
Warning
The result of the build is automatically registered as a root of the Nix garbage collector. This root disappears automatically when the
result
symlink is deleted or renamed. So don’t rename the symlink.
Options
All options not listed here are passed to
nix-store --realise
,
except for --arg
and --attr
/ -A
which are passed to nix-instantiate
.
-
Do not create a symlink to the output path. Note that as a result the output does not become a root of the garbage collector, and so might be deleted by
nix-store --gc
. -
Show what store paths would be built or downloaded.
-
--out-link
/-o
outlinkChange the name of the symlink to the output path created from
result
to outlink.
Special exit codes for build failure
1xx status codes are used when requested builds failed. The following codes are in use:
-
100
Generic build failureThe builder process returned with a non-zero exit code.
-
101
Build timeoutThe build was aborted because it did not complete within the specified
timeout
. -
102
Hash mismatchThe build output was rejected because it does not match the
outputHash
attribute of the derivation. -
104
Not deterministicThe build succeeded in check mode but the resulting output is not binary reproducible.
With the --keep-going
flag it's possible for multiple failures to occur.
In this case the 1xx status codes are or combined using
bitwise OR.
0b1100100
^^^^
|||`- timeout
||`-- output hash mismatch
|`--- build failure
`---- not deterministic
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
$ nix-build '<nixpkgs>' --attr firefox
store derivation is /nix/store/qybprl8sz2lc...-firefox-1.5.0.7.drv
/nix/store/d18hyl92g30l...-firefox-1.5.0.7
$ ls -l result
lrwxrwxrwx ... result -> /nix/store/d18hyl92g30l...-firefox-1.5.0.7
$ ls ./result/bin/
firefox firefox-config
If a derivation has multiple outputs, nix-build
will build the default
(first) output. You can also build all outputs:
$ nix-build '<nixpkgs>' --attr openssl.all
This will create a symlink for each output named result-outputname
.
The suffix is omitted if the output name is out
. So if openssl
has
outputs out
, bin
and man
, nix-build
will create symlinks
result
, result-bin
and result-man
. It’s also possible to build a
specific output:
$ nix-build '<nixpkgs>' --attr openssl.man
This will create a symlink result-man
.
Build a Nix expression given on the command line:
$ nix-build --expr 'with import <nixpkgs> { }; runCommand "foo" { } "echo bar > $out"'
$ cat ./result
bar
Build the GNU Hello package from the latest revision of the master branch of Nixpkgs:
$ nix-build https://github.com/NixOS/nixpkgs/archive/master.tar.gz --attr hello
Name
nix-shell
- start an interactive shell based on a Nix expression
Synopsis
nix-shell
[--arg
name value]
[--argstr
name value]
[{--attr
| -A
} attrPath]
[--command
cmd]
[--run
cmd]
[--exclude
regexp]
[--pure
]
[--keep
name]
{{--packages
| -p
} {packages | expressions} … | [path]}
Disambiguation
This man page describes the command nix-shell
, which is distinct from nix shell
. For documentation on the latter, run nix shell --help
or see man nix3-shell
.
Description
The command nix-shell
will build the dependencies of the specified
derivation, but not the derivation itself. It will then start an
interactive shell in which all environment variables defined by the
derivation path have been set to their corresponding values, and the
script $stdenv/setup
has been sourced. This is useful for reproducing
the environment of a derivation for development.
If path is not given, nix-shell
defaults to shell.nix
if it
exists, and default.nix
otherwise.
If path starts with http://
or https://
, it is interpreted as the
URL of a tarball that will be downloaded and unpacked to a temporary
location. The tarball must include a single top-level directory
containing at least a file named default.nix
.
If the derivation defines the variable shellHook
, it will be run
after $stdenv/setup
has been sourced. Since this hook is not executed
by regular Nix builds, it allows you to perform initialisation specific
to nix-shell
. For example, the derivation attribute
shellHook =
''
echo "Hello shell"
export SOME_API_TOKEN="$(cat ~/.config/some-app/api-token)"
'';
will cause nix-shell
to print Hello shell
and set the SOME_API_TOKEN
environment variable to a user-configured value.
Options
All options not listed here are passed to nix-store --realise
, except for --arg
and --attr
/ -A
which are passed to
nix-instantiate
.
-
--command
cmd
In the environment of the derivation, run the shell command cmd. This command is executed in an interactive shell. (Use--run
to use a non-interactive shell instead.) However, a call toexit
is implicitly added to the command, so the shell will exit after running the command. To prevent this, addreturn
at the end; e.g.--command "echo Hello; return"
will printHello
and then drop you into the interactive shell. This can be useful for doing any additional initialisation. -
--run
cmd
Like--command
, but executes the command in a non-interactive shell. This means (among other things) that if you hit Ctrl-C while the command is running, the shell exits. -
--exclude
regexp
Do not build any dependencies whose store path matches the regular expression regexp. This option may be specified multiple times. -
--pure
If this flag is specified, the environment is almost entirely cleared before the interactive shell is started, so you get an environment that more closely corresponds to the “real” Nix build. A few variables, in particularHOME
,USER
andDISPLAY
, are retained. -
--packages
/-p
packages…
Set up an environment in which the specified packages are present. The command line arguments are interpreted as attribute names inside the Nix Packages collection. Thus,nix-shell --packages libjpeg openjdk
will start a shell in which the packages denoted by the attribute nameslibjpeg
andopenjdk
are present. -
-i
interpreter
The chained script interpreter to be invoked bynix-shell
. Only applicable in#!
-scripts (described below). -
--keep
name
When a--pure
shell is started, keep the listed environment variables.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_BUILD_SHELL
Shell used to start the interactive environment. Defaults to thebash
found in<nixpkgs>
, falling back to thebash
found inPATH
if not found.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
To build the dependencies of the package Pan, and start an interactive shell in which to build it:
$ nix-shell '<nixpkgs>' --attr pan
[nix-shell]$ eval ${unpackPhase:-unpackPhase}
[nix-shell]$ cd $sourceRoot
[nix-shell]$ eval ${patchPhase:-patchPhase}
[nix-shell]$ eval ${configurePhase:-configurePhase}
[nix-shell]$ eval ${buildPhase:-buildPhase}
[nix-shell]$ ./pan/gui/pan
The reason we use form eval ${configurePhase:-configurePhase}
here is because
those packages that override these phases do so by exporting the overridden
values in the environment variable of the same name.
Here bash is being told to either evaluate the contents of 'configurePhase',
if it exists as a variable, otherwise evaluate the configurePhase function.
To clear the environment first, and do some additional automatic initialisation of the interactive shell:
$ nix-shell '<nixpkgs>' --attr pan --pure \
--command 'export NIX_DEBUG=1; export NIX_CORES=8; return'
Nix expressions can also be given on the command line using the -E
and
-p
flags. For instance, the following starts a shell containing the
packages sqlite
and libX11
:
$ nix-shell --expr 'with import <nixpkgs> { }; runCommand "dummy" { buildInputs = [ sqlite xorg.libX11 ]; } ""'
A shorter way to do the same is:
$ nix-shell --packages sqlite xorg.libX11
[nix-shell]$ echo $NIX_LDFLAGS
… -L/nix/store/j1zg5v…-sqlite-3.8.0.2/lib -L/nix/store/0gmcz9…-libX11-1.6.1/lib …
Note that -p
accepts multiple full nix expressions that are valid in
the buildInputs = [ ... ]
shown above, not only package names. So the
following is also legal:
$ nix-shell --packages sqlite 'git.override { withManual = false; }'
The -p
flag looks up Nixpkgs in the Nix search path. You can override
it by passing -I
or setting NIX_PATH
. For example, the following
gives you a shell containing the Pan package from a specific revision of
Nixpkgs:
$ nix-shell --packages pan -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/8a3eea054838b55aca962c3fbde9c83c102b8bf2.tar.gz
[nix-shell:~]$ pan --version
Pan 0.139
Use as a #!
-interpreter
You can use nix-shell
as a script interpreter to allow scripts written
in arbitrary languages to obtain their own dependencies via Nix. This is
done by starting the script with the following lines:
#! /usr/bin/env nix-shell
#! nix-shell -i real-interpreter --packages packages
where real-interpreter is the “real” script interpreter that will be
invoked by nix-shell
after it has obtained the dependencies and
initialised the environment, and packages are the attribute names of
the dependencies in Nixpkgs.
The lines starting with #! nix-shell
specify nix-shell
options (see
above). Note that you cannot write #! /usr/bin/env nix-shell -i ...
because many operating systems only allow one argument in #!
lines.
For example, here is a Python script that depends on Python and the
prettytable
package:
#! /usr/bin/env nix-shell
#! nix-shell -i python --packages python pythonPackages.prettytable
import prettytable
# Print a simple table.
t = prettytable.PrettyTable(["N", "N^2"])
for n in range(1, 10): t.add_row([n, n * n])
print t
Similarly, the following is a Perl script that specifies that it
requires Perl and the HTML::TokeParser::Simple
and LWP
packages:
#! /usr/bin/env nix-shell
#! nix-shell -i perl --packages perl perlPackages.HTMLTokeParserSimple perlPackages.LWP
use HTML::TokeParser::Simple;
# Fetch nixos.org and print all hrefs.
my $p = HTML::TokeParser::Simple->new(url => 'http://nixos.org/');
while (my $token = $p->get_tag("a")) {
my $href = $token->get_attr("href");
print "$href\n" if $href;
}
Sometimes you need to pass a simple Nix expression to customize a package like Terraform:
#! /usr/bin/env nix-shell
#! nix-shell -i bash --packages 'terraform.withPlugins (plugins: [ plugins.openstack ])'
terraform apply
Note
You must use single or double quotes (
'
,"
) when passing a simple Nix expression in a nix-shell shebang.
Finally, using the merging of multiple nix-shell shebangs the following Haskell script uses a specific branch of Nixpkgs/NixOS (the 20.03 stable branch):
#! /usr/bin/env nix-shell
#! nix-shell -i runghc --packages 'haskellPackages.ghcWithPackages (ps: [ps.download-curl ps.tagsoup])'
#! nix-shell -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/nixos-20.03.tar.gz
import Network.Curl.Download
import Text.HTML.TagSoup
import Data.Either
import Data.ByteString.Char8 (unpack)
-- Fetch nixos.org and print all hrefs.
main = do
resp <- openURI "https://nixos.org/"
let tags = filter (isTagOpenName "a") $ parseTags $ unpack $ fromRight undefined resp
let tags' = map (fromAttrib "href") tags
mapM_ putStrLn $ filter (/= "") tags'
If you want to be even more precise, you can specify a specific revision of Nixpkgs:
#! nix-shell -I nixpkgs=https://github.com/NixOS/nixpkgs/archive/0672315759b3e15e2121365f067c1c8c56bb4722.tar.gz
The examples above all used -p
to get dependencies from Nixpkgs. You
can also use a Nix expression to build your own dependencies. For
example, the Python example could have been written as:
#! /usr/bin/env nix-shell
#! nix-shell deps.nix -i python
where the file deps.nix
in the same directory as the #!
-script
contains:
with import <nixpkgs> {};
runCommand "dummy" { buildInputs = [ python pythonPackages.prettytable ]; } ""
Name
nix-store
- manipulate or query the Nix store
Synopsis
nix-store
operation [options…] [arguments…]
[--option
name value]
[--add-root
path]
Description
The command nix-store
performs primitive operations on the Nix store.
You generally do not need to run this command manually.
nix-store
takes exactly one operation flag which indicates the subcommand to be performed. The following operations are available:
--realise
--serve
--gc
--delete
--query
--add
--add-fixed
--verify
--verify-path
--repair-path
--dump
--restore
--export
--import
--optimise
--read-log
--dump-db
--load-db
--print-env
--generate-binary-cache-key
These pages can be viewed offline:
-
man nix-store-<operation>
.Example:
man nix-store-realise
-
nix-store --help --<operation>
Example:
nix-store --help --realise
Name
nix-store --add-fixed
- add paths to store using given hashing algorithm
Synopsis
nix-store
--add-fixed
[--recursive
] algorithm paths…
Description
The operation --add-fixed
adds the specified paths to the Nix store.
Unlike --add
paths are registered using the specified hashing
algorithm, resulting in the same output path as a fixed-output
derivation. This can be used for sources that are not available from a
public url or broke since the download expression was written.
This operation has the following options:
--recursive
Use recursive instead of flat hashing mode, used when adding directories to the store.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Example
$ nix-store --add-fixed sha256 ./hello-2.10.tar.gz
/nix/store/3x7dwzq014bblazs7kq20p9hyzz0qh8g-hello-2.10.tar.gz
Name
nix-store --add
- add paths to Nix store
Synopsis
nix-store
--add
paths…
Description
The operation --add
adds the specified paths to the Nix store. It
prints the resulting paths in the Nix store on standard output.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Example
$ nix-store --add ./foo.c
/nix/store/m7lrha58ph6rcnv109yzx1nk1cj7k7zf-foo.c
Name
nix-store --delete
- delete store paths
Synopsis
nix-store
--delete
[--ignore-liveness
] paths…
Description
The operation --delete
deletes the store paths paths from the Nix
store, but only if it is safe to do so; that is, when the path is not
reachable from a root of the garbage collector. This means that you can
only delete paths that would also be deleted by nix-store --gc
. Thus,
--delete
is a more targeted version of --gc
.
With the option --ignore-liveness
, reachability from the roots is
ignored. However, the path still won’t be deleted if there are other
paths in the store that refer to it (i.e., depend on it).
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Example
$ nix-store --delete /nix/store/zq0h41l75vlb4z45kzgjjmsjxvcv1qk7-mesa-6.4
0 bytes freed (0.00 MiB)
error: cannot delete path `/nix/store/zq0h41l75vlb4z45kzgjjmsjxvcv1qk7-mesa-6.4' since it is still alive
Name
nix-store --dump-db
- export Nix database
Synopsis
nix-store
--dump-db
[paths…]
Description
The operation --dump-db
writes a dump of the Nix database to standard
output. It can be loaded into an empty Nix store using --load-db
. This
is useful for making backups and when migrating to different database
schemas.
By default, --dump-db
will dump the entire Nix database. When one or
more store paths is passed, only the subset of the Nix database for
those store paths is dumped. As with --export
, the user is responsible
for passing all the store paths for a closure. See --export
for an
example.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Name
nix-store --dump
- write a single path to a Nix Archive
Synopsis
nix-store
--dump
path
Description
The operation --dump
produces a NAR (Nix ARchive) file containing the
contents of the file system tree rooted at path. The archive is
written to standard output.
A NAR archive is like a TAR or Zip archive, but it contains only the information that Nix considers important. For instance, timestamps are elided because all files in the Nix store have their timestamp set to 0 anyway. Likewise, all permissions are left out except for the execute bit, because all files in the Nix store have 444 or 555 permission.
Also, a NAR archive is canonical, meaning that “equal” paths always
produce the same NAR archive. For instance, directory entries are
always sorted so that the actual on-disk order doesn’t influence the
result. This means that the cryptographic hash of a NAR dump of a
path is usable as a fingerprint of the contents of the path. Indeed,
the hashes of store paths stored in Nix’s database (see nix-store --query --hash
) are SHA-256 hashes of the NAR dump of each store path.
NAR archives support filenames of unlimited length and 64-bit file sizes. They can contain regular files, directories, and symbolic links, but not other types of files (such as device nodes).
A Nix archive can be unpacked using nix-store --restore
.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Name
nix-store --export
- export store paths to a Nix Archive
Synopsis
nix-store
--export
paths…
Description
The operation --export
writes a serialisation of the specified store
paths to standard output in a format that can be imported into another
Nix store with nix-store --import
. This is like nix-store --dump
, except that the NAR archive produced by that command doesn’t
contain the necessary meta-information to allow it to be imported into
another Nix store (namely, the set of references of the path).
This command does not produce a closure of the specified paths, so if a store path references other store paths that are missing in the target Nix store, the import will fail.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
To copy a whole closure, do something like:
$ nix-store --export $(nix-store --query --requisites paths) > out
To import the whole closure again, run:
$ nix-store --import < out
Name
nix-store --gc
- run garbage collection
Synopsis
nix-store
--gc
[--print-roots
| --print-live
| --print-dead
] [--max-freed
bytes]
Description
Without additional flags, the operation --gc
performs a garbage
collection on the Nix store. That is, all paths in the Nix store not
reachable via file system references from a set of “roots”, are deleted.
The following suboperations may be specified:
-
--print-roots
This operation prints on standard output the set of roots used by the garbage collector. -
--print-live
This operation prints on standard output the set of “live” store paths, which are all the store paths reachable from the roots. Live paths should never be deleted, since that would break consistency — it would become possible that applications are installed that reference things that are no longer present in the store. -
--print-dead
This operation prints out on standard output the set of “dead” store paths, which is just the opposite of the set of live paths: any path in the store that is not live (with respect to the roots) is dead.
By default, all unreachable paths are deleted. The following options control what gets deleted and in what order:
--max-freed
bytes
Keep deleting paths until at least bytes bytes have been deleted, then stop. The argument bytes can be followed by the multiplicative suffixK
,M
,G
orT
, denoting KiB, MiB, GiB or TiB units.
The behaviour of the collector is also influenced by the
keep-outputs
and keep-derivations
settings in the Nix
configuration file.
By default, the collector prints the total number of freed bytes when it
finishes (or when it is interrupted). With --print-dead
, it prints the
number of bytes that would be freed.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
To delete all unreachable paths, just do:
$ nix-store --gc
deleting `/nix/store/kq82idx6g0nyzsp2s14gfsc38npai7lf-cairo-1.0.4.tar.gz.drv'
...
8825586 bytes freed (8.42 MiB)
To delete at least 100 MiBs of unreachable paths:
$ nix-store --gc --max-freed $((100 * 1024 * 1024))
Name
nix-store --generate-binary-cache-key
- generate key pair to use for a binary cache
Synopsis
nix-store
--generate-binary-cache-key
key-name secret-key-file public-key-file
Description
This command generates an Ed25519 key pair that can be used to create a signed binary cache. It takes three mandatory parameters:
-
A key name, such as
cache.example.org-1
, that is used to look up keys on the client when it verifies signatures. It can be anything, but it’s suggested to use the host name of your cache (e.g.cache.example.org
) with a suffix denoting the number of the key (to be incremented every time you need to revoke a key). -
The file name where the secret key is to be stored.
-
The file name where the public key is to be stored.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Name
nix-store --import
- import Nix Archive into the store
Synopsis
nix-store
--import
Description
The operation --import
reads a serialisation of a set of store paths
produced by nix-store --export
from standard input and adds those
store paths to the Nix store. Paths that already exist in the Nix store
are ignored. If a path refers to another path that doesn’t exist in the
Nix store, the import fails.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Name
nix-store --load-db
- import Nix database
Synopsis
nix-store
--load-db
Description
The operation --load-db
reads a dump of the Nix database created by
--dump-db
from standard input and loads it into the Nix database.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Name
nix-store --optimise
- reduce disk space usage
Synopsis
nix-store
--optimise
Description
The operation --optimise
reduces Nix store disk space usage by finding
identical files in the store and hard-linking them to each other. It
typically reduces the size of the store by something like 25-35%. Only
regular files and symlinks are hard-linked in this manner. Files are
considered identical when they have the same NAR archive serialisation:
that is, regular files must have the same contents and permission
(executable or non-executable), and symlinks must have the same
contents.
After completion, or when the command is interrupted, a report on the achieved savings is printed on standard error.
Use -vv
or -vvv
to get some progress indication.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Example
$ nix-store --optimise
hashing files in `/nix/store/qhqx7l2f1kmwihc9bnxs7rc159hsxnf3-gcc-4.1.1'
...
541838819 bytes (516.74 MiB) freed by hard-linking 54143 files;
there are 114486 files with equal contents out of 215894 files in total
Name
nix-store --print-env
- print the build environment of a derivation
Synopsis
nix-store
--print-env
drvpath
Description
The operation --print-env
prints out the environment of a derivation
in a format that can be evaluated by a shell. The command line arguments
of the builder are placed in the variable _args
.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Example
$ nix-store --print-env $(nix-instantiate '<nixpkgs>' -A firefox)
…
export src; src='/nix/store/plpj7qrwcz94z2psh6fchsi7s8yihc7k-firefox-12.0.source.tar.bz2'
export stdenv; stdenv='/nix/store/7c8asx3yfrg5dg1gzhzyq2236zfgibnn-stdenv'
export system; system='x86_64-linux'
export _args; _args='-e /nix/store/9krlzvny65gdc8s7kpb6lkx8cd02c25c-default-builder.sh'
Name
nix-store --query
- display information about store paths
Synopsis
nix-store
{--query
| -q
}
{--outputs
| --requisites
| -R
| --references
| --referrers
|
--referrers-closure
| --deriver
| -d
| --valid-derivers
|
--graph
| --tree
| --binding
name | -b
name | --hash
|
--size
| --roots
}
[--use-output
] [-u
] [--force-realise
] [-f
]
paths…
Description
The operation --query
displays various bits of information about the
store paths . The queries are described below. At most one query can be
specified. The default query is --outputs
.
The paths paths may also be symlinks from outside of the Nix store, to the Nix store. In that case, the query is applied to the target of the symlink.
Common query options
-
--use-output
;-u
For each argument to the query that is a store derivation, apply the query to the output path of the derivation instead. -
--force-realise
;-f
Realise each argument to the query first (seenix-store --realise
).
Queries
-
--outputs
Prints out the output paths of the store derivations paths. These are the paths that will be produced when the derivation is built. -
--requisites
;-R
Prints out the closure of the store path paths.This query has one option:
--include-outputs
Also include the existing output paths of store derivations, and their closures.
This query can be used to implement various kinds of deployment. A source deployment is obtained by distributing the closure of a store derivation. A binary deployment is obtained by distributing the closure of an output path. A cache deployment (combined source/binary deployment, including binaries of build-time-only dependencies) is obtained by distributing the closure of a store derivation and specifying the option
--include-outputs
. -
--references
Prints the set of references of the store paths paths, that is, their immediate dependencies. (For all dependencies, use--requisites
.) -
--referrers
Prints the set of referrers of the store paths paths, that is, the store paths currently existing in the Nix store that refer to one of paths. Note that contrary to the references, the set of referrers is not constant; it can change as store paths are added or removed. -
--referrers-closure
Prints the closure of the set of store paths paths under the referrers relation; that is, all store paths that directly or indirectly refer to one of paths. These are all the path currently in the Nix store that are dependent on paths. -
--deriver
;-d
Prints the deriver that was used to build the store paths paths. If the path has no deriver (e.g., if it is a source file), or if the deriver is not known (e.g., in the case of a binary-only deployment), the stringunknown-deriver
is printed. The returned deriver is not guaranteed to exist in the local store, for example when paths were substituted from a binary cache. Use--valid-derivers
instead to obtain valid paths only. -
--valid-derivers
Prints a set of derivation files (.drv
) which are supposed produce said paths when realized. Might print nothing, for example for source paths or paths subsituted from a binary cache. -
--graph
Prints the references graph of the store paths paths in the format of thedot
tool of AT&T's Graphviz package. This can be used to visualise dependency graphs. To obtain a build-time dependency graph, apply this to a store derivation. To obtain a runtime dependency graph, apply it to an output path. -
--tree
Prints the references graph of the store paths paths as a nested ASCII tree. References are ordered by descending closure size; this tends to flatten the tree, making it more readable. The query only recurses into a store path when it is first encountered; this prevents a blowup of the tree representation of the graph. -
--graphml
Prints the references graph of the store paths paths in the GraphML file format. This can be used to visualise dependency graphs. To obtain a build-time dependency graph, apply this to a store derivation. To obtain a runtime dependency graph, apply it to an output path. -
--binding
name;-b
name
Prints the value of the attribute name (i.e., environment variable) of the store derivations paths. It is an error for a derivation to not have the specified attribute. -
--hash
Prints the SHA-256 hash of the contents of the store paths paths (that is, the hash of the output ofnix-store --dump
on the given paths). Since the hash is stored in the Nix database, this is a fast operation. -
--size
Prints the size in bytes of the contents of the store paths paths — to be precise, the size of the output ofnix-store --dump
on the given paths. Note that the actual disk space required by the store paths may be higher, especially on filesystems with large cluster sizes. -
--roots
Prints the garbage collector roots that point, directly or indirectly, at the store paths paths.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
Print the closure (runtime dependencies) of the svn
program in the
current user environment:
$ nix-store --query --requisites $(which svn)
/nix/store/5mbglq5ldqld8sj57273aljwkfvj22mc-subversion-1.1.4
/nix/store/9lz9yc6zgmc0vlqmn2ipcpkjlmbi51vv-glibc-2.3.4
...
Print the build-time dependencies of svn
:
$ nix-store --query --requisites $(nix-store --query --deriver $(which svn))
/nix/store/02iizgn86m42q905rddvg4ja975bk2i4-grep-2.5.1.tar.bz2.drv
/nix/store/07a2bzxmzwz5hp58nf03pahrv2ygwgs3-gcc-wrapper.sh
/nix/store/0ma7c9wsbaxahwwl04gbw3fcd806ski4-glibc-2.3.4.drv
... lots of other paths ...
The difference with the previous example is that we ask the closure of
the derivation (-qd
), not the closure of the output path that contains
svn
.
Show the build-time dependencies as a tree:
$ nix-store --query --tree $(nix-store --query --deriver $(which svn))
/nix/store/7i5082kfb6yjbqdbiwdhhza0am2xvh6c-subversion-1.1.4.drv
+---/nix/store/d8afh10z72n8l1cr5w42366abiblgn54-builder.sh
+---/nix/store/fmzxmpjx2lh849ph0l36snfj9zdibw67-bash-3.0.drv
| +---/nix/store/570hmhmx3v57605cqg9yfvvyh0nnb8k8-bash
| +---/nix/store/p3srsbd8dx44v2pg6nbnszab5mcwx03v-builder.sh
...
Show all paths that depend on the same OpenSSL library as svn
:
$ nix-store --query --referrers $(nix-store --query --binding openssl $(nix-store --query --deriver $(which svn)))
/nix/store/23ny9l9wixx21632y2wi4p585qhva1q8-sylpheed-1.0.0
/nix/store/5mbglq5ldqld8sj57273aljwkfvj22mc-subversion-1.1.4
/nix/store/dpmvp969yhdqs7lm2r1a3gng7pyq6vy4-subversion-1.1.3
/nix/store/l51240xqsgg8a7yrbqdx1rfzyv6l26fx-lynx-2.8.5
Show all paths that directly or indirectly depend on the Glibc (C
library) used by svn
:
$ nix-store --query --referrers-closure $(ldd $(which svn) | grep /libc.so | awk '{print $3}')
/nix/store/034a6h4vpz9kds5r6kzb9lhh81mscw43-libgnomeprintui-2.8.2
/nix/store/15l3yi0d45prm7a82pcrknxdh6nzmxza-gawk-3.1.4
...
Note that ldd
is a command that prints out the dynamic libraries used
by an ELF executable.
Make a picture of the runtime dependency graph of the current user environment:
$ nix-store --query --graph ~/.nix-profile | dot -Tps > graph.ps
$ gv graph.ps
Show every garbage collector root that points to a store path that
depends on svn
:
$ nix-store --query --roots $(which svn)
/nix/var/nix/profiles/default-81-link
/nix/var/nix/profiles/default-82-link
/home/eelco/.local/state/nix/profiles/profile-97-link
Name
nix-store --read-log
- print build log
Synopsis
nix-store
{--read-log
| -l
} paths…
Description
The operation --read-log
prints the build log of the specified store
paths on standard output. The build log is whatever the builder of a
derivation wrote to standard output and standard error. If a store path
is not a derivation, the deriver of the store path is used.
Build logs are kept in /nix/var/log/nix/drvs
. However, there is no
guarantee that a build log is available for any particular store path.
For instance, if the path was downloaded as a pre-built binary through a
substitute, then the log is unavailable.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Example
$ nix-store --read-log $(which ktorrent)
building /nix/store/dhc73pvzpnzxhdgpimsd9sw39di66ph1-ktorrent-2.2.1
unpacking sources
unpacking source archive /nix/store/p8n1jpqs27mgkjw07pb5269717nzf5f8-ktorrent-2.2.1.tar.gz
ktorrent-2.2.1/
ktorrent-2.2.1/NEWS
...
Name
nix-store --realise
- build or fetch store objects
Synopsis
nix-store
{--realise
| -r
} paths… [--dry-run
]
Description
Each of paths is processed as follows:
- If the path leads to a store derivation:
- If it is not valid, substitute the store derivation file itself.
- Realise its output paths:
- Try to fetch from substituters the store objects associated with the output paths in the store derivation's closure.
- With content-addressed derivations (experimental): Determine the output paths to realise by querying content-addressed realisation entries in the Nix database.
- For any store paths that cannot be substituted, produce the required store objects. This involves first realising all outputs of the derivation's dependencies and then running the derivation's
builder
executable.
- Otherwise, and if the path is not already valid: Try to fetch the associated store objects in the path's closure from substituters.
If no substitutes are available and no store derivation is given, realisation fails.
The resulting paths are printed on standard output. For non-derivation arguments, the argument itself is printed.
Special exit codes for build failure
1xx status codes are used when requested builds failed. The following codes are in use:
-
100
Generic build failureThe builder process returned with a non-zero exit code.
-
101
Build timeoutThe build was aborted because it did not complete within the specified
timeout
. -
102
Hash mismatchThe build output was rejected because it does not match the
outputHash
attribute of the derivation. -
104
Not deterministicThe build succeeded in check mode but the resulting output is not binary reproducible.
With the --keep-going
flag it's possible for multiple failures to occur.
In this case the 1xx status codes are or combined using
bitwise OR.
0b1100100
^^^^
|||`- timeout
||`-- output hash mismatch
|`--- build failure
`---- not deterministic
Options
-
--dry-run
Print on standard error a description of what packages would be built or downloaded, without actually performing the operation. -
--ignore-unknown
If a non-derivation path does not have a substitute, then silently ignore it. -
--check
This option allows you to check whether a derivation is deterministic. It rebuilds the specified derivation and checks whether the result is bitwise-identical with the existing outputs, printing an error if that’s not the case. The outputs of the specified derivation must already exist. When used with-K
, if an output path is not identical to the corresponding output from the previous build, the new output path is left in/nix/store/name.check.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
This operation is typically used to build store derivations produced by
nix-instantiate
:
$ nix-store --realise $(nix-instantiate ./test.nix)
/nix/store/31axcgrlbfsxzmfff1gyj1bf62hvkby2-aterm-2.3.1
This is essentially what nix-build
does.
To test whether a previously-built derivation is deterministic:
$ nix-build '<nixpkgs>' --attr hello --check -K
Use nix-store --read-log
to show the stderr and stdout of a build:
$ nix-store --read-log $(nix-instantiate ./test.nix)
Name
nix --repair-path
- re-download path from substituter
Synopsis
nix-store
--repair-path
paths…
Description
The operation --repair-path
attempts to “repair” the specified paths
by redownloading them using the available substituters. If no
substitutes are available, then repair is not possible.
Warning
During repair, there is a very small time window during which the old path (if it exists) is moved out of the way and replaced with the new path. If repair is interrupted in between, then the system may be left in a broken state (e.g., if the path contains a critical system component like the GNU C Library).
Example
$ nix-store --verify-path /nix/store/dj7a81wsm1ijwwpkks3725661h3263p5-glibc-2.13
path `/nix/store/dj7a81wsm1ijwwpkks3725661h3263p5-glibc-2.13' was modified!
expected hash `2db57715ae90b7e31ff1f2ecb8c12ec1cc43da920efcbe3b22763f36a1861588',
got `481c5aa5483ebc97c20457bb8bca24deea56550d3985cda0027f67fe54b808e4'
$ nix-store --repair-path /nix/store/dj7a81wsm1ijwwpkks3725661h3263p5-glibc-2.13
fetching path `/nix/store/d7a81wsm1ijwwpkks3725661h3263p5-glibc-2.13'...
…
Name
nix-store --restore
- extract a Nix archive
Synopsis
nix-store
--restore
path
Description
The operation --restore
unpacks a NAR archive to path, which must
not already exist. The archive is read from standard input.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Name
nix-store --serve
- serve local Nix store over SSH
Synopsis
nix-store
--serve
[--write
]
Description
The operation --serve
provides access to the Nix store over stdin and
stdout, and is intended to be used as a means of providing Nix store
access to a restricted ssh user.
The following flags are available:
--write
Allow the connected client to request the realization of derivations. In effect, this can be used to make the host act as a remote builder.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
To turn a host into a build server, the authorized_keys
file can be
used to provide build access to a given SSH public key:
$ cat <<EOF >>/root/.ssh/authorized_keys
command="nice -n20 nix-store --serve --write" ssh-rsa AAAAB3NzaC1yc2EAAAA...
EOF
Name
nix-store --verify-path
- check path contents against Nix database
Synopsis
nix-store
--verify-path
paths…
Description
The operation --verify-path
compares the contents of the given store
paths to their cryptographic hashes stored in Nix’s database. For every
changed path, it prints a warning message. The exit status is 0 if no
path has changed, and 1 otherwise.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Example
To verify the integrity of the svn
command and all its dependencies:
$ nix-store --verify-path $(nix-store --query --requisites $(which svn))
Name
nix-store --verify
- check Nix database for consistency
Synopsis
nix-store
--verify
[--check-contents
] [--repair
]
Description
The operation --verify
verifies the internal consistency of the Nix
database, and the consistency between the Nix database and the Nix
store. Any inconsistencies encountered are automatically repaired.
Inconsistencies are generally the result of the Nix store or database
being modified by non-Nix tools, or of bugs in Nix itself.
This operation has the following options:
-
--check-contents
Checks that the contents of every valid store path has not been altered by computing a SHA-256 hash of the contents and comparing it with the hash stored in the Nix database at build time. Paths that have been modified are printed out. For large stores,--check-contents
is obviously quite slow. -
--repair
If any valid path is missing from the store, or (if--check-contents
is given) the contents of a valid path has been modified, then try to repair the path by redownloading it. Seenix-store --repair-path
for details.
Options
The following options are allowed for all nix-store
operations, but may not always have an effect.
-
--add-root
pathCauses the result of a realisation (
--realise
and--force-realise
) to be registered as a root of the garbage collector. path will be created as a symlink to the resulting store path. In addition, a uniquely named symlink to path will be created in/nix/var/nix/gcroots/auto/
. For instance,$ nix-store --add-root /home/eelco/bla/result --realise ... $ ls -l /nix/var/nix/gcroots/auto lrwxrwxrwx 1 ... 2005-03-13 21:10 dn54lcypm8f8... -> /home/eelco/bla/result $ ls -l /home/eelco/bla/result lrwxrwxrwx 1 ... 2005-03-13 21:10 /home/eelco/bla/result -> /nix/store/1r11343n6qd4...-f-spot-0.0.10
Thus, when
/home/eelco/bla/result
is removed, the GC root in theauto
directory becomes a dangling symlink and will be ignored by the collector.Warning
Note that it is not possible to move or rename GC roots, since the symlink in the
auto
directory will still point to the old location.If there are multiple results, then multiple symlinks will be created by sequentially numbering symlinks beyond the first one (e.g.,
foo
,foo-2
,foo-3
, and so on).
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Name
nix-env
- manipulate or query Nix user environments
Synopsis
nix-env
operation [options] [arguments…]
[--option
name value]
[--arg
name value]
[--argstr
name value]
[{--file
| -f
} path]
[{--profile
| -p
} path]
[--system-filter
system]
[--dry-run
]
Description
The command nix-env
is used to manipulate Nix user environments. User
environments are sets of software packages available to a user at some
point in time. In other words, they are a synthesised view of the
programs available in the Nix store. There may be many user
environments: different users can have different environments, and
individual users can switch between different environments.
nix-env
takes exactly one operation flag which indicates the
subcommand to be performed. The following operations are available:
--install
- add packages to user environment--upgrade
- upgrade packages in user environment--uninstall
- remove packages from user environment--set
- set profile to contain a specified derivation--set-flag
- modify meta attributes of installed packages--query
- display information about packages--switch-profile
- set user environment to a given profile--list-generations
- list profile generations--delete-generations
- delete profile generations--switch-generation
- set user environment to a given profile generation--rollback
- set user environment to previous generation
These pages can be viewed offline:
-
man nix-env-<operation>
.Example:
man nix-env-install
-
nix-env --help --<operation>
Example:
nix-env --help --install
Selectors
Several commands, such as nix-env --query
and nix-env --install
, take a list of
arguments that specify the packages on which to operate. These are
extended regular expressions that must match the entire name of the
package. (For details on regular expressions, see regex(7).) The match is
case-sensitive. The regular expression can optionally be followed by a
dash and a version number; if omitted, any version of the package will
match. Here are some examples:
-
firefox
Matches the package namefirefox
and any version. -
firefox-32.0
Matches the package namefirefox
and version32.0
. -
gtk\\+
Matches the package namegtk+
. The+
character must be escaped using a backslash to prevent it from being interpreted as a quantifier, and the backslash must be escaped in turn with another backslash to ensure that the shell passes it on. -
.\*
Matches any package name. This is the default for most commands. -
'.*zip.*'
Matches any package name containing the stringzip
. Note the dots:'*zip*'
does not work, because in a regular expression, the character*
is interpreted as a quantifier. -
'.*(firefox|chromium).*'
Matches any package name containing the stringsfirefox
orchromium
.
Files
nix-env
operates on the following files.
Default Nix expression
The source for the default Nix expressions used by nix-env
:
~/.nix-defexpr
$XDG_STATE_HOME/nix/defexpr
ifuse-xdg-base-directories
is set totrue
.
It is loaded as follows:
- If the default expression is a file, it is loaded as a Nix expression.
- If the default expression is a directory containing a
default.nix
file, thatdefault.nix
file is loaded as a Nix expression. - If the default expression is a directory without a
default.nix
file, then its contents (both files and subdirectories) are loaded as Nix expressions. The expressions are combined into a single attribute set, each expression under an attribute with the same name as the original file or subdirectory. Subdirectories without adefault.nix
file are traversed recursively in search of more Nix expressions, but the names of these intermediate directories are not added to the attribute paths of the default Nix expression.
Then, the resulting expression is interpreted like this:
- If the expression is an attribute set, it is used as the default Nix expression.
- If the expression is a function, an empty set is passed as argument and the return value is used as the default Nix expression.
For example, if the default expression contains two files, foo.nix
and bar.nix
, then the default Nix expression will be equivalent to
{
foo = import ~/.nix-defexpr/foo.nix;
bar = import ~/.nix-defexpr/bar.nix;
}
The file manifest.nix
is always ignored.
The command nix-channel
places a symlink to the user's current channels profile in this directory.
This makes all subscribed channels available as attributes in the default expression.
User channel link
A symlink that ensures that nix-env
can find your channels:
~/.nix-defexpr/channels
$XDG_STATE_HOME/defexpr/channels
ifuse-xdg-base-directories
is set totrue
.
This symlink points to:
$XDG_STATE_HOME/profiles/channels
for regular users$NIX_STATE_DIR/profiles/per-user/root/channels
forroot
In a multi-user installation, you may also have ~/.nix-defexpr/channels_root
, which links to the channels of the root user.nix-env
: ../nix-env.md
Profiles
A directory that contains links to profiles managed by nix-env
and nix profile
:
$XDG_STATE_HOME/nix/profiles
for regular users$NIX_STATE_DIR/profiles/per-user/root
if the user isroot
A profile is a directory of symlinks to files in the Nix store.
Filesystem layout
Profiles are versioned as follows. When using a profile named path, path is a symlink to path-
N-link
, where N is the version of the profile.
In turn, path-
N-link
is a symlink to a path in the Nix store.
For example:
$ ls -l ~alice/.local/state/nix/profiles/profile*
lrwxrwxrwx 1 alice users 14 Nov 25 14:35 /home/alice/.local/state/nix/profiles/profile -> profile-7-link
lrwxrwxrwx 1 alice users 51 Oct 28 16:18 /home/alice/.local/state/nix/profiles/profile-5-link -> /nix/store/q69xad13ghpf7ir87h0b2gd28lafjj1j-profile
lrwxrwxrwx 1 alice users 51 Oct 29 13:20 /home/alice/.local/state/nix/profiles/profile-6-link -> /nix/store/6bvhpysd7vwz7k3b0pndn7ifi5xr32dg-profile
lrwxrwxrwx 1 alice users 51 Nov 25 14:35 /home/alice/.local/state/nix/profiles/profile-7-link -> /nix/store/mp0x6xnsg0b8qhswy6riqvimai4gm677-profile
Each of these symlinks is a root for the Lix garbage collector.
The contents of the store path corresponding to each version of the profile is a tree of symlinks to the files of the installed packages, e.g.
$ ll -R ~eelco/.local/state/nix/profiles/profile-7-link/
/home/eelco/.local/state/nix/profiles/profile-7-link/:
total 20
dr-xr-xr-x 2 root root 4096 Jan 1 1970 bin
-r--r--r-- 2 root root 1402 Jan 1 1970 manifest.nix
dr-xr-xr-x 4 root root 4096 Jan 1 1970 share
/home/eelco/.local/state/nix/profiles/profile-7-link/bin:
total 20
lrwxrwxrwx 5 root root 79 Jan 1 1970 chromium -> /nix/store/ijm5k0zqisvkdwjkc77mb9qzb35xfi4m-chromium-86.0.4240.111/bin/chromium
lrwxrwxrwx 7 root root 87 Jan 1 1970 spotify -> /nix/store/w9182874m1bl56smps3m5zjj36jhp3rn-spotify-1.1.26.501.gbe11e53b-15/bin/spotify
lrwxrwxrwx 3 root root 79 Jan 1 1970 zoom-us -> /nix/store/wbhg2ga8f3h87s9h5k0slxk0m81m4cxl-zoom-us-5.3.469451.0927/bin/zoom-us
/home/eelco/.local/state/nix/profiles/profile-7-link/share/applications:
total 12
lrwxrwxrwx 4 root root 120 Jan 1 1970 chromium-browser.desktop -> /nix/store/4cf803y4vzfm3gyk3vzhzb2327v0kl8a-chromium-unwrapped-86.0.4240.111/share/applications/chromium-browser.desktop
lrwxrwxrwx 7 root root 110 Jan 1 1970 spotify.desktop -> /nix/store/w9182874m1bl56smps3m5zjj36jhp3rn-spotify-1.1.26.501.gbe11e53b-15/share/applications/spotify.desktop
lrwxrwxrwx 3 root root 107 Jan 1 1970 us.zoom.Zoom.desktop -> /nix/store/wbhg2ga8f3h87s9h5k0slxk0m81m4cxl-zoom-us-5.3.469451.0927/share/applications/us.zoom.Zoom.desktop
…
Each profile version contains a manifest file:
manifest.nix
used bynix-env
.manifest.json
used bynix profile
(experimental).
User profile link
A symbolic link to the user's current profile:
~/.nix-profile
$XDG_STATE_HOME/nix/profile
ifuse-xdg-base-directories
is set totrue
.
By default, this symlink points to:
$XDG_STATE_HOME/nix/profiles/profile
for regular users$NIX_STATE_DIR/profiles/per-user/root/profile
forroot
The PATH
environment variable should include /bin
subdirectory of the profile link (e.g. ~/.nix-profile/bin
) for the user environment to be visible to the user.
The installer sets this up by default, unless you enable use-xdg-base-directories
.
Name
nix-env --delete-generations
- delete profile generations
Synopsis
nix-env
--delete-generations
generations
Description
This operation deletes the specified generations of the current profile.
generations can be a one of the following:
-
<number>...
:
A list of generation numbers, each one a separate command-line argument.Delete exactly the profile generations given by their generation number. Deleting the current generation is not allowed.
-
The special value
old
Delete all generations except the current one.
WARNING
Older and newer generations will be deleted by this operation.
One might expect this to just delete older generations than the curent one, but that is only true if the current generation is also the latest. Because one can roll back to a previous generation, it is possible to have generations newer than the current one. They will also be deleted.
-
<number>d
:
The last number daysExample:
30d
Delete all generations created more than number days ago, except the most recent one of them. This allows rolling back to generations that were available within the specified period.
-
+<number>
:
The last number generations up to the presentExample:
+5
Keep the last number generations, along with any newer than current.
Periodically deleting old generations is important to make garbage collection effective. The is because profiles are also garbage collection roots — any store object reachable from a profile is "alive" and ineligible for deletion.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_PROFILE
Location of the Nix profile. Defaults to the target of the symlink~/.nix-profile
, if it exists, or/nix/var/nix/profiles/default
otherwise.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
Delete explicit generation numbers
$ nix-env --delete-generations 3 4 8
Delete the generations numbered 3, 4, and 8, so long as the current active generation is not any of those.
Keep most-recent by count (number of generations)
$ nix-env --delete-generations +5
Suppose 30
is the current generation, and we currently have generations numbered 20
through 32
.
Then this command will delete generations 20
through 25
(<= 30 - 5
),
and keep generations 26
through 31
(> 30 - 5
).
Keep most-recent by time (number of days)
$ nix-env --delete-generations 30d
This command will delete all generations older than 30 days, except for the generation that was active 30 days ago (if it currently exists).
Delete all older
$ nix-env --profile other_profile --delete-generations old
Name
nix-env --install
- add packages to user environment
Synopsis
nix-env
{--install
| -i
} args…
[{--prebuilt-only
| -b
}]
[{--attr
| -A
}]
[--from-expression
] [-E
]
[--from-profile
path]
[--preserve-installed
| -P
]
[--remove-all
| -r
]
Description
The install operation creates a new user environment, based on the current generation of the active profile, to which a set of store paths described by args is added. The arguments args map to store paths in a number of possible ways:
-
By default, args is a set of derivation names denoting derivations in the active Nix expression. These are realised, and the resulting output paths are installed. Currently installed derivations with a name equal to the name of a derivation being added are removed unless the option
--preserve-installed
is specified.If there are multiple derivations matching a name in args that have the same name (e.g.,
gcc-3.3.6
andgcc-4.1.1
), then the derivation with the highest priority is used. A derivation can define a priority by declaring themeta.priority
attribute. This attribute should be a number, with a higher value denoting a lower priority. The default priority is5
.If there are multiple matching derivations with the same priority, then the derivation with the highest version will be installed.
You can force the installation of multiple derivations with the same name by being specific about the versions. For instance,
nix-env --install gcc-3.3.6 gcc-4.1.1
will install both version of GCC (and will probably cause a user environment conflict!). -
If
--attr
(-A
) is specified, the arguments are attribute paths that select attributes from the top-level Nix expression. This is faster than using derivation names and unambiguous. To find out the attribute paths of available packages, usenix-env --query --available --attr-path
. -
If
--from-profile
path is given, args is a set of names denoting installed store paths in the profile path. This is an easy way to copy user environment elements from one profile to another. -
If
--from-expression
is given, args are Nix functions that are called with the active Nix expression as their single argument. The derivations returned by those function calls are installed. This allows derivations to be specified in an unambiguous way, which is necessary if there are multiple derivations with the same name. -
If args are store derivations, then these are realised, and the resulting output paths are installed.
-
If args are store paths that are not store derivations, then these are realised and installed.
-
By default all outputs are installed for each derivation. That can be reduced by setting
meta.outputsToInstall
.
Flags
-
--prebuilt-only
/-b
Use only derivations for which a substitute is registered, i.e., there is a pre-built binary available that can be downloaded in lieu of building the derivation. Thus, no packages will be built from source. -
--preserve-installed
/-P
Do not remove derivations with a name matching one of the derivations being installed. Usually, trying to have two versions of the same package installed in the same generation of a profile will lead to an error in building the generation, due to file name clashes between the two versions. However, this is not the case for all packages. -
--remove-all
/-r
Remove all previously installed packages first. This is equivalent to runningnix-env --uninstall '.*'
first, except that everything happens in a single transaction.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_PROFILE
Location of the Nix profile. Defaults to the target of the symlink~/.nix-profile
, if it exists, or/nix/var/nix/profiles/default
otherwise.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
To install a package using a specific attribute path from the active Nix expression:
$ nix-env --install --attr gcc40mips
installing `gcc-4.0.2'
$ nix-env --install --attr xorg.xorgserver
installing `xorg-server-1.2.0'
To install a specific version of gcc
using the derivation name:
$ nix-env --install gcc-3.3.2
installing `gcc-3.3.2'
uninstalling `gcc-3.1'
Using attribute path for selecting a package is preferred, as it is much faster and there will not be multiple matches.
Note the previously installed version is removed, since
--preserve-installed
was not specified.
To install an arbitrary version:
$ nix-env --install gcc
installing `gcc-3.3.2'
To install all derivations in the Nix expression foo.nix
:
$ nix-env --file ~/foo.nix --install '.*'
To copy the store path with symbolic name gcc
from another profile:
$ nix-env --install --from-profile /nix/var/nix/profiles/foo gcc
To install a specific [store derivation] (typically created by
nix-instantiate
):
$ nix-env --install /nix/store/fibjb1bfbpm5mrsxc4mh2d8n37sxh91i-gcc-3.4.3.drv
To install a specific output path:
$ nix-env --install /nix/store/y3cgx0xj1p4iv9x0pnnmdhr8iyg741vk-gcc-3.4.3
To install from a Nix expression specified on the command-line:
$ nix-env --file ./foo.nix --install --expr \
'f: (f {system = "i686-linux";}).subversionWithJava'
I.e., this evaluates to (f: (f {system = "i686-linux";}).subversionWithJava) (import ./foo.nix)
, thus selecting
the subversionWithJava
attribute from the set returned by calling the
function defined in ./foo.nix
.
A dry-run tells you which paths will be downloaded or built from source:
$ nix-env --file '<nixpkgs>' --install --attr hello --dry-run
(dry run; not doing anything)
installing ‘hello-2.10’
this path will be fetched (0.04 MiB download, 0.19 MiB unpacked):
/nix/store/wkhdf9jinag5750mqlax6z2zbwhqb76n-hello-2.10
...
To install Firefox from the latest revision in the Nixpkgs/NixOS 14.12 channel:
$ nix-env --file https://github.com/NixOS/nixpkgs/archive/nixos-14.12.tar.gz --install --attr firefox
Name
nix-env --list-generations
- list profile generations
Synopsis
nix-env
--list-generations
Description
This operation print a list of all the currently existing generations
for the active profile. These may be switched to using the
--switch-generation
operation. It also prints the creation date of the
generation, and indicates the current generation.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_PROFILE
Location of the Nix profile. Defaults to the target of the symlink~/.nix-profile
, if it exists, or/nix/var/nix/profiles/default
otherwise.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
$ nix-env --list-generations
95 2004-02-06 11:48:24
96 2004-02-06 11:49:01
97 2004-02-06 16:22:45
98 2004-02-06 16:24:33 (current)
Name
nix-env --query
- display information about packages
Synopsis
nix-env
{--query
| -q
} names…
[--installed
| --available
| -a
]
[{--status
| -s
}]
[{--attr-path
| -P
}]
[--no-name
]
[{--compare-versions
| -c
}]
[--system
]
[--drv-path
]
[--out-path
]
[--description
]
[--meta
]
[--xml
]
[--json
]
[{--prebuilt-only
| -b
}]
[{--attr
| -A
} attribute-path]
Description
The query operation displays information about either the store paths
that are installed in the current generation of the active profile
(--installed
), or the derivations that are available for installation
in the active Nix expression (--available
). It only prints information
about derivations whose symbolic name matches one of names.
The derivations are sorted by their name
attributes.
Source selection
The following flags specify the set of things on which the query operates.
-
--installed
The query operates on the store paths that are installed in the current generation of the active profile. This is the default. -
--available
;-a
The query operates on the derivations that are available in the active Nix expression.
Queries
The following flags specify what information to display about the
selected derivations. Multiple flags may be specified, in which case the
information is shown in the order given here. Note that the name of the
derivation is shown unless --no-name
is specified.
-
--xml
Print the result in an XML representation suitable for automatic processing by other tools. The root element is calleditems
, which contains aitem
element for each available or installed derivation. The fields discussed below are all stored in attributes of theitem
elements. -
--json
Print the result in a JSON representation suitable for automatic processing by other tools. -
--prebuilt-only
/-b
Show only derivations for which a substitute is registered, i.e., there is a pre-built binary available that can be downloaded in lieu of building the derivation. Thus, this shows all packages that probably can be installed quickly. -
--status
;-s
Print the status of the derivation. The status consists of three characters. The first isI
or-
, indicating whether the derivation is currently installed in the current generation of the active profile. This is by definition the case for--installed
, but not for--available
. The second isP
or-
, indicating whether the derivation is present on the system. This indicates whether installation of an available derivation will require the derivation to be built. The third isS
or-
, indicating whether a substitute is available for the derivation. -
--attr-path
;-P
Print the attribute path of the derivation, which can be used to unambiguously select it using the--attr
option available in commands that install derivations likenix-env --install
. This option only works together with--available
-
--no-name
Suppress printing of thename
attribute of each derivation. -
--compare-versions
/-c
Compare installed versions to available versions, or vice versa (if--available
is given). This is useful for quickly seeing whether upgrades for installed packages are available in a Nix expression. A column is added with the following meaning:-
<
version
A newer version of the package is available or installed. -
=
version
At most the same version of the package is available or installed. -
>
version
Only older versions of the package are available or installed. -
- ?
No version of the package is available or installed.
-
-
--system
Print thesystem
attribute of the derivation. -
--drv-path
Print the path of the store derivation. -
--out-path
Print the output path of the derivation. -
--description
Print a short (one-line) description of the derivation, if available. The description is taken from themeta.description
attribute of the derivation. -
--meta
Print all of the meta-attributes of the derivation. This option is only available with--xml
or--json
.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_PROFILE
Location of the Nix profile. Defaults to the target of the symlink~/.nix-profile
, if it exists, or/nix/var/nix/profiles/default
otherwise.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
To show installed packages:
$ nix-env --query
bison-1.875c
docbook-xml-4.2
firefox-1.0.4
MPlayer-1.0pre7
ORBit2-2.8.3
…
To show available packages:
$ nix-env --query --available
firefox-1.0.7
GConf-2.4.0.1
MPlayer-1.0pre7
ORBit2-2.8.3
…
To show the status of available packages:
$ nix-env --query --available --status
-P- firefox-1.0.7 (not installed but present)
--S GConf-2.4.0.1 (not present, but there is a substitute for fast installation)
--S MPlayer-1.0pre3 (i.e., this is not the installed MPlayer, even though the version is the same!)
IP- ORBit2-2.8.3 (installed and by definition present)
…
To show available packages in the Nix expression foo.nix
:
$ nix-env --file ./foo.nix --query --available
foo-1.2.3
To compare installed versions to what’s available:
$ nix-env --query --compare-versions
...
acrobat-reader-7.0 - ? (package is not available at all)
autoconf-2.59 = 2.59 (same version)
firefox-1.0.4 < 1.0.7 (a more recent version is available)
...
To show all packages with “zip
” in the name:
$ nix-env --query --available '.*zip.*'
bzip2-1.0.6
gzip-1.6
zip-3.0
…
To show all packages with “firefox
” or “chromium
” in the name:
$ nix-env --query --available '.*(firefox|chromium).*'
chromium-37.0.2062.94
chromium-beta-38.0.2125.24
firefox-32.0.3
firefox-with-plugins-13.0.1
…
To show all packages in the latest revision of the Nixpkgs repository:
$ nix-env --file https://github.com/NixOS/nixpkgs/archive/master.tar.gz --query --available
Name
nix-env --rollback
- set user environment to previous generation
Synopsis
nix-env
--rollback
Description
This operation switches to the “previous” generation of the active
profile, that is, the highest numbered generation lower than the current
generation, if it exists. It is just a convenience wrapper around
--list-generations
and --switch-generation
.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_PROFILE
Location of the Nix profile. Defaults to the target of the symlink~/.nix-profile
, if it exists, or/nix/var/nix/profiles/default
otherwise.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
$ nix-env --rollback
switching from generation 92 to 91
$ nix-env --rollback
error: no generation older than the current (91) exists
Name
nix-env --set-flag
- modify meta attributes of installed packages
Synopsis
nix-env
--set-flag
name value drvnames
Description
The --set-flag
operation allows meta attributes of installed packages
to be modified. There are several attributes that can be usefully
modified, because they affect the behaviour of nix-env
or the user
environment build script:
-
priority
can be changed to resolve filename clashes. The user environment build script uses themeta.priority
attribute of derivations to resolve filename collisions between packages. Lower priority values denote a higher priority. For instance, the GCC wrapper package and the Binutils package in Nixpkgs both have a filebin/ld
, so previously if you tried to install both you would get a collision. Now, on the other hand, the GCC wrapper declares a higher priority than Binutils, so the former’sbin/ld
is symlinked in the user environment. -
keep
can be set totrue
to prevent the package from being upgraded or replaced. This is useful if you want to hang on to an older version of a package. -
active
can be set tofalse
to “disable” the package. That is, no symlinks will be generated to the files of the package, but it remains part of the profile (so it won’t be garbage-collected). It can be set back totrue
to re-enable the package.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
To prevent the currently installed Firefox from being upgraded:
$ nix-env --set-flag keep true firefox
After this, nix-env --upgrade
will ignore Firefox.
To disable the currently installed Firefox, then install a new Firefox while the old remains part of the profile:
$ nix-env --query
firefox-2.0.0.9 (the current one)
$ nix-env --preserve-installed --install firefox-2.0.0.11
installing `firefox-2.0.0.11'
building path(s) `/nix/store/myy0y59q3ig70dgq37jqwg1j0rsapzsl-user-environment'
collision between `/nix/store/...-firefox-2.0.0.11/bin/firefox'
and `/nix/store/...-firefox-2.0.0.9/bin/firefox'.
(i.e., can’t have two active at the same time)
$ nix-env --set-flag active false firefox
setting flag on `firefox-2.0.0.9'
$ nix-env --preserve-installed --install firefox-2.0.0.11
installing `firefox-2.0.0.11'
$ nix-env --query
firefox-2.0.0.11 (the enabled one)
firefox-2.0.0.9 (the disabled one)
To make files from binutils
take precedence over files from gcc
:
$ nix-env --set-flag priority 5 binutils
$ nix-env --set-flag priority 10 gcc
Name
nix-env --set
- set profile to contain a specified derivation
Synopsis
nix-env
--set
drvname
Description
The --set
operation modifies the current generation of a profile so
that it contains exactly the specified derivation, and nothing else.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_PROFILE
Location of the Nix profile. Defaults to the target of the symlink~/.nix-profile
, if it exists, or/nix/var/nix/profiles/default
otherwise.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
The following updates a profile such that its current generation will contain just Firefox:
$ nix-env --profile /nix/var/nix/profiles/browser --set firefox
Name
nix-env --switch-generation
- set user environment to given profile generation
Synopsis
nix-env
{--switch-generation
| -G
} generation
Description
This operation makes generation number generation the current
generation of the active profile. That is, if the profile
is the path
to the active profile, then the symlink profile
is made to point to
profile-generation-link
, which is in turn a symlink to the actual user
environment in the Nix store.
Switching will fail if the specified generation does not exist.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_PROFILE
Location of the Nix profile. Defaults to the target of the symlink~/.nix-profile
, if it exists, or/nix/var/nix/profiles/default
otherwise.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
$ nix-env --switch-generation 42
switching from generation 50 to 42
Name
nix-env --switch-profile
- set user environment to given profile
Synopsis
nix-env
{--switch-profile
| -S
} path
Description
This operation makes path the current profile for the user. That is,
the symlink ~/.nix-profile
is made to point to path.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_PROFILE
Location of the Nix profile. Defaults to the target of the symlink~/.nix-profile
, if it exists, or/nix/var/nix/profiles/default
otherwise.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
$ nix-env --switch-profile ~/my-profile
Name
nix-env --uninstall
- remove packages from user environment
Synopsis
nix-env
{--uninstall
| -e
} drvnames…
Description
The uninstall operation creates a new user environment, based on the current generation of the active profile, from which the store paths designated by the symbolic names drvnames are removed.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_PROFILE
Location of the Nix profile. Defaults to the target of the symlink~/.nix-profile
, if it exists, or/nix/var/nix/profiles/default
otherwise.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
$ nix-env --uninstall gcc
$ nix-env --uninstall '.*' (remove everything)
Name
nix-env --upgrade
- upgrade packages in user environment
Synopsis
nix-env
{--upgrade
| -u
} args
[--lt
| --leq
| --eq
| --always
]
[{--prebuilt-only
| -b
}]
[{--attr
| -A
}]
[--from-expression
] [-E
]
[--from-profile
path]
[--preserve-installed
| -P
]
Description
The upgrade operation creates a new user environment, based on the current generation of the active profile, in which all store paths are replaced for which there are newer versions in the set of paths described by args. Paths for which there are no newer versions are left untouched; this is not an error. It is also not an error if an element of args matches no installed derivations.
For a description of how args is mapped to a set of store paths, see
--install
. If args describes multiple
store paths with the same symbolic name, only the one with the highest
version is installed.
Flags
-
--lt
Only upgrade a derivation to newer versions. This is the default. -
--leq
In addition to upgrading to newer versions, also “upgrade” to derivations that have the same version. Version are not a unique identification of a derivation, so there may be many derivations that have the same version. This flag may be useful to force “synchronisation” between the installed and available derivations. -
--eq
Only “upgrade” to derivations that have the same version. This may not seem very useful, but it actually is, e.g., when there is a new release of Nixpkgs and you want to replace installed applications with the same versions built against newer dependencies (to reduce the number of dependencies floating around on your system). -
--always
In addition to upgrading to newer versions, also “upgrade” to derivations that have the same or a lower version. I.e., derivations may actually be downgraded depending on what is available in the active Nix expression. -
--prebuilt-only
/-b
Use only derivations for which a substitute is registered, i.e., there is a pre-built binary available that can be downloaded in lieu of building the derivation. Thus, no packages will be built from source. -
--preserve-installed
/-P
Do not remove derivations with a name matching one of the derivations being installed. Usually, trying to have two versions of the same package installed in the same generation of a profile will lead to an error in building the generation, due to file name clashes between the two versions. However, this is not the case for all packages.
Options
The following options are allowed for all nix-env
operations, but may not always have an effect.
-
--file
/-f
path
Specifies the Nix expression (designated below as the active Nix expression) used by the--install
,--upgrade
, and--query --available
operations to obtain derivations. The default is~/.nix-defexpr
.If the argument starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must include a single top-level directory containing at least a file nameddefault.nix
. -
--profile
/-p
path
Specifies the profile to be used by those operations that operate on a profile (designated below as the active profile). A profile is a sequence of user environments called generations, one of which is the current generation. -
--dry-run
For the--install
,--upgrade
,--uninstall
,--switch-generation
,--delete-generations
and--rollback
operations, this flag will causenix-env
to print what would be done if this flag had not been specified, without actually doing it.--dry-run
also prints out which paths will be substituted (i.e., downloaded) and which paths will be built from source (because no substitute is available). -
--system-filter
system
By default, operations such as--query --available
show derivations matching any platform. This option allows you to use derivations for the specified platform system.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_PROFILE
Location of the Nix profile. Defaults to the target of the symlink~/.nix-profile
, if it exists, or/nix/var/nix/profiles/default
otherwise.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
$ nix-env --upgrade --attr nixpkgs.gcc
upgrading `gcc-3.3.1' to `gcc-3.4'
When there are no updates available, nothing will happen:
$ nix-env --upgrade --attr nixpkgs.pan
Using -A
is preferred when possible, as it is faster and unambiguous but
it is also possible to upgrade to a specific version by matching the derivation name:
$ nix-env --upgrade gcc-3.3.2 --always
upgrading `gcc-3.4' to `gcc-3.3.2'
To try to upgrade everything (matching packages based on the part of the derivation name without version):
$ nix-env --upgrade
upgrading `hello-2.1.2' to `hello-2.1.3'
upgrading `mozilla-1.2' to `mozilla-1.4'
Versions
The upgrade operation determines whether a derivation y
is an upgrade
of a derivation x
by looking at their respective name
attributes.
The names (e.g., gcc-3.3.1
are split into two parts: the package name
(gcc
), and the version (3.3.1
). The version part starts after the
first dash not followed by a letter. y
is considered an upgrade of x
if their package names match, and the version of y
is higher than that
of x
.
The versions are compared by splitting them into contiguous components
of numbers and letters. E.g., 3.3.1pre5
is split into [3, 3, 1, "pre", 5]
. These lists are then compared lexicographically (from left
to right). Corresponding components a
and b
are compared as follows.
If they are both numbers, integer comparison is used. If a
is an empty
string and b
is a number, a
is considered less than b
. The special
string component pre
(for pre-release) is considered to be less than
other components. String components are considered less than number
components. Otherwise, they are compared lexicographically (i.e., using
case-sensitive string comparison).
This is illustrated by the following examples:
1.0 < 2.3
2.1 < 2.3
2.3 = 2.3
2.5 > 2.3
3.1 > 2.3
2.3.1 > 2.3
2.3.1 > 2.3a
2.3pre1 < 2.3
2.3pre3 < 2.3pre12
2.3a < 2.3c
2.3pre1 < 2.3c
2.3pre1 < 2.3q
Utilities
This section lists utilities that you can use when you work with Lix.
Name
nix-channel
- manage Nix channels
Synopsis
nix-channel
{--add
url [name] | --remove
name | --list
| --update
[names…] | --list-generations
| --rollback
[generation] }
Description
Channels are a mechanism for referencing remote Nix expressions and conveniently retrieving their latest version.
The moving parts of channels are:
- The official channels listed at https://nixos.org/channels
- The user-specific list of subscribed channels
- The downloaded channel contents
- The Nix expression search path, set with the
-I
option or theNIX_PATH
environment variable
Note
The state of a subscribed channel is external to the Nix expressions relying on it. This may limit reproducibility.
Dependencies on other Nix expressions can be declared explicitly with:
fetchurl
,fetchTarball
, orfetchGit
in Nix expressions- the
-I
option in command line invocations
This command has the following operations:
-
--add
url [name]
Add a channel name located at url to the list of subscribed channels. If name is omitted, default to the last component of url, with the suffixes-stable
or-unstable
removed.Note
--add
does not automatically perform an update. Use--update
explicitly.A channel URL must point to a directory containing a file
nixexprs.tar.gz
. At the top level, that tarball must contain a single directory with adefault.nix
file that serves as the channel’s entry point. -
--remove
name
Remove the channel name from the list of subscribed channels. -
--list
Print the names and URLs of all subscribed channels on standard output. -
--update
[names…]
Download the Nix expressions of subscribed channels and create a new generation. Update all channels if none is specified, and only those included in names otherwise. -
--list-generations
Prints a list of all the current existing generations for the channel profile.Works the same way as
nix-env --profile /nix/var/nix/profiles/per-user/$USER/channels --list-generations
-
--rollback
[generation]
Revert channels to the state before the last call tonix-channel --update
. Optionally, you can specify a specific channel generation number to restore.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Files
nix-channel
operates on the following files.
Channels
A directory containing symlinks to Nix channels, managed by nix-channel
:
$XDG_STATE_HOME/nix/profiles/channels
for regular users$NIX_STATE_DIR/profiles/per-user/root/channels
forroot
nix-channel
uses a profile to store channels.
This profile contains symlinks to the contents of those channels.
Subscribed channels
The list of subscribed channels is stored in
~/.nix-channels
$XDG_STATE_HOME/nix/channels
ifuse-xdg-base-directories
is set totrue
in the following format:
<url> <name>
...
Examples
Subscribe to the Nixpkgs channel and run hello
from the GNU Hello package:
$ nix-channel --add https://nixos.org/channels/nixpkgs-unstable
$ nix-channel --list
nixpkgs https://nixos.org/channels/nixpkgs
$ nix-channel --update
$ nix-shell -p hello --run hello
hello
Revert channel updates using --rollback
:
$ nix-instantiate --eval '<nixpkgs>' --attr lib.version
"22.11pre296212.530a53dcbc9"
$ nix-channel --rollback
switching from generation 483 to 482
$ nix-instantiate --eval '<nixpkgs>' --attr lib.version
"22.11pre281526.d0419badfad"
Remove a channel:
$ nix-channel --remove nixpkgs
$ nix-channel --list
Name
nix-collect-garbage
- delete unreachable store objects
Synopsis
nix-collect-garbage
[--delete-old
] [-d
] [--delete-older-than
period] [--max-freed
bytes] [--dry-run
]
Description
The command nix-collect-garbage
is mostly an alias of nix-store --gc
.
That is, it deletes all unreachable store objects in the Nix store to clean up your system.
However, it provides two additional options,
--delete-old
and --delete-older-than
,
which also delete old profiles, allowing potentially more store objects to be deleted because profiles are also garbage collection roots.
These options are the equivalent of running
nix-env --delete-generations
with various augments on multiple profiles,
prior to running nix-collect-garbage
(or just nix-store --gc
) without any flags.
Note
Deleting previous configurations makes rollbacks to them impossible.
These flags should be used with care, because they potentially delete generations of profiles used by other users on the system.
Locations searched for profiles
nix-collect-garbage
cannot know about all profiles; that information doesn't exist.
Instead, it looks in a few locations, and acts on all profiles it finds there:
-
The default profile locations as specified in the profiles section of the manual.
-
NOTE
Not stable; subject to change
Do not rely on this functionality; it just exists for migration purposes and is may change in the future. These deprecated paths remain a private implementation detail of Lix.
$NIX_STATE_DIR/profiles
and$NIX_STATE_DIR/profiles/per-user
.With the exception of
$NIX_STATE_DIR/profiles/per-user/root
and$NIX_STATE_DIR/profiles/default
, these directories are no longer used by other commands.nix-collect-garbage
looks there anyways in order to clean up profiles from older versions of Nix.
Options
These options are for deleting old profiles prior to deleting unreachable store objects.
-
--delete-old
/-d
Delete all old generations of profiles.This is the equivalent of invoking
nix-env --delete-generations old
on each found profile. -
--delete-older-than
period
Delete all generations of profiles older than the specified amount (except for the generations that were active at that point in time). period is a value such as30d
, which would mean 30 days.This is the equivalent of invoking
nix-env --delete-generations <period>
on each found profile. See the documentation of that command for additional information about the period argument.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Example
To delete from the Nix store everything that is not used by the current generations of each profile, do
$ nix-collect-garbage -d
Name
nix-copy-closure
- copy a closure to or from a remote machine via SSH
Synopsis
nix-copy-closure
[--to
| --from
]
[--gzip
]
[--include-outputs
]
[--use-substitutes
| -s
]
[-v
]
user@machine paths
Description
nix-copy-closure
gives you an easy and efficient way to exchange
software between machines. Given one or more Nix store paths on the
local machine, nix-copy-closure
computes the closure of those paths
(i.e. all their dependencies in the Nix store), and copies all paths
in the closure to the remote machine via the ssh
(Secure Shell)
command. With the --from
option, the direction is reversed: the
closure of paths on a remote machine is copied to the Nix store on
the local machine.
This command is efficient because it only sends the store paths that are missing on the target machine.
Since nix-copy-closure
calls ssh
, you may be asked to type in the
appropriate password or passphrase. In fact, you may be asked twice
because nix-copy-closure
currently connects twice to the remote
machine, first to get the set of paths missing on the target machine,
and second to send the dump of those paths. When using public key
authentication, you can avoid typing the passphrase with ssh-agent
.
Options
-
--to
Copy the closure of paths from the local Nix store to the Nix store on machine. This is the default. -
--from
Copy the closure of paths from the Nix store on machine to the local Nix store. -
--gzip
Enable compression of the SSH connection. -
--include-outputs
Also copy the outputs of store derivations included in the closure. -
--use-substitutes
/-s
Attempt to download missing paths on the target machine using Nix’s substitute mechanism. Any paths that cannot be substituted on the target are still copied normally from the source. This is useful, for instance, if the connection between the source and target machine is slow, but the connection between the target machine andnixos.org
(the default binary cache server) is fast. -
-v
Show verbose output.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Environment variables
NIX_SSHOPTS
Additional options to be passed tossh
on the command line.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
Copy Firefox with all its dependencies to a remote machine:
$ nix-copy-closure --to alice@itchy.labs $(type -tP firefox)
Copy Subversion from a remote machine and then install it into a user environment:
$ nix-copy-closure --from alice@itchy.labs \
/nix/store/0dj0503hjxy5mbwlafv1rsbdiyx1gkdy-subversion-1.4.4
$ nix-env --install /nix/store/0dj0503hjxy5mbwlafv1rsbdiyx1gkdy-subversion-1.4.4
Name
nix-daemon
- Lix multi-user support daemon
Synopsis
nix-daemon
Description
The Lix daemon is necessary in multi-user Lix installations. It runs build tasks and other operations on the Nix store on behalf of unprivileged users.
Name
nix-hash
- compute the cryptographic hash of a path
Synopsis
nix-hash
[--flat
] [--base32
] [--truncate
] [--type
hashAlgo] path…
nix-hash
[--to-base16
|--to-base32
|--to-base64
|--to-sri
] [--type
hashAlgo] hash…
Description
The command nix-hash
computes the cryptographic hash of the contents
of each path and prints it on standard output. By default, it computes
an MD5 hash, but other hash algorithms are available as well. The hash
is printed in hexadecimal. To generate the same hash as
nix-prefetch-url
you have to specify multiple arguments, see below for
an example.
The hash is computed over a serialisation of each path: a dump of
the file system tree rooted at the path. This allows directories and
symlinks to be hashed as well as regular files. The dump is in the
NAR format produced by nix-store --dump
. Thus, nix-hash path
yields the same cryptographic hash as nix-store --dump path | md5sum
.
Options
-
--flat
Print the cryptographic hash of the contents of each regular file path. That is, do not compute the hash over the dump of path. The result is identical to that produced by the GNU commandsmd5sum
andsha1sum
. -
--base16
Print the hash in a hexadecimal representation (default). -
--base32
Print the hash in a base-32 representation rather than hexadecimal. This base-32 representation is more compact and can be used in Nix expressions (such as in calls tofetchurl
). -
--base64
Similar to --base32, but print the hash in a base-64 representation, which is more compact than the base-32 one. -
--sri
Print the hash in SRI format with base-64 encoding. The type of hash algorithm will be prepended to the hash string, followed by a hyphen (-) and the base-64 hash body. -
--truncate
Truncate hashes longer than 160 bits (such as SHA-256) to 160 bits. -
--type
hashAlgo
Use the specified cryptographic hash algorithm, which can be one ofmd5
,sha1
,sha256
, andsha512
. -
--to-base16
Don’t hash anything, but convert the base-32 hash representation hash to hexadecimal. -
--to-base32
Don’t hash anything, but convert the hexadecimal hash representation hash to base-32. -
--to-base64
Don’t hash anything, but convert the hexadecimal hash representation hash to base-64. -
--to-sri
Don’t hash anything, but convert the hexadecimal hash representation hash to SRI.
Examples
Computing the same hash as nix-prefetch-url
:
$ nix-prefetch-url file://<(echo test)
1lkgqb6fclns49861dwk9rzb6xnfkxbpws74mxnx01z9qyv1pjpj
$ nix-hash --type sha256 --flat --base32 <(echo test)
1lkgqb6fclns49861dwk9rzb6xnfkxbpws74mxnx01z9qyv1pjpj
Computing hashes:
$ mkdir test
$ echo "hello" > test/world
$ nix-hash test/ (MD5 hash; default)
8179d3caeff1869b5ba1744e5a245c04
$ nix-store --dump test/ | md5sum (for comparison)
8179d3caeff1869b5ba1744e5a245c04 -
$ nix-hash --type sha1 test/
e4fd8ba5f7bbeaea5ace89fe10255536cd60dab6
$ nix-hash --type sha1 --base16 test/
e4fd8ba5f7bbeaea5ace89fe10255536cd60dab6
$ nix-hash --type sha1 --base32 test/
nvd61k9nalji1zl9rrdfmsmvyyjqpzg4
$ nix-hash --type sha1 --base64 test/
5P2Lpfe76upazon+ECVVNs1g2rY=
$ nix-hash --type sha1 --sri test/
sha1-5P2Lpfe76upazon+ECVVNs1g2rY=
$ nix-hash --type sha256 --flat test/
error: reading file `test/': Is a directory
$ nix-hash --type sha256 --flat test/world
5891b5b522d5df086d0ff0b110fbd9d21bb4fc7163af34d08286a2e846f6be03
Converting between hexadecimal, base-32, base-64, and SRI:
$ nix-hash --type sha1 --to-base32 e4fd8ba5f7bbeaea5ace89fe10255536cd60dab6
nvd61k9nalji1zl9rrdfmsmvyyjqpzg4
$ nix-hash --type sha1 --to-base16 nvd61k9nalji1zl9rrdfmsmvyyjqpzg4
e4fd8ba5f7bbeaea5ace89fe10255536cd60dab6
$ nix-hash --type sha1 --to-base64 e4fd8ba5f7bbeaea5ace89fe10255536cd60dab6
5P2Lpfe76upazon+ECVVNs1g2rY=
$ nix-hash --type sha1 --to-sri nvd61k9nalji1zl9rrdfmsmvyyjqpzg4
sha1-5P2Lpfe76upazon+ECVVNs1g2rY=
$ nix-hash --to-base16 sha1-5P2Lpfe76upazon+ECVVNs1g2rY=
e4fd8ba5f7bbeaea5ace89fe10255536cd60dab6
Name
nix-instantiate
- instantiate store derivations from Nix expressions
Synopsis
nix-instantiate
[--parse
| --eval
[--strict
] [--json
] [--xml
] ]
[--read-write-mode
]
[--arg
name value]
[{--attr
| -A
} attrPath]
[--add-root
path]
[--expr
| -E
]
files…
nix-instantiate
--find-file
files…
Description
The command nix-instantiate
produces store derivations from (high-level) Nix expressions.
It evaluates the Nix expressions in each of files (which defaults to
./default.nix). Each top-level expression should evaluate to a
derivation, a list of derivations, or a set of derivations. The paths
of the resulting store derivations are printed on standard output.
If files is the character -
, then a Nix expression will be read from
standard input.
Options
-
--add-root
path
See the corresponding option innix-store
. -
--parse
Just parse the input files, and print their abstract syntax trees on standard output as a Nix expression. -
--eval
Just parse and evaluate the input files, and print the resulting values on standard output. No instantiation of store derivations takes place.Warning
This option produces output which can be parsed as a Nix expression which will produce a different result than the input expression when evaluated. For example, these two Nix expressions print the same result despite having different meaning:
$ nix-instantiate --eval --expr '{ a = {}; }' { a = <CODE>; } $ nix-instantiate --eval --expr '{ a = <CODE>; }' { a = <CODE>; }
For human-readable output,
nix eval
(experimental) is more informative:$ nix-instantiate --eval --expr 'a: a' <LAMBDA> $ nix eval --expr 'a: a' «lambda @ «string»:1:1»
For machine-readable output, the
--xml
option produces unambiguous output:$ nix-instantiate --eval --xml --expr '{ foo = <CODE>; }' <?xml version='1.0' encoding='utf-8'?> <expr> <attrs> <attr column="3" line="1" name="foo"> <unevaluated /> </attr> </attrs> </expr>
-
--find-file
Look up the given files in Nix’s search path (as specified by theNIX_PATH
environment variable). If found, print the corresponding absolute paths on standard output. For instance, ifNIX_PATH
isnixpkgs=/home/alice/nixpkgs
, thennix-instantiate --find-file nixpkgs/default.nix
will print/home/alice/nixpkgs/default.nix
. -
--strict
When used with--eval
, recursively evaluate list elements and attributes. Normally, such sub-expressions are left unevaluated (since the Nix language is lazy).Warning
This option can cause non-termination, because lazy data structures can be infinitely large.
-
--json
When used with--eval
, print the resulting value as an JSON representation of the abstract syntax tree rather than as a Nix expression. -
--xml
When used with--eval
, print the resulting value as an XML representation of the abstract syntax tree rather than as a Nix expression. The schema is the same as that used by thetoXML
built-in. -
--read-write-mode
When used with--eval
, perform evaluation in read/write mode so nix language features that require it will still work (at the cost of needing to do instantiation of every evaluated derivation). If this option is not enabled, there may be uninstantiated store paths in the final output.
Common Options
Most commands in Lix accept the following command-line options:
-
Prints out a summary of the command syntax and exits.
-
Prints out the Lix version number on standard output and exits.
-
--verbose
/-v
Increases the level of verbosity of diagnostic messages printed on standard error. For each Lix operation, the information printed on standard output is well-defined; any diagnostic information is printed on standard error, never on standard output.
This option may be specified repeatedly. Currently, the following verbosity levels exist:
-
0
“Errors only”Only print messages explaining why the Lix invocation failed.
-
1
“Informational”Print useful messages about what Lix is doing. This is the default.
-
2
“Talkative”Print more informational messages.
-
3
“Chatty”Print even more informational messages.
-
4
“Debug”Print debug information.
-
5
“Vomit”Print vast amounts of debug information.
-
-
Decreases the level of verbosity of diagnostic messages printed on standard error. This is the inverse option to
-v
/--verbose
.This option may be specified repeatedly. See the previous verbosity levels list.
-
--log-format
formatThis option can be used to change the output of the log format, with format being one of:
-
raw
This is the raw format, as outputted by nix-build.
-
internal-json
Outputs the logs in a structured manner.
Warning
While the schema itself is relatively stable, the format of the error-messages (namely of the
msg
-field) can change between releases. -
bar
Only display a progress bar during the builds.
-
bar-with-logs
Display the raw logs, with the progress bar at the bottom.
-
-
--no-build-output
/-Q
By default, output written by builders to standard output and standard error is echoed to the Lix command's standard error. This option suppresses this behaviour. Note that the builder's standard output and error are always written to a log file in
prefix/nix/var/log/nix
. -
--max-jobs
/-j
numberSets the maximum number of build jobs that Lix will perform in parallel to the specified number. Specify
auto
to use the number of CPUs in the system. The default is specified by themax-jobs
configuration setting, which itself defaults to1
. A higher value is useful on SMP systems or to exploit I/O latency.Setting it to
0
disallows building on the local machine, which is useful when you want builds to happen only on remote builders. -
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It defaults to the value of thecores
configuration setting, if set, or1
otherwise. The value0
means that the builder should use all available CPU cores in the system. -
Sets the maximum number of seconds that a builder can go without producing any data on standard output or standard error. The default is specified by the
max-silent-time
configuration setting.0
means no time-out. -
Sets the maximum number of seconds that a builder can run. The default is specified by the
timeout
configuration setting.0
means no timeout. -
--keep-going
/-k
Keep going in case of failed builds, to the greatest extent possible. That is, if building an input of some derivation fails, Lix will still build the other inputs, but not the derivation itself. Without this option, Lix stops if any build fails (except for builds of substitutes), possibly killing builds in progress (in case of parallel or distributed builds).
-
--keep-failed
/-K
Specifies that in case of a build failure, the temporary directory (usually in
/tmp
) in which the build takes place should not be deleted. The path of the build directory is printed as an informational message. -
Whenever Lix attempts to build a derivation for which substitutes are known for each output path, but realising the output paths through the substitutes fails, fall back on building the derivation.
The most common scenario in which this is useful is when we have registered substitutes in order to perform binary distribution from, say, a network repository. If the repository is down, the realisation of the derivation will fail. When this option is specified, Lix will build the derivation instead. Thus, installation from binaries falls back on installation from source. This option is not the default since it is generally not desirable for a transient failure in obtaining the substitutes to lead to a full build from source (with the related consumption of resources).
-
When this option is used, no attempt is made to open the Lix database. Most Lix operations do need database access, so those operations will fail.
FIXME(Lix): sometimes you want
--store dummy
instead, because this option sometimes doesn't work. Document why this is. -
--arg
name valueThis option is accepted by
nix-env
,nix-instantiate
,nix-shell
andnix-build
. When evaluating Nix expressions, the expression evaluator will automatically try to call functions that it encounters. It can automatically call functions for which every argument has a default value (e.g.,{ argName ? defaultValue }: ...
).With
--arg
, you can also call functions that have arguments without a default value (or override a default value). That is, if the evaluator encounters a function with an argument named name, it will call it with value value.For instance, the top-level
default.nix
in Nixpkgs is actually a function:{ # The system (e.g., `i686-linux') for which to build the packages. system ? builtins.currentSystem ... }: ...
So if you call this Nix expression (e.g., when you do
nix-env --install --attr pkgname
), the function will be called automatically using the valuebuiltins.currentSystem
for thesystem
argument. You can override this using--arg
, e.g.,nix-env --install --attr pkgname --arg system \"i686-freebsd\"
. (Note that since the argument is a Nix string literal, you have to escape the quotes.) -
--argstr
name valueThis option is like
--arg
, only the value is not a Nix expression but a string. So instead of--arg system \"i686-linux\"
(the outer quotes are to keep the shell happy) you can say--argstr system i686-linux
. -
--attr
/-A
attrPathSelect an attribute from the top-level Nix expression being evaluated. (
nix-env
,nix-instantiate
,nix-build
andnix-shell
only.) The attribute path attrPath is a sequence of attribute names separated by dots. For instance, given a top-level Nix expression e, the attribute pathxorg.xorgserver
would cause the expressione.xorg.xorgserver
to be used. Seenix-env --install
for some concrete examples.In addition to attribute names, you can also specify array indices. For instance, the attribute path
foo.3.bar
selects thebar
attribute of the fourth element of the array in thefoo
attribute of the top-level expression. -
--expr
/-E
Interpret the command line arguments as a list of Nix expressions to be parsed and evaluated, rather than as a list of file names of Nix expressions. (
nix-instantiate
,nix-build
andnix-shell
only.)For
nix-shell
, this option is commonly used to give you a shell in which you can build the packages returned by the expression. If you want to get a shell which contain the built packages ready for use, give your expression to thenix-shell --packages
convenience flag instead. -
-I
pathAdd an entry to the Nix expression search path. This option may be given multiple times. Paths added through
-I
take precedence overNIX_PATH
. -
--option
name valueSet the Lix configuration option name to value. This overrides settings in the Lix configuration file (see nix.conf(5)).
-
Fix corrupted or missing store paths by redownloading or rebuilding them. Note that this is slow because it requires computing a cryptographic hash of the contents of every path in the closure of the build. Also note the warning under
nix-store --repair-path
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Common Environment Variables
Most commands in Lix interpret the following environment variables:
-
IN_NIX_SHELL
Indicator that tells if the current environment was set up bynix-shell
. It can have the valuespure
orimpure
. -
NIX_PATH
A colon-separated list of directories used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<path>
), e.g./home/eelco/Dev:/etc/nixos
. It can be extended using the-I
option.If
NIX_PATH
is not set at all, Lix will fall back to the following list in impure and unrestricted evaluation mode:$HOME/.nix-defexpr/channels
nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixpkgs
/nix/var/nix/profiles/per-user/root/channels
If
NIX_PATH
is set to an empty string, resolving search paths will always fail. For example, attempting to use<nixpkgs>
will produce:error: file 'nixpkgs' was not found in the Nix search path
-
NIX_IGNORE_SYMLINK_STORE
Normally, the Nix store directory (typically/nix/store
) is not allowed to contain any symlink components. This is to prevent “impure” builds. Builders sometimes “canonicalise” paths by resolving all symlink components. Thus, builds on different machines (with/nix/store
resolving to different locations) could yield different results. This is generally not a problem, except when builds are deployed to machines where/nix/store
resolves differently. If you are sure that you’re not going to do that, you can setNIX_IGNORE_SYMLINK_STORE
to1
.Note that if you’re symlinking the Nix store so that you can put it on another file system than the root file system, on Linux you’re better off using
bind
mount points, e.g.,$ mkdir /nix $ mount -o bind /mnt/otherdisk/nix /nix
Consult the mount 8 manual page for details.
-
NIX_STORE_DIR
Overrides the location of the Nix store (defaultprefix/store
). -
NIX_DATA_DIR
Overrides the location of the Lix static data directory (defaultprefix/share
). -
NIX_LOG_DIR
Overrides the location of the Lix log directory (defaultprefix/var/log/nix
). -
NIX_STATE_DIR
Overrides the location of the Lix state directory (defaultprefix/var/nix
). -
NIX_CONF_DIR
Overrides the location of the system Lix configuration directory (defaultprefix/etc/nix
). -
NIX_CONFIG
Applies settings from Lix configuration from the environment. The content is treated as if it was read from a Lix configuration file. Settings are separated by the newline character. -
NIX_USER_CONF_FILES
Overrides the location of the Lix user configuration files to load from.The default are the locations according to the XDG Base Directory Specification. See the XDG Base Directories sub-section for details.
The variable is treated as a list separated by the
:
token. -
TMPDIR
Use the specified directory to store temporary files. In particular, this includes temporary build directories; these can take up substantial amounts of disk space. The default is/tmp
. -
NIX_REMOTE
This variable should be set todaemon
if you want to use the Lix daemon to execute Nix operations. This is necessary in multi-user Nix installations. If the Lix daemon's Unix socket is at some non-standard path, this variable should be set tounix://path/to/socket
. Otherwise, it should be left unset. -
NIX_SHOW_STATS
If set to1
, Lix will print some evaluation statistics, such as the number of values allocated. -
NIX_COUNT_CALLS
If set to1
, Lix will print how often functions were called during Nix expression evaluation. This is useful for profiling your Nix expressions. -
GC_INITIAL_HEAP_SIZE
If Nix has been configured to use the Boehm garbage collector, this variable sets the initial size of the heap in bytes. It defaults to 384 MiB. Setting it to a low value reduces memory consumption, but will increase runtime due to the overhead of garbage collection.
XDG Base Directories
Lix follows the XDG Base Directory Specification.
For backwards compatibility, commands in Lix will follow the standard only when use-xdg-base-directories
is enabled.
New Nix commands (experimental) conform to the standard by default.
The following environment variables are used to determine locations of various state and configuration files:
XDG_CONFIG_HOME
(default~/.config
)XDG_STATE_HOME
(default~/.local/state
)XDG_CACHE_HOME
(default~/.cache
)
Examples
Instantiate store derivations from a Nix expression, and build them using nix-store
:
$ nix-instantiate test.nix (instantiate)
/nix/store/cigxbmvy6dzix98dxxh9b6shg7ar5bvs-perl-BerkeleyDB-0.26.drv
$ nix-store --realise $(nix-instantiate test.nix) (build)
...
/nix/store/qhqk4n8ci095g3sdp93x7rgwyh9rdvgk-perl-BerkeleyDB-0.26 (output path)
$ ls -l /nix/store/qhqk4n8ci095g3sdp93x7rgwyh9rdvgk-perl-BerkeleyDB-0.26
dr-xr-xr-x 2 eelco users 4096 1970-01-01 01:00 lib
...
You can also give a Nix expression on the command line:
$ nix-instantiate --expr 'with import <nixpkgs> { }; hello'
/nix/store/j8s4zyv75a724q38cb0r87rlczaiag4y-hello-2.8.drv
This is equivalent to:
$ nix-instantiate '<nixpkgs>' --attr hello
Parsing and evaluating Nix expressions:
$ nix-instantiate --parse --expr '1 + 2'
1 + 2
$ nix-instantiate --eval --expr '1 + 2'
3
$ nix-instantiate --eval --xml --expr '1 + 2'
<?xml version='1.0' encoding='utf-8'?>
<expr>
<int value="3" />
</expr>
The difference between non-strict and strict evaluation:
$ nix-instantiate --eval --xml --expr '{ x = {}; }'
<?xml version='1.0' encoding='utf-8'?>
<expr>
<attrs>
<attr column="3" line="1" name="x">
<unevaluated />
</attr>
</attrs>
</expr>
$ nix-instantiate --eval --xml --strict --expr '{ x = {}; }'
<?xml version='1.0' encoding='utf-8'?>
<expr>
<attrs>
<attr column="3" line="1" name="x">
<attrs>
</attrs>
</attr>
</attrs>
</expr>
Name
nix-prefetch-url
- copy a file from a URL into the store and print its hash
Synopsis
nix-prefetch-url
url [hash]
[--type
hashAlgo]
[--print-path
]
[--unpack
]
[--name
name]
Description
The command nix-prefetch-url
downloads the file referenced by the URL
url, prints its cryptographic hash, and copies it into the Nix store.
The file name in the store is hash-baseName
, where baseName is
everything following the final slash in url.
This command is just a convenience for Nix expression writers. Often a
Nix expression fetches some source distribution from the network using
the fetchurl
expression contained in Nixpkgs. However, fetchurl
requires a cryptographic hash. If you don't know the hash, you would
have to download the file first, and then fetchurl
would download it
again when you build your Nix expression. Since fetchurl
uses the same
name for the downloaded file as nix-prefetch-url
, the redundant
download can be avoided.
If hash is specified, then a download is not performed if the Nix store already contains a file with the same hash and base name. Otherwise, the file is downloaded, and an error is signaled if the actual hash of the file does not match the specified hash.
This command prints the hash on standard output.
The hash is printed using base-32 unless --type md5
is specified,
in which case it's printed using base-16.
Additionally, if the option --print-path
is used,
the path of the downloaded file in the Nix store is also printed.
Options
-
--type
hashAlgo
Use the specified cryptographic hash algorithm, which can be one ofmd5
,sha1
,sha256
, andsha512
. The default issha256
. -
--print-path
Print the store path of the downloaded file on standard output. -
--unpack
Unpack the archive (which must be a tarball or zip file) and add the result to the Nix store. The resulting hash can be used with functions such as Nixpkgs’sfetchzip
orfetchFromGitHub
. -
--executable
Set the executable bit on the downloaded file. -
--name
name
Override the name of the file in the Nix store. By default, this ishash-basename
, where basename is the last component of url. Overriding the name is necessary when basename contains characters that are not allowed in Nix store paths.
Examples
$ nix-prefetch-url ftp://ftp.gnu.org/pub/gnu/hello/hello-2.10.tar.gz
0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i
$ nix-prefetch-url --print-path mirror://gnu/hello/hello-2.10.tar.gz
0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i
/nix/store/3x7dwzq014bblazs7kq20p9hyzz0qh8g-hello-2.10.tar.gz
$ nix-prefetch-url --unpack --print-path https://github.com/NixOS/patchelf/archive/0.8.tar.gz
079agjlv0hrv7fxnx9ngipx14gyncbkllxrp9cccnh3a50fxcmy7
/nix/store/19zrmhm3m40xxaw81c8cqm6aljgrnwj2-0.8.tar.gz
Experimental Commands
This section lists experimental commands.
Warning
These commands may be removed in the future, or their syntax may change in incompatible ways.
Warning
This program is experimental and its interface is subject to change.
Name
nix
- a tool for reproducible and declarative configuration management
Synopsis
nix
[option...] subcommand
where subcommand is one of the following:
Help commands:
nix help
- show help aboutnix
or a particular subcommandnix help-stores
- show help about store types and their settings
Main commands:
nix build
- build a derivation or fetch a store pathnix develop
- run a bash shell that provides the build environment of a derivationnix flake
- manage Nix flakesnix profile
- manage Nix profilesnix run
- run a Nix applicationnix search
- search for packagesnix shell
- run a shell in which the specified packages are available
Main commands:
nix repl
- start an interactive environment for evaluating Nix expressions
Infrequently used commands:
nix bundle
- bundle an application so that it works outside of the Nix storenix copy
- copy paths between Nix storesnix edit
- open the Nix expression of a Nix package in $EDITORnix eval
- evaluate a Nix expressionnix fmt
- reformat your code in the standard stylenix log
- show the build log of the specified packages or paths, if availablenix path-info
- query information about store pathsnix registry
- manage the flake registrynix why-depends
- show why a package has another package in its closure
Utility/scripting commands:
nix config
- manipulate the Lix configurationnix daemon
- daemon to perform store operations on behalf of non-root clientsnix derivation
- Work with derivations, Nix's notion of a build plan.nix hash
- compute and convert cryptographic hashesnix key
- generate and convert Nix signing keysnix nar
- create or inspect NAR filesnix print-dev-env
- print shell code that can be sourced by bash to reproduce the build environment of a derivationnix realisation
- manipulate a Nix realisationnix store
- manipulate a Nix store
Commands for upgrading or troubleshooting your Nix installation:
nix doctor
- check your system for potential problems and print a PASS or FAIL for each checknix upgrade-nix
- upgrade Nix to the stable version declared in Nixpkgs
Examples
-
Create a new flake:
# nix flake new hello # cd hello
-
Build the flake in the current directory:
# nix build # ./result/bin/hello Hello, world!
-
Run the flake in the current directory:
# nix run Hello, world!
-
Start a development shell for hacking on this flake:
# nix develop # unpackPhase # cd hello-* # configurePhase # buildPhase # ./hello Hello, world! # installPhase # ../outputs/out/bin/hello Hello, world!
Description
Lix is a tool for building software, configurations and other artifacts in a reproducible and declarative way. For more information, see the Lix homepage.
Lix is a fork of the original implementation CppNix.
Installables
Warning
Installables are part of the unstablenix-command
experimental feature, and subject to change without notice.
Many nix
subcommands operate on one or more installables.
These are command line arguments that represent something that can be realised in the Nix store.
The following types of installable are supported by most commands:
- Flake output attribute (experimental)
- This is the default
- Store path
- This is assumed if the argument is a Nix store path or a symlink to a Nix store path
- Nix file, optionally qualified by an attribute path
- Specified with
--file
/-f
- Specified with
- Nix expression, optionally qualified by an attribute path
- Specified with
--expr
/-E
- Specified with
For most commands, if no installable is specified, .
is assumed.
That is, Lix will operate on the default flake output attribute of the flake in the current directory.
Flake output attribute
Warning
Flake output attribute installables depend on both theflakes
andnix-command
experimental features, and subject to change without notice.
Example: nixpkgs#hello
These have the form flakeref[#
attrpath], where flakeref is a
flake reference and attrpath is an optional attribute path. For
more information on flakes, see the nix flake
manual
page. Flake references are most commonly a flake
identifier in the flake registry (e.g. nixpkgs
), or a raw path
(e.g. /path/to/my-flake
or .
or ../foo
), or a full URL
(e.g. github:nixos/nixpkgs
or path:.
)
When the flake reference is a raw path (a path without any URL
scheme), it is interpreted as a path:
or git+file:
url in the following
way:
-
If the path is within a Git repository, then the url will be of the form
git+file://[GIT_REPO_ROOT]?dir=[RELATIVE_FLAKE_DIR_PATH]
whereGIT_REPO_ROOT
is the path to the root of the git repository, andRELATIVE_FLAKE_DIR_PATH
is the path (relative to the directory root) of the closest parent of the given path that contains aflake.nix
within the git repository. If no such directory exists, then Lix will error-out.Note that the search will only include files indexed by git. In particular, files which are matched by
.gitignore
or have never beengit add
-ed will not be available in the flake. If this is undesirable, specifypath:<directory>
explicitly;For example, if
/foo/bar
is a git repository with the following structure:. └── baz ├── blah │ └── file.txt └── flake.nix
Then
/foo/bar/baz/blah
will resolve togit+file:///foo/bar?dir=baz
-
If the supplied path is not a git repository, then the url will have the form
path:FLAKE_DIR_PATH
whereFLAKE_DIR_PATH
is the closest parent of the supplied path that contains aflake.nix
file (within the same file-system). If no such directory exists, then Lix will error-out.For example, if
/foo/bar/flake.nix
exists, then/foo/bar/baz/
will resolve topath:/foo/bar
If attrpath is omitted, Lix tries some default values; for most
subcommands, the default is packages.
system.default
(e.g. packages.x86_64-linux.default
), but some subcommands have
other defaults. If attrpath is specified, attrpath is
interpreted as relative to one or more prefixes; for most
subcommands, these are packages.
system,
legacyPackages.*system*
and the empty prefix. Thus, on
x86_64-linux
nix build nixpkgs#hello
will try to build the
attributes packages.x86_64-linux.hello
,
legacyPackages.x86_64-linux.hello
and hello
.
Store path
Example: /nix/store/v5sv61sszx301i0x6xysaqzla09nksnd-hello-2.10
These are paths inside the Nix store, or symlinks that resolve to a path in the Nix store.
A store derivation is also addressed by store path.
Example: /nix/store/p7gp6lxdg32h4ka1q398wd9r2zkbbz2v-hello-2.10.drv
If you want to refer to an output path of that store derivation, add the output name preceded by a caret (^
).
Example: /nix/store/p7gp6lxdg32h4ka1q398wd9r2zkbbz2v-hello-2.10.drv^out
All outputs can be referred to at once with the special syntax ^*
.
Example: /nix/store/p7gp6lxdg32h4ka1q398wd9r2zkbbz2v-hello-2.10.drv^*
Nix file
Example: --file /path/to/nixpkgs hello
When the option -f
/ --file
path [attrpath...] is given, installables are interpreted as the value of the expression in the Nix file at path.
If attribute paths are provided, commands will operate on the corresponding values accessible at these paths.
The Nix expression in that file, or any selected attribute, must evaluate to a derivation.
To emulate the nix-build '<nixpkgs>' -A hello
pattern, use:
$ nix build -f '<nixpkgs>' hello
Nix expression
Example: --expr 'import <nixpkgs> {}' hello
When the option -E
/ --expr
expression [attrpath...] is given, installables are interpreted as the value of the of the Nix expression.
If attribute paths are provided, commands will operate on the corresponding values accessible at these paths.
The Nix expression, or any selected attribute, must evaluate to a derivation.
You may need to specify --impure
if the expression references impure inputs (such as <nixpkgs>
).
To emulate the `nix-build -E 'with import
$ nix build --impure -E 'with import <nixpkgs> { }; hello'
Derivation output selection
Derivations can have multiple outputs, each corresponding to a
different store path. For instance, a package can have a bin
output
that contains programs, and a dev
output that provides development
artifacts like C/C++ header files. The outputs on which nix
commands
operate are determined as follows:
-
You can explicitly specify the desired outputs using the syntax installable
^
output1,
...,
outputN — that is, a caret followed immediately by a comma-separated list of derivation outputs to select. For installables specified as Flake output attributes or Store paths, the output is specified in the same argument:For example, you can obtain the
dev
andstatic
outputs of theglibc
package:# nix build 'nixpkgs#glibc^dev,static' # ls ./result-dev/include/ ./result-static/lib/ …
and likewise, using a store path to a "drv" file to specify the derivation:
# nix build '/nix/store/gzaflydcr6sb3567hap9q6srzx8ggdgg-glibc-2.33-78.drv^dev,static' …
For
-e
/--expr
and-f
/--file
, the derivation output is specified as part of the attribute path:$ nix build -f '<nixpkgs>' 'glibc^dev,static' $ nix build --impure -E 'import <nixpkgs> { }' 'glibc^dev,static'
This syntax is the same even if the actual attribute path is empty:
$ nix build -E 'let pkgs = import <nixpkgs> { }; in pkgs.glibc' '^dev,static'
-
You can also specify that all outputs should be used using the syntax installable
^*
. For example, the following shows the size of all outputs of theglibc
package in the binary cache:# nix path-info --closure-size --eval-store auto --store https://cache.nixos.org 'nixpkgs#glibc^*' /nix/store/g02b1lpbddhymmcjb923kf0l7s9nww58-glibc-2.33-123 33208200 /nix/store/851dp95qqiisjifi639r0zzg5l465ny4-glibc-2.33-123-bin 36142896 /nix/store/kdgs3q6r7xdff1p7a9hnjr43xw2404z7-glibc-2.33-123-debug 155787312 /nix/store/n4xa8h6pbmqmwnq0mmsz08l38abb06zc-glibc-2.33-123-static 42488328 /nix/store/q6580lr01jpcsqs4r5arlh4ki2c1m9rv-glibc-2.33-123-dev 44200560
and likewise, using a store path to a "drv" file to specify the derivation:
# nix path-info --closure-size '/nix/store/gzaflydcr6sb3567hap9q6srzx8ggdgg-glibc-2.33-78.drv^*' …
-
If you didn't specify the desired outputs, but the derivation has an attribute
meta.outputsToInstall
, Lix will use those outputs. For example, since the packagenixpkgs#libxml2
has this attribute:# nix eval 'nixpkgs#libxml2.meta.outputsToInstall' [ "bin" "man" ]
a command like
nix shell nixpkgs#libxml2
will provide only those two outputs by default.Note that a store derivation (given by its
.drv
file store path) doesn't have any attributes likemeta
, and thus this case doesn't apply to it. -
Otherwise, Lix will use all outputs of the derivation.
Nix stores
Most nix
subcommands operate on a Nix store. These are documented
in nix help-stores
.
Options
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix build
- build a derivation or fetch a store path
Synopsis
nix build
[option...] installables...
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Build the default package from the flake in the current directory:
# nix build
-
Build and run GNU Hello from the
nixpkgs
flake:# nix build nixpkgs#hello # ./result/bin/hello Hello, world!
-
Build GNU Hello and Cowsay, leaving two result symlinks:
# nix build nixpkgs#hello nixpkgs#cowsay # ls -l result* lrwxrwxrwx 1 … result -> /nix/store/v5sv61sszx301i0x6xysaqzla09nksnd-hello-2.10 lrwxrwxrwx 1 … result-1 -> /nix/store/rkfrm0z6x6jmi7d3gsmma4j53h15mg33-cowsay-3.03+dfsg2
-
Build GNU Hello and print the resulting store path.
# nix build nixpkgs#hello --print-out-paths /nix/store/v5sv61sszx301i0x6xysaqzla09nksnd-hello-2.10
-
Build a specific output:
# nix build nixpkgs#glibc.dev # ls -ld ./result-dev lrwxrwxrwx 1 … ./result-dev -> /nix/store/dkm3gwl0xrx0wrw6zi5x3px3lpgjhlw4-glibc-2.32-dev
-
Build attribute
build.x86_64-linux
from (non-flake) Nix expressionrelease.nix
:# nix build --file release.nix build.x86_64-linux
-
Build a NixOS system configuration from a flake, and make a profile point to the result:
# nix build --profile /nix/var/nix/profiles/system \ ~/my-configurations#nixosConfigurations.machine.config.system.build.toplevel
(This is essentially what
nixos-rebuild
does.) -
Build an expression specified on the command line:
# nix build --impure --expr \ 'with import <nixpkgs> {}; runCommand "foo" { buildInputs = [ hello ]; } "hello > $out"' # cat ./result Hello, world!
Note that
--impure
is needed because we're using<nixpkgs>
, which relies on the$NIX_PATH
environment variable. -
Fetch a store path from the configured substituters, if it doesn't already exist:
# nix build /nix/store/rkfrm0z6x6jmi7d3gsmma4j53h15mg33-cowsay-3.03+dfsg2
Description
nix build
builds the specified installables. Installables that
resolve to derivations are built (or substituted if possible). Store
path installables are substituted.
Unless --no-link
is specified, after a successful build, it creates
symlinks to the store paths of the installables. These symlinks have
the prefix ./result
by default; this can be overridden using the
--out-link
option. Each symlink has a suffix -<N>-<outname>
, where
N is the index of the installable (with the left-most installable
having index 0), and outname is the symbolic derivation output name
(e.g. bin
, dev
or lib
). -<N>
is omitted if N = 0, and
-<outname>
is omitted if outname = out
(denoting the default
output).
Options
-
--dry-run
Show what this command would do without doing it. -
--json
Produce output in JSON format, suitable for consumption by another program. -
--no-link
Do not create symlinks to the build results. -
--out-link
/-o
path Use path as prefix for the symlinks to the build results. It defaults toresult
. -
--print-out-paths
Print the resulting output paths -
--profile
path The profile to operate on. -
--rebuild
Rebuild an already built package and compare the result to the existing store paths. -
--stdin
Read installables from the standard input. No default installable applied.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix bundle
- bundle an application so that it works outside of the Nix store
Synopsis
nix bundle
[option...] installable
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Bundle Hello:
# nix bundle nixpkgs#hello # ./hello Hello, world!
-
Bundle a specific version of Nix:
# nix bundle github:NixOS/nix/e3ddffb27e5fc37a209cfd843c6f7f6a9460a8ec # ./nix --version nix (Nix) 2.4pre20201215_e3ddffb
-
Bundle a Hello using a specific bundler:
# nix bundle --bundler github:NixOS/bundlers#toDockerImage nixpkgs#hello # docker load < hello-2.10.tar.gz # docker run hello-2.10:latest hello Hello, world!
Description
nix bundle
, by default, packs the closure of the installable into a single
self-extracting executable. See the bundlers
homepage for more details.
Note
This command only works on Linux.
Flake output attributes
If no flake output attribute is given, nix bundle
tries the following
flake output attributes:
bundlers.<system>.default
If an attribute name is given, nix bundle
tries the following flake
output attributes:
bundlers.<system>.<name>
Bundlers
A bundler is specified by a flake output attribute named
bundlers.<system>.<name>
. It looks like this:
bundlers.x86_64-linux = rec {
identity = drv: drv;
blender_2_79 = drv: self.packages.x86_64-linux.blender_2_79;
default = identity;
};
A bundler must be a function that accepts an arbitrary value (typically a derivation or app definition) and returns a derivation.
Options
-
--bundler
flake-url Use a custom bundler instead of the default (github:NixOS/bundlers
). -
--out-link
/-o
path Override the name of the symlink to the build result. It defaults to the base name of the app.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix config
- manipulate the Lix configuration
Synopsis
nix config
[option...] subcommand
where subcommand is one of the following:
nix config show
- show the Lix configuration or the value of a specific setting
Warning
This program is experimental and its interface is subject to change.
Name
nix config show
- show the Lix configuration or the value of a specific setting
Synopsis
nix config show
[option...] name
Options
--json
Produce output in JSON format, suitable for consumption by another program.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix copy
- copy paths between Nix stores
Synopsis
nix copy
[option...] installables...
Examples
-
Copy Firefox from the local store to a binary cache in
/tmp/cache
:# nix copy --to file:///tmp/cache $(type -p firefox)
Note the
file://
- without this, the destination is a chroot store, not a binary cache. -
Copy the entire current NixOS system closure to another machine via SSH:
# nix copy --substitute-on-destination --to ssh://server /run/current-system
The
-s
flag causes the remote machine to try to substitute missing store paths, which may be faster if the link between the local and remote machines is slower than the link between the remote machine and its substituters (e.g.https://cache.nixos.org
). -
Copy a closure from another machine via SSH:
# nix copy --from ssh://server /nix/store/a6cnl93nk1wxnq84brbbwr6hxw9gp2w9-blender-2.79-rc2
-
Copy Hello to a binary cache in an Amazon S3 bucket:
# nix copy --to s3://my-bucket?region=eu-west-1 nixpkgs#hello
or to an S3-compatible storage system:
# nix copy --to s3://my-bucket?region=eu-west-1&endpoint=example.com nixpkgs#hello
Note that this only works if Nix is built with AWS support.
-
Copy a closure from
/nix/store
to the chroot store/tmp/nix/nix/store
:# nix copy --to /tmp/nix nixpkgs#hello --no-check-sigs
Description
nix copy
copies store path closures between two Nix stores. The
source store is specified using --from
and the destination using
--to
. If one of these is omitted, it defaults to the local store.
Options
-
--from
store-uri URL of the source Nix store. -
--no-check-sigs
Do not require that paths are signed by trusted keys. -
--stdin
Read installables from the standard input. No default installable applied. -
--substitute-on-destination
/-s
Whether to try substitutes on the destination store (only supported by SSH stores). -
--to
store-uri URL of the destination Nix store.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--all
Apply the operation to every store path. -
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
. -
--no-recursive
Apply operation to specified paths only.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix daemon
- daemon to perform store operations on behalf of non-root clients
Synopsis
nix daemon
[option...]
Examples
-
Run the daemon:
# nix daemon
-
Run the daemon and listen on standard I/O instead of binding to a UNIX socket:
# nix daemon --stdio
-
Run the daemon and force all connections to be trusted:
# nix daemon --force-trusted
-
Run the daemon and force all connections to be untrusted:
# nix daemon --force-untrusted
-
Run the daemon, listen on standard I/O, and force all connections to use Nix's default trust:
# nix daemon --stdio --default-trust
Description
This command runs the Nix daemon, which is a required component in
multi-user Nix installations. It runs build tasks and other
operations on the Nix store on behalf of non-root users. Usually you
don't run the daemon directly; instead it's managed by a service
management framework such as systemd
on Linux, or launchctl
on Darwin.
Note that this daemon does not fork into the background.
Options
-
--default-trust
Use Nix's default trust. -
--force-trusted
Force the daemon to trust connecting clients. -
--force-untrusted
Force the daemon to not trust connecting clients. The connection will be processed by the receiving daemon before forwarding commands. -
--stdio
Attach to standard I/O, instead of trying to bind to a UNIX socket.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix derivation
- Work with derivations, Nix's notion of a build plan.
Synopsis
nix derivation
[option...] subcommand
where subcommand is one of the following:
nix derivation add
- Add a store derivationnix derivation show
- show the contents of a store derivation
Warning
This program is experimental and its interface is subject to change.
Name
nix derivation add
- Add a store derivation
Synopsis
nix derivation add
[option...]
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Description
This command reads from standard input a JSON representation of a store derivation to which an installable evaluates.
Store derivations are used internally by Nix. They are store paths with
extension .drv
that represent the build-time dependency graph to which
a Nix expression evaluates.
The JSON format is documented under the derivation show
command.
Options
--dry-run
Show what this command would do without doing it.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix derivation show
- show the contents of a store derivation
Synopsis
nix derivation show
[option...] installables...
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Show the store derivation that results from evaluating the Hello package:
# nix derivation show nixpkgs#hello { "/nix/store/s6rn4jz1sin56rf4qj5b5v8jxjm32hlk-hello-2.10.drv": { … } }
-
Show the full derivation graph (if available) that produced your NixOS system:
# nix derivation show -r /run/current-system
-
Print all files fetched using
fetchurl
by Firefox's dependency graph:# nix derivation show -r nixpkgs#firefox \ | jq -r '.[] | select(.outputs.out.hash and .env.urls) | .env.urls' \ | uniq | sort
Note that
.outputs.out.hash
selects fixed-output derivations (derivations that produce output with a specified content hash), while.env.urls
selects derivations with aurls
attribute.
Description
This command prints on standard output a JSON representation of the store derivations to which installables evaluate.
Store derivations are used internally by Nix. They are store paths with
extension .drv
that represent the build-time dependency graph to which
a Nix expression evaluates.
By default, this command only shows top-level derivations, but with
--recursive
, it also shows their dependencies.
The JSON output is a JSON object whose keys are the store paths of the derivations, and whose values are a JSON object with the following fields:
-
name
: The name of the derivation. This is used when calculating the store paths of the derivation's outputs. -
outputs
: Information about the output paths of the derivation. This is a JSON object with one member per output, where the key is the output name and the value is a JSON object with these fields:path
: The output path.hashAlgo
: For fixed-output derivations, the hashing algorithm (e.g.sha256
), optionally prefixed byr:
ifhash
denotes a NAR hash rather than a flat file hash.hash
: For fixed-output derivations, the expected content hash in base-16.
Example:
"outputs": { "out": { "path": "/nix/store/2543j7c6jn75blc3drf4g5vhb1rhdq29-source", "hashAlgo": "r:sha256", "hash": "6fc80dcc62179dbc12fc0b5881275898f93444833d21b89dfe5f7fbcbb1d0d62" } }
-
inputSrcs
: A list of store paths on which this derivation depends. -
inputDrvs
: A JSON object specifying the derivations on which this derivation depends, and what outputs of those derivations. For example,"inputDrvs": { "/nix/store/6lkh5yi7nlb7l6dr8fljlli5zfd9hq58-curl-7.73.0.drv": ["dev"], "/nix/store/fn3kgnfzl5dzym26j8g907gq3kbm8bfh-unzip-6.0.drv": ["out"] }
specifies that this derivation depends on the
dev
output ofcurl
, and theout
output ofunzip
. -
system
: The system type on which this derivation is to be built (e.g.x86_64-linux
). -
builder
: The absolute path of the program to be executed to run the build. Typically this is thebash
shell (e.g./nix/store/r3j288vpmczbl500w6zz89gyfa4nr0b1-bash-4.4-p23/bin/bash
). -
args
: The command-line arguments passed to thebuilder
. -
env
: The environment passed to thebuilder
.
Options
-
--recursive
/-r
Include the dependencies of the specified derivations. -
--stdin
Read installables from the standard input. No default installable applied.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix develop
- run a bash shell that provides the build environment of a derivation
Synopsis
nix develop
[option...] installable
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Start a shell with the build environment of the default package of the flake in the current directory:
# nix develop
Typical commands to run inside this shell are:
# configurePhase # buildPhase # installPhase
Alternatively, you can run whatever build tools your project uses directly, e.g. for a typical Unix project:
# ./configure --prefix=$out # make # make install
-
Run a particular build phase directly:
# nix develop --unpack # nix develop --configure # nix develop --build # nix develop --check # nix develop --install # nix develop --installcheck
-
Start a shell with the build environment of GNU Hello:
# nix develop nixpkgs#hello
-
Record a build environment in a profile:
# nix develop --profile /tmp/my-build-env nixpkgs#hello
-
Use a build environment previously recorded in a profile:
# nix develop /tmp/my-build-env
-
Replace all occurrences of the store path corresponding to
glibc.dev
with a writable directory:# nix develop --redirect nixpkgs#glibc.dev ~/my-glibc/outputs/dev
Note that this is useful if you're running a
nix develop
shell fornixpkgs#glibc
in~/my-glibc
and want to compile another package against it. -
Run a series of script commands:
# nix develop --command bash -c "mkdir build && cmake .. && make"
Description
nix develop
starts a bash
shell that provides an interactive build
environment nearly identical to what Lix would use to build
installable. Inside this shell, environment variables and shell
functions are set up so that you can interactively and incrementally
build your package.
Nix determines the build environment by building a modified version of
the derivation installable that just records the environment
initialised by stdenv
and exits. This build environment can be
recorded into a profile using --profile
.
The prompt used by the bash
shell can be customised by setting the
bash-prompt
, bash-prompt-prefix
, and bash-prompt-suffix
settings in
nix.conf
or in the flake's nixConfig
attribute.
Flake output attributes
If no flake output attribute is given, nix develop
tries the following
flake output attributes:
-
devShells.<system>.default
-
packages.<system>.default
If a flake output name is given, nix develop
tries the following flake
output attributes:
-
devShells.<system>.<name>
-
packages.<system>.<name>
-
legacyPackages.<system>.<name>
Options
-
--build
Run thebuild
phase. -
--check
Run thecheck
phase. -
--command
/-c
command args Instead of starting an interactive shell, start the specified command and arguments. -
--configure
Run theconfigure
phase. -
--ignore-environment
/-i
Clear the entire environment (except those specified with--keep
). -
--install
Run theinstall
phase. -
--installcheck
Run theinstallcheck
phase. -
--keep
/-k
name Keep the environment variable name. -
--phase
phase-name The stdenv phase to run (e.g.build
orconfigure
). -
--profile
path The profile to operate on. -
--redirect
installable outputs-dir Redirect a store path to a mutable location. -
--unpack
Run theunpack
phase. -
--unset
/-u
name Unset the environment variable name.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix doctor
- check your system for potential problems and print a PASS or FAIL for each check
Synopsis
nix doctor
[option...]
Warning
This program is experimental and its interface is subject to change.
Name
nix edit
- open the Nix expression of a Nix package in $EDITOR
Synopsis
nix edit
[option...] installable
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Open the Nix expression of the GNU Hello package:
# nix edit nixpkgs#hello
-
Get the filename and line number used by
nix edit
:# nix eval --raw nixpkgs#hello.meta.position /nix/store/fvafw0gvwayzdan642wrv84pzm5bgpmy-source/pkgs/applications/misc/hello/default.nix:15
Description
This command opens the Nix expression of a derivation in an
editor. The filename and line number of the derivation are taken from
its meta.position
attribute. Nixpkgs' stdenv.mkDerivation
sets
this attribute to the location of the definition of the
meta.description
, version
or name
derivation attributes.
The editor to invoke is specified by the EDITOR
environment
variable. It defaults to cat
. If the editor is emacs
, nano
,
vim
or kak
, it is passed the line number of the derivation using
the argument +<lineno>
.
Options
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix eval
- evaluate a Nix expression
Synopsis
nix eval
[option...] installable
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Evaluate a Nix expression given on the command line:
# nix eval --expr '1 + 2'
-
Evaluate a Nix expression to JSON using the short-form expression flag:
# nix eval --json -E '{ x = 1; }' {"x":1}
-
Evaluate a Nix expression from a file:
# nix eval --file ./my-nixpkgs hello.name
-
Get the current version of the
nixpkgs
flake:# nix eval --raw nixpkgs#lib.version
-
Print the store path of the Hello package:
# nix eval --raw nixpkgs#hello
-
Get a list of checks in the
nix
flake:# nix eval nix#checks.x86_64-linux --apply builtins.attrNames
-
Generate a directory with the specified contents:
# nix eval --write-to ./out --expr '{ foo = "bar"; subdir.bla = "123"; }' # cat ./out/foo bar # cat ./out/subdir/bla 123
Description
This command evaluates the given Nix expression and prints the result on standard output.
Output format
nix eval
can produce output in several formats:
-
By default, the evaluation result is printed as a Nix expression.
-
With
--json
, the evaluation result is printed in JSON format. Note that this fails if the result contains values that are not representable as JSON, such as functions. -
With
--raw
, the evaluation result must be a string, which is printed verbatim, without any quoting. -
With
--write-to
path, the evaluation result must be a string or a nested attribute set whose leaf values are strings. These strings are written to files named path/attrpath. path must not already exist.
Options
-
--apply
expr Apply the function expr to each argument. -
--json
Produce output in JSON format, suitable for consumption by another program. -
--raw
Print strings without quotes or escaping. -
--read-only
Do not instantiate each evaluated derivation. This improves performance, but can cause errors when accessing store paths of derivations during evaluation. -
--write-to
path Write a string or attrset of strings to path.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake
- manage Nix flakes
Synopsis
nix flake
[option...] subcommand
where subcommand is one of the following:
nix flake archive
- copy a flake and all its inputs to a storenix flake check
- check whether the flake evaluates and run its testsnix flake clone
- clone flake repositorynix flake info
- show flake metadatanix flake init
- create a flake in the current directory from a templatenix flake lock
- create missing lock file entriesnix flake metadata
- show flake metadatanix flake new
- create a flake in the specified directory from a templatenix flake prefetch
- download the source tree denoted by a flake reference into the Nix storenix flake show
- show the outputs provided by a flakenix flake update
- update flake lock file
Description
nix flake
provides subcommands for creating, modifying and querying
Nix flakes. Flakes are the unit for packaging Nix code in a
reproducible and discoverable way. They can have dependencies on other
flakes, making it possible to have multi-repository Nix projects.
A flake is a filesystem tree (typically fetched from a Git repository
or a tarball) that contains a file named flake.nix
in the root
directory. flake.nix
specifies some metadata about the flake such as
dependencies (called inputs), as well as its outputs (the Nix
values such as packages or NixOS modules provided by the flake).
Flake references
Flake references (flakerefs) are a way to specify the location of a flake. These have two different forms:
Attribute set representation
Example:
{
type = "github";
owner = "NixOS";
repo = "nixpkgs";
}
The only required attribute is type
. The supported types are
listed below.
URL-like syntax
Example:
github:NixOS/nixpkgs
These are used on the command line as a more convenient alternative to the attribute set representation. For instance, in the command
# nix build github:NixOS/nixpkgs#hello
github:NixOS/nixpkgs
is a flake reference (while hello
is an
output attribute). They are also allowed in the inputs
attribute
of a flake, e.g.
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
is equivalent to
inputs.nixpkgs = {
type = "github";
owner = "NixOS";
repo = "nixpkgs";
};
Examples
Here are some examples of flake references in their URL-like representation:
nixpkgs
: Thenixpkgs
entry in the flake registry.nixpkgs/a3a3dda3bacf61e8a39258a0ed9c924eeca8e293
: Thenixpkgs
entry in the flake registry, with its Git revision overridden to a specific value.github:NixOS/nixpkgs
: Themaster
branch of theNixOS/nixpkgs
repository on GitHub.github:NixOS/nixpkgs/nixos-20.09
: Thenixos-20.09
branch of thenixpkgs
repository.github:NixOS/nixpkgs/a3a3dda3bacf61e8a39258a0ed9c924eeca8e293
: A specific revision of thenixpkgs
repository.github:edolstra/nix-warez?dir=blender
: A flake in a subdirectory of a GitHub repository.git+https://github.com/NixOS/patchelf
: A Git repository.git+https://github.com/NixOS/patchelf?ref=master
: A specific branch of a Git repository.git+https://github.com/NixOS/patchelf?ref=master&rev=f34751b88bd07d7f44f5cd3200fb4122bf916c7e
: A specific branch and revision of a Git repository.https://github.com/NixOS/patchelf/archive/master.tar.gz
: A tarball flake.
Path-like syntax
Flakes corresponding to a local path can also be referred to by a direct path reference, either /absolute/path/to/the/flake
or ./relative/path/to/the/flake
(note that the leading ./
is mandatory for relative paths to avoid any ambiguity).
The semantic of such a path is as follows:
- If the directory is part of a Git repository, then the input will be treated as a
git+file:
URL, otherwise it will be treated as apath:
url; - If the directory doesn't contain a
flake.nix
file, then Lix will search for such a file upwards in the file system hierarchy until it finds any of:- The Git repository root, or
- The filesystem root (/), or
- A folder on a different mount point.
Examples
.
: The flake to which the current directory belongs to./home/alice/src/patchelf
: A flake in some other directory.
Flake reference attributes
The following generic flake reference attributes are supported:
-
dir
: The subdirectory of the flake in whichflake.nix
is located. This parameter enables having multiple flakes in a repository or tarball. The default is the root directory of the flake. -
narHash
: The hash of the NAR serialisation (in SRI format) of the contents of the flake. This is useful for flake types such as tarballs that lack a unique content identifier such as a Git commit hash.
In addition, the following attributes are common to several flake reference types:
-
rev
: A Git or Mercurial commit hash. -
ref
: A Git or Mercurial branch or tag name.
Finally, some attribute are typically not specified by the user, but can occur in locked flake references and are available to Nix code:
-
revCount
: The number of ancestors of the commitrev
. -
lastModified
: The timestamp (in seconds since the Unix epoch) of the last modification of this version of the flake. For Git/Mercurial flakes, this is the commit time of commit rev, while for tarball flakes, it's the most recent timestamp of any file inside the tarball.
Types
Currently the type
attribute can be one of the following:
-
path
: arbitrary local directories, or local Git trees. The required attributepath
specifies the path of the flake. The URL form is[path:]<path>(\?<params)?
where path is an absolute path.
path must be a directory in the file system containing a file named
flake.nix
.path generally must be an absolute path. However, on the command line, it can be a relative path (e.g.
.
or./foo
) which is interpreted as relative to the current directory. In this case, it must start with.
to avoid ambiguity with registry lookups (e.g.nixpkgs
is a registry lookup;./nixpkgs
is a relative path). -
git
: Git repositories. The location of the repository is specified by the attributeurl
.They have the URL form
git(+http|+https|+ssh|+git|+file|):(//<server>)?<path>(\?<params>)?
The
ref
attribute defaults to resolving theHEAD
reference.The
rev
attribute must denote a commit that exists in the branch or tag specified by theref
attribute, since Lix doesn't do a full clone of the remote repository by default (and the Git protocol doesn't allow fetching arev
without a knownref
). The default is the commit currently pointed to byref
.When
git+file
is used without specifyingref
orrev
, files are fetched directly from the localpath
as long as they have been added to the Git repository. If there are uncommitted changes, the reference is treated as dirty and a warning is printed.For example, the following are valid Git flake references:
git+https://example.org/my/repo
git+https://example.org/my/repo?dir=flake1
git+ssh://git@github.com/NixOS/nix?ref=v1.2.3
git://github.com/edolstra/dwarffs?ref=unstable&rev=e486d8d40e626a20e06d792db8cc5ac5aba9a5b4
git+file:///home/my-user/some-repo/some-repo
-
mercurial
: Mercurial repositories. The URL form is similar to thegit
type, except that the URL schema must be one ofhg+http
,hg+https
,hg+ssh
orhg+file
. -
tarball
: Tarballs. The location of the tarball is specified by the attributeurl
.In URL form, the schema must be
tarball+http://
,tarball+https://
ortarball+file://
. If the extension corresponds to a known archive format (.zip
,.tar
,.tgz
,.tar.gz
,.tar.xz
,.tar.bz2
or.tar.zst
), then thetarball+
can be dropped. -
file
: Plain files or directory tarballs, either over http(s) or from the local disk.In URL form, the schema must be
file+http://
,file+https://
orfile+file://
. If the extension doesn’t correspond to a known archive format (as defined by thetarball
fetcher), then thefile+
prefix can be dropped. -
github
: A more efficient way to fetch repositories from GitHub. The following attributes are required:-
owner
: The owner of the repository. -
repo
: The name of the repository.
These are downloaded as tarball archives, rather than through Git. This is often much faster and uses less disk space since it doesn't require fetching the entire history of the repository. On the other hand, it doesn't allow incremental fetching (but full downloads are often faster than incremental fetches!).
The URL syntax for
github
flakes is:github:<owner>/<repo>(/<rev-or-ref>)?(\?<params>)?
<rev-or-ref>
specifies the name of a branch or tag (ref
), or a commit hash (rev
). Note that unlike Git, GitHub allows fetching by commit hash without specifying a branch or tag.You can also specify
host
as a parameter, to point to a custom GitHub Enterprise server.Some examples:
github:edolstra/dwarffs
github:edolstra/dwarffs/unstable
github:edolstra/dwarffs/d3f2baba8f425779026c6ec04021b2e927f61e31
github:internal/project?host=company-github.example.org
-
-
gitlab
: Similar togithub
, is a more efficient way to fetch GitLab repositories. The following attributes are required:-
owner
: The owner of the repository. -
repo
: The name of the repository.
Like
github
, these are downloaded as tarball archives.The URL syntax for
gitlab
flakes is:gitlab:<owner>/<repo>(/<rev-or-ref>)?(\?<params>)?
<rev-or-ref>
works the same asgithub
. Either a branch or tag name (ref
), or a commit hash (rev
) can be specified.Since GitLab allows for self-hosting, you can specify
host
as a parameter, to point to any instances other thangitlab.com
.Some examples:
gitlab:veloren/veloren
gitlab:veloren/veloren/master
gitlab:veloren/veloren/80a4d7f13492d916e47d6195be23acae8001985a
gitlab:openldap/openldap?host=git.openldap.org
When accessing a project in a (nested) subgroup, make sure to URL-encode any slashes, i.e. replace
/
with%2F
:gitlab:veloren%2Fdev/rfcs
-
-
sourcehut
: Similar togithub
, is a more efficient way to fetch SourceHut repositories. The following attributes are required:-
owner
: The owner of the repository (including leading~
). -
repo
: The name of the repository.
Like
github
, these are downloaded as tarball archives.The URL syntax for
sourcehut
flakes is:sourcehut:<owner>/<repo>(/<rev-or-ref>)?(\?<params>)?
<rev-or-ref>
works the same asgithub
. Either a branch or tag name (ref
), or a commit hash (rev
) can be specified.Since SourceHut allows for self-hosting, you can specify
host
as a parameter, to point to any instances other thangit.sr.ht
.Currently,
ref
name resolution only works for Git repositories. You can refer to Mercurial repositories by simply changinghost
tohg.sr.ht
(or any other Mercurial instance). With the caveat that you must explicitly specify a commit hash (rev
).Some examples:
sourcehut:~misterio/nix-colors
sourcehut:~misterio/nix-colors/main
sourcehut:~misterio/nix-colors?host=git.example.org
sourcehut:~misterio/nix-colors/182b4b8709b8ffe4e9774a4c5d6877bf6bb9a21c
sourcehut:~misterio/nix-colors/21c1a380a6915d890d408e9f22203436a35bb2de?host=hg.sr.ht
-
-
indirect
: Indirections through the flake registry. These have the form[flake:]<flake-id>(/<rev-or-ref>(/rev)?)?
These perform a lookup of
<flake-id>
in the flake registry. For example,nixpkgs
andnixpkgs/release-20.09
are indirect flake references. The specifiedrev
and/orref
are merged with the entry in the registry; see nix registry for details.
Flake format
As an example, here is a simple flake.nix
that depends on the
Nixpkgs flake and provides a single package (i.e. an
installable derivation):
{
description = "A flake for building Hello World";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-20.03";
outputs = { self, nixpkgs }: {
packages.x86_64-linux.default =
# Notice the reference to nixpkgs here.
with import nixpkgs { system = "x86_64-linux"; };
stdenv.mkDerivation {
name = "hello";
src = self;
buildPhase = "gcc -o hello ./hello.c";
installPhase = "mkdir -p $out/bin; install -t $out/bin hello";
};
};
}
The following attributes are supported in flake.nix
:
-
description
: A short, one-line description of the flake. -
inputs
: An attrset specifying the dependencies of the flake (described below). -
outputs
: A function that, given an attribute set containing the outputs of each of the input flakes keyed by their identifier, yields the Nix values provided by this flake. Thus, in the example above,inputs.nixpkgs
contains the result of the call to theoutputs
function of thenixpkgs
flake.In addition to the outputs of each input, each input in
inputs
also contains some metadata about the inputs. These are:-
outPath
: The path in the Nix store of the flake's source tree. This way, the attribute set can be passed toimport
as if it was a path, as in the example above (import nixpkgs
). -
rev
: The commit hash of the flake's repository, if applicable. -
revCount
: The number of ancestors of the revisionrev
. This is not available forgithub
repositories, since they're fetched as tarballs rather than as Git repositories. -
lastModifiedDate
: The commit time of the revisionrev
, in the format%Y%m%d%H%M%S
(e.g.20181231100934
). UnlikerevCount
, this is available for both Git and GitHub repositories, so it's useful for generating (hopefully) monotonically increasing version strings. -
lastModified
: The commit time of the revisionrev
as an integer denoting the number of seconds since 1970. -
narHash
: The SHA-256 (in SRI format) of the NAR serialization of the flake's source tree.
The value returned by the
outputs
function must be an attribute set. The attributes can have arbitrary values; however, variousnix
subcommands require specific attributes to have a specific value (e.g.packages.x86_64-linux
must be an attribute set of derivations built for thex86_64-linux
platform). -
-
nixConfig
: a set ofnix.conf
options to be set when evaluating any part of a flake. This attribute is only considered if the flake is at top-level (i.e. if it is passed directly tonix build
,nix run
, etc, rather than as an input of another flake). In the interests of security, only a small set of set of options is allowed to be set without confirmation so long asaccept-flake-config
is not enabled in the global configuration:For the avoidance of doubt, setting
accept-flake-config
innix.conf
or passing--accept-flake-config
allows root access to your machine if you are running as a trusted user and don't readnixConfig
in every flake you build.
Flake inputs
The attribute inputs
specifies the dependencies of a flake, as an
attrset mapping input names to flake references. For example, the
following specifies a dependency on the nixpkgs
and import-cargo
repositories:
# A GitHub repository.
inputs.import-cargo = {
type = "github";
owner = "edolstra";
repo = "import-cargo";
};
# An indirection through the flake registry.
inputs.nixpkgs = {
type = "indirect";
id = "nixpkgs";
};
Alternatively, you can use the URL-like syntax:
inputs.import-cargo.url = "github:edolstra/import-cargo";
inputs.nixpkgs.url = "nixpkgs";
Each input is fetched, evaluated and passed to the outputs
function
as a set of attributes with the same name as the corresponding
input. The special input named self
refers to the outputs and source
tree of this flake. Thus, a typical outputs
function looks like
this:
outputs = { self, nixpkgs, import-cargo }: {
... outputs ...
};
It is also possible to omit an input entirely and only list it as
expected function argument to outputs
. Thus,
outputs = { self, nixpkgs }: ...;
without an inputs.nixpkgs
attribute is equivalent to
inputs.nixpkgs = {
type = "indirect";
id = "nixpkgs";
};
Repositories that don't contain a flake.nix
can also be used as
inputs, by setting the input's flake
attribute to false
:
inputs.grcov = {
type = "github";
owner = "mozilla";
repo = "grcov";
flake = false;
};
outputs = { self, nixpkgs, grcov }: {
packages.x86_64-linux.grcov = stdenv.mkDerivation {
src = grcov;
...
};
};
Transitive inputs can be overridden from a flake.nix
file. For
example, the following overrides the nixpkgs
input of the nixops
input:
inputs.nixops.inputs.nixpkgs = {
type = "github";
owner = "my-org";
repo = "nixpkgs";
};
It is also possible to "inherit" an input from another input. This is
useful to minimize flake dependencies. For example, the following sets
the nixpkgs
input of the top-level flake to be equal to the
nixpkgs
input of the dwarffs
input of the top-level flake:
inputs.nixpkgs.follows = "dwarffs/nixpkgs";
The value of the follows
attribute is a /
-separated sequence of
input names denoting the path of inputs to be followed from the root
flake.
Overrides and follows
can be combined, e.g.
inputs.nixops.inputs.nixpkgs.follows = "dwarffs/nixpkgs";
sets the nixpkgs
input of nixops
to be the same as the nixpkgs
input of dwarffs
. It is worth noting, however, that it is generally
not useful to eliminate transitive nixpkgs
flake inputs in this
way. Most flakes provide their functionality through Nixpkgs overlays
or NixOS modules, which are composed into the top-level flake's
nixpkgs
input; so their own nixpkgs
input is usually irrelevant.
Lock files
Inputs specified in flake.nix
are typically "unlocked" in the sense
that they don't specify an exact revision. To ensure reproducibility,
Nix will automatically generate and use a lock file called
flake.lock
in the flake's directory. The lock file contains a graph
structure isomorphic to the graph of dependencies of the root
flake. Each node in the graph (except the root node) maps the
(usually) unlocked input specifications in flake.nix
to locked input
specifications. Each node also contains some metadata, such as the
dependencies (outgoing edges) of the node.
For example, if flake.nix
has the inputs in the example above, then
the resulting lock file might be:
{
"version": 7,
"root": "n1",
"nodes": {
"n1": {
"inputs": {
"nixpkgs": "n2",
"import-cargo": "n3",
"grcov": "n4"
}
},
"n2": {
"inputs": {},
"locked": {
"owner": "edolstra",
"repo": "nixpkgs",
"rev": "7f8d4b088e2df7fdb6b513bc2d6941f1d422a013",
"type": "github",
"lastModified": 1580555482,
"narHash": "sha256-OnpEWzNxF/AU4KlqBXM2s5PWvfI5/BS6xQrPvkF5tO8="
},
"original": {
"id": "nixpkgs",
"type": "indirect"
}
},
"n3": {
"inputs": {},
"locked": {
"owner": "edolstra",
"repo": "import-cargo",
"rev": "8abf7b3a8cbe1c8a885391f826357a74d382a422",
"type": "github",
"lastModified": 1567183309,
"narHash": "sha256-wIXWOpX9rRjK5NDsL6WzuuBJl2R0kUCnlpZUrASykSc="
},
"original": {
"owner": "edolstra",
"repo": "import-cargo",
"type": "github"
}
},
"n4": {
"inputs": {},
"locked": {
"owner": "mozilla",
"repo": "grcov",
"rev": "989a84bb29e95e392589c4e73c29189fd69a1d4e",
"type": "github",
"lastModified": 1580729070,
"narHash": "sha256-235uMxYlHxJ5y92EXZWAYEsEb6mm+b069GAd+BOIOxI="
},
"original": {
"owner": "mozilla",
"repo": "grcov",
"type": "github"
},
"flake": false
}
}
}
This graph has 4 nodes: the root flake, and its 3 dependencies. The
nodes have arbitrary labels (e.g. n1
). The label of the root node of
the graph is specified by the root
attribute. Nodes contain the
following fields:
-
inputs
: The dependencies of this node, as a mapping from input names (e.g.nixpkgs
) to node labels (e.g.n2
). -
original
: The original input specification fromflake.lock
, as a set ofbuiltins.fetchTree
arguments. -
locked
: The locked input specification, as a set ofbuiltins.fetchTree
arguments. Thus, in the example above, when we build this flake, the inputnixpkgs
is mapped to revision7f8d4b088e2df7fdb6b513bc2d6941f1d422a013
of theedolstra/nixpkgs
repository on GitHub.It also includes the attribute
narHash
, specifying the expected contents of the tree in the Nix store (as computed bynix hash-path
), and may include input-type-specific attributes such as thelastModified
orrevCount
. The main reason for these attributes is to allow flake inputs to be substituted from a binary cache:narHash
allows the store path to be computed, while the other attributes are necessary because they provide information not stored in the store path. -
flake
: A Boolean denoting whether this is a flake or non-flake dependency. Corresponds to theflake
attribute in theinputs
attribute inflake.nix
.
The original
and locked
attributes are omitted for the root
node. This is because we cannot record the commit hash or content hash
of the root flake, since modifying flake.lock
will invalidate these.
The graph representation of lock files allows circular dependencies between flakes. For example, here are two flakes that reference each other:
{
inputs.b = ... location of flake B ...;
# Tell the 'b' flake not to fetch 'a' again, to ensure its 'a' is
# *this* 'a'.
inputs.b.inputs.a.follows = "";
outputs = { self, b }: {
foo = 123 + b.bar;
xyzzy = 1000;
};
}
and
{
inputs.a = ... location of flake A ...;
inputs.a.inputs.b.follows = "";
outputs = { self, a }: {
bar = 456 + a.xyzzy;
};
}
Lock files transitively lock direct as well as indirect dependencies. That is, if a lock file exists and is up to date, Nix will not look at the lock files of dependencies. However, lock file generation itself does use the lock files of dependencies by default.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake archive
- copy a flake and all its inputs to a store
Synopsis
nix flake archive
[option...] flake-url
Examples
-
Copy the
dwarffs
flake and its dependencies to a binary cache:# nix flake archive --to file:///tmp/my-cache dwarffs
-
Fetch the
dwarffs
flake and its dependencies to the local Nix store:# nix flake archive dwarffs
-
Print the store paths of the flake sources of NixOps without fetching them:
# nix flake archive --json --dry-run nixops
Description
FIXME
Options
-
--dry-run
Show what this command would do without doing it. -
--json
Produce output in JSON format, suitable for consumption by another program. -
--to
store-uri URI of the destination Nix store
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake check
- check whether the flake evaluates and run its tests
Synopsis
nix flake check
[option...] flake-url
Examples
-
Evaluate the flake in the current directory, and build its checks:
# nix flake check
-
Verify that the
patchelf
flake evaluates, but don't build its checks:# nix flake check --no-build github:NixOS/patchelf
Description
This command verifies that the flake specified by flake reference
flake-url can be evaluated successfully (as detailed below), and
that the derivations specified by the flake's checks
output can be
built successfully.
If the keep-going
option is set to true
, Lix will keep evaluating as much
as it can and report the errors as it encounters them. Otherwise it will stop
at the first error.
Evaluation checks
The following flake output attributes must be derivations:
checks.
system.
namedefaultPackage.
systemdevShell.
systemdevShells.
system.
namenixosConfigurations.
name.config.system.build.toplevel
packages.
system.
name
The following flake output attributes must be app definitions:
apps.
system.
namedefaultApp.
system
The following flake output attributes must be template definitions:
defaultTemplate
templates.
name
The following flake output attributes must be Nixpkgs overlays:
overlay
overlays.
name
The following flake output attributes must be NixOS modules:
nixosModule
nixosModules.
name
The following flake output attributes must be bundlers:
bundlers.
namedefaultBundler
In addition, the hydraJobs
output is evaluated in the same way as
Hydra's hydra-eval-jobs
(i.e. as a arbitrarily deeply nested
attribute set of derivations). Similarly, the
legacyPackages
.system output is evaluated like nix-env --query --available
.
Options
-
--all-systems
Check the outputs for all systems. -
--no-build
Do not build checks.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake clone
- clone flake repository
Synopsis
nix flake clone
[option...] flake-url
Examples
-
Check out the source code of the
dwarffs
flake and build it:# nix flake clone dwarffs --dest dwarffs # cd dwarffs # nix build
Description
This command performs a Git or Mercurial clone of the repository containing the source code of the flake flake-url.
Options
--dest
/-f
path Clone the flake to path dest.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake info
- show flake metadata
Synopsis
nix flake info
[option...] flake-url
Examples
-
Show what
nixpkgs
resolves to:# nix flake metadata nixpkgs Resolved URL: github:edolstra/dwarffs Locked URL: github:edolstra/dwarffs/f691e2c991e75edb22836f1dbe632c40324215c5 Description: A filesystem that fetches DWARF debug info from the Internet on demand Path: /nix/store/769s05vjydmc2lcf6b02az28wsa9ixh1-source Revision: f691e2c991e75edb22836f1dbe632c40324215c5 Last modified: 2021-01-21 15:41:26 Inputs: ├───nix: github:NixOS/nix/6254b1f5d298ff73127d7b0f0da48f142bdc753c │ ├───lowdown-src: github:kristapsdz/lowdown/1705b4a26fbf065d9574dce47a94e8c7c79e052f │ └───nixpkgs: github:NixOS/nixpkgs/ad0d20345219790533ebe06571f82ed6b034db31 └───nixpkgs follows input 'nix/nixpkgs'
-
Show information about
dwarffs
in JSON format:# nix flake metadata dwarffs --json | jq . { "description": "A filesystem that fetches DWARF debug info from the Internet on demand", "lastModified": 1597153508, "locked": { "lastModified": 1597153508, "narHash": "sha256-VHg3MYVgQ12LeRSU2PSoDeKlSPD8PYYEFxxwkVVDRd0=", "owner": "edolstra", "repo": "dwarffs", "rev": "d181d714fd36eb06f4992a1997cd5601e26db8f5", "type": "github" }, "locks": { ... }, "original": { "id": "dwarffs", "type": "indirect" }, "originalUrl": "flake:dwarffs", "path": "/nix/store/hang3792qwdmm2n0d9nsrs5n6bsws6kv-source", "resolved": { "owner": "edolstra", "repo": "dwarffs", "type": "github" }, "resolvedUrl": "github:edolstra/dwarffs", "revision": "d181d714fd36eb06f4992a1997cd5601e26db8f5", "url": "github:edolstra/dwarffs/d181d714fd36eb06f4992a1997cd5601e26db8f5" }
Description
This command shows information about the flake specified by the flake reference flake-url. It resolves the flake reference using the flake registry, fetches it, and prints some meta data. This includes:
-
Resolved URL
: If flake-url is a flake identifier, then this is the flake reference that specifies its actual location, looked up in the flake registry. -
Locked URL
: A flake reference that contains a commit or content hash and thus uniquely identifies a specific flake version. -
Description
: A one-line description of the flake, taken from thedescription
field inflake.nix
. -
Path
: The store path containing the source code of the flake. -
Revision
: The Git or Mercurial commit hash of the locked flake. -
Revisions
: The number of ancestors of the Git or Mercurial commit of the locked flake. Note that this is not available forgithub
flakes. -
Last modified
: For Git or Mercurial flakes, this is the commit time of the commit of the locked flake; for tarball flakes, it's the most recent timestamp of any file inside the tarball. -
Inputs
: The flake inputs with their corresponding lock file entries.
With --json
, the output is a JSON object with the following fields:
-
original
andoriginalUrl
: The flake reference specified by the user (flake-url) in attribute set and URL representation. -
resolved
andresolvedUrl
: The resolved flake reference (see above) in attribute set and URL representation. -
locked
andlockedUrl
: The locked flake reference (see above) in attribute set and URL representation. -
description
: SeeDescription
above. -
path
: SeePath
above. -
revision
: SeeRevision
above. -
revCount
: SeeRevisions
above. -
lastModified
: SeeLast modified
above. -
locks
: The contents offlake.lock
.
Options
--json
Produce output in JSON format, suitable for consumption by another program.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake init
- create a flake in the current directory from a template
Synopsis
nix flake init
[option...]
Examples
-
Create a flake using the default template:
# nix flake init
-
List available templates:
# nix flake show templates
-
Create a flake from a specific template:
# nix flake init -t templates#simpleContainer
Description
This command creates a flake in the current directory by copying the
files of a template. It will not overwrite existing files. The default
template is templates#templates.default
, but this can be overridden
using -t
.
Template definitions
A flake can declare templates through its templates
output
attribute. A template has two attributes:
-
description
: A one-line description of the template, in CommonMark syntax. -
path
: The path of the directory to be copied. -
welcomeText
: A block of markdown text to display when a user initializes a new flake based on this template.
Here is an example:
outputs = { self }: {
templates.rust = {
path = ./rust;
description = "A simple Rust/Cargo project";
welcomeText = ''
# Simple Rust/Cargo Template
## Intended usage
The intended usage of this flake is...
## More info
- [Rust language](https://www.rust-lang.org/)
- [Rust on the NixOS Wiki](https://nixos.wiki/wiki/Rust)
- ...
'';
};
templates.default = self.templates.rust;
}
Options
--template
/-t
template The template to use.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake lock
- create missing lock file entries
Synopsis
nix flake lock
[option...] flake-url
Examples
-
Create the lock file for the flake in the current directory:
# nix flake lock warning: creating lock file '/home/myself/repos/testflake/flake.lock': • Added input 'nix': 'github:NixOS/nix/9fab14adbc3810d5cc1f88672fde1eee4358405c' (2023-06-28) • Added input 'nixpkgs': 'github:NixOS/nixpkgs/3d2d8f281a27d466fa54b469b5993f7dde198375' (2023-06-30)
-
Add missing inputs to the lock file for a flake in a different directory:
# nix flake lock ~/repos/another warning: updating lock file '/home/myself/repos/another/flake.lock': • Added input 'nixpkgs': 'github:NixOS/nixpkgs/3d2d8f281a27d466fa54b469b5993f7dde198375' (2023-06-30)
Note
When trying to refer to a flake in a subdirectory, write
./another
instead ofanother
. Otherwise Lix will try to look up the flake in the registry.
Description
This command adds inputs to the lock file of a flake (flake.lock
)
so that it contains a lock for every flake input specified in
flake.nix
. Existing lock file entries are not updated.
If you want to update existing lock entries, use
nix flake update
Options
--update-input
input-path Replaced withnix flake update input...
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake metadata
- show flake metadata
Synopsis
nix flake metadata
[option...] flake-url
Examples
-
Show what
nixpkgs
resolves to:# nix flake metadata nixpkgs Resolved URL: github:edolstra/dwarffs Locked URL: github:edolstra/dwarffs/f691e2c991e75edb22836f1dbe632c40324215c5 Description: A filesystem that fetches DWARF debug info from the Internet on demand Path: /nix/store/769s05vjydmc2lcf6b02az28wsa9ixh1-source Revision: f691e2c991e75edb22836f1dbe632c40324215c5 Last modified: 2021-01-21 15:41:26 Inputs: ├───nix: github:NixOS/nix/6254b1f5d298ff73127d7b0f0da48f142bdc753c │ ├───lowdown-src: github:kristapsdz/lowdown/1705b4a26fbf065d9574dce47a94e8c7c79e052f │ └───nixpkgs: github:NixOS/nixpkgs/ad0d20345219790533ebe06571f82ed6b034db31 └───nixpkgs follows input 'nix/nixpkgs'
-
Show information about
dwarffs
in JSON format:# nix flake metadata dwarffs --json | jq . { "description": "A filesystem that fetches DWARF debug info from the Internet on demand", "lastModified": 1597153508, "locked": { "lastModified": 1597153508, "narHash": "sha256-VHg3MYVgQ12LeRSU2PSoDeKlSPD8PYYEFxxwkVVDRd0=", "owner": "edolstra", "repo": "dwarffs", "rev": "d181d714fd36eb06f4992a1997cd5601e26db8f5", "type": "github" }, "locks": { ... }, "original": { "id": "dwarffs", "type": "indirect" }, "originalUrl": "flake:dwarffs", "path": "/nix/store/hang3792qwdmm2n0d9nsrs5n6bsws6kv-source", "resolved": { "owner": "edolstra", "repo": "dwarffs", "type": "github" }, "resolvedUrl": "github:edolstra/dwarffs", "revision": "d181d714fd36eb06f4992a1997cd5601e26db8f5", "url": "github:edolstra/dwarffs/d181d714fd36eb06f4992a1997cd5601e26db8f5" }
Description
This command shows information about the flake specified by the flake reference flake-url. It resolves the flake reference using the flake registry, fetches it, and prints some meta data. This includes:
-
Resolved URL
: If flake-url is a flake identifier, then this is the flake reference that specifies its actual location, looked up in the flake registry. -
Locked URL
: A flake reference that contains a commit or content hash and thus uniquely identifies a specific flake version. -
Description
: A one-line description of the flake, taken from thedescription
field inflake.nix
. -
Path
: The store path containing the source code of the flake. -
Revision
: The Git or Mercurial commit hash of the locked flake. -
Revisions
: The number of ancestors of the Git or Mercurial commit of the locked flake. Note that this is not available forgithub
flakes. -
Last modified
: For Git or Mercurial flakes, this is the commit time of the commit of the locked flake; for tarball flakes, it's the most recent timestamp of any file inside the tarball. -
Inputs
: The flake inputs with their corresponding lock file entries.
With --json
, the output is a JSON object with the following fields:
-
original
andoriginalUrl
: The flake reference specified by the user (flake-url) in attribute set and URL representation. -
resolved
andresolvedUrl
: The resolved flake reference (see above) in attribute set and URL representation. -
locked
andlockedUrl
: The locked flake reference (see above) in attribute set and URL representation. -
description
: SeeDescription
above. -
path
: SeePath
above. -
revision
: SeeRevision
above. -
revCount
: SeeRevisions
above. -
lastModified
: SeeLast modified
above. -
locks
: The contents offlake.lock
.
Options
--json
Produce output in JSON format, suitable for consumption by another program.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake new
- create a flake in the specified directory from a template
Synopsis
nix flake new
[option...] dest-dir
Examples
-
Create a flake using the default template in the directory
hello
:# nix flake new hello
-
List available templates:
# nix flake show templates
-
Create a flake from a specific template in the directory
hello
:# nix flake new hello -t templates#trivial
Description
This command creates a flake in the directory dest-dir
, which must
not already exist. It's equivalent to:
# mkdir dest-dir
# cd dest-dir
# nix flake init
Options
--template
/-t
template The template to use.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake prefetch
- download the source tree denoted by a flake reference into the Nix store
Synopsis
nix flake prefetch
[option...] flake-url
Examples
-
Download a tarball and unpack it:
# nix flake prefetch https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.5.tar.xz Downloaded 'https://cdn.kernel.org/pub/linux/kernel/v5.x/linux-5.10.5.tar.xz?narHash=sha256-3XYHZANT6AFBV0BqegkAZHbba6oeDkIUCDwbATLMhAY=' to '/nix/store/sl5vvk8mb4ma1sjyy03kwpvkz50hd22d-source' (hash 'sha256-3XYHZANT6AFBV0BqegkAZHbba6oeDkIUCDwbATLMhAY=').
-
Download the
dwarffs
flake (looked up in the flake registry):# nix flake prefetch dwarffs --json {"hash":"sha256-VHg3MYVgQ12LeRSU2PSoDeKlSPD8PYYEFxxwkVVDRd0=" ,"storePath":"/nix/store/hang3792qwdmm2n0d9nsrs5n6bsws6kv-source"}
Description
This command downloads the source tree denoted by flake reference
flake-url. Note that this does not need to be a flake (i.e. it does
not have to contain a flake.nix
file).
Options
--json
Produce output in JSON format, suitable for consumption by another program.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake show
- show the outputs provided by a flake
Synopsis
nix flake show
[option...] flake-url
Examples
-
Show the output attributes provided by the
patchelf
flake:github:NixOS/patchelf/f34751b88bd07d7f44f5cd3200fb4122bf916c7e ├───checks │ ├───aarch64-linux │ │ └───build: derivation 'patchelf-0.12.20201207.f34751b' │ ├───i686-linux │ │ └───build: derivation 'patchelf-0.12.20201207.f34751b' │ └───x86_64-linux │ └───build: derivation 'patchelf-0.12.20201207.f34751b' ├───packages │ ├───aarch64-linux │ │ └───default: package 'patchelf-0.12.20201207.f34751b' │ ├───i686-linux │ │ └───default: package 'patchelf-0.12.20201207.f34751b' │ └───x86_64-linux │ └───default: package 'patchelf-0.12.20201207.f34751b' ├───hydraJobs │ ├───build │ │ ├───aarch64-linux: derivation 'patchelf-0.12.20201207.f34751b' │ │ ├───i686-linux: derivation 'patchelf-0.12.20201207.f34751b' │ │ └───x86_64-linux: derivation 'patchelf-0.12.20201207.f34751b' │ ├───coverage: derivation 'patchelf-coverage-0.12.20201207.f34751b' │ ├───release: derivation 'patchelf-0.12.20201207.f34751b' │ └───tarball: derivation 'patchelf-tarball-0.12.20201207.f34751b' └───overlay: Nixpkgs overlay
Description
This command shows the output attributes provided by the flake
specified by flake reference flake-url. These are the top-level
attributes in the outputs
of the flake, as well as lower-level
attributes for some standard outputs (e.g. packages
or checks
).
With --json
, the output is in a JSON representation suitable for automatic
processing by other tools.
Options
-
--all-systems
Show the contents of outputs for all systems. -
--json
Produce output in JSON format, suitable for consumption by another program. -
--legacy
Show the contents of thelegacyPackages
output.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix flake update
- update flake lock file
Synopsis
nix flake update
[option...] inputs...
Examples
-
Update all inputs (i.e. recreate the lock file from scratch):
# nix flake update warning: updating lock file '/home/myself/repos/testflake/flake.lock': • Updated input 'nix': 'github:NixOS/nix/9fab14adbc3810d5cc1f88672fde1eee4358405c' (2023-06-28) → 'github:NixOS/nix/8927cba62f5afb33b01016d5c4f7f8b7d0adde3c' (2023-07-11) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/3d2d8f281a27d466fa54b469b5993f7dde198375' (2023-06-30) → 'github:NixOS/nixpkgs/a3a3dda3bacf61e8a39258a0ed9c924eeca8e293' (2023-07-05)
-
Update only a single input:
# nix flake update nixpkgs warning: updating lock file '/home/myself/repos/testflake/flake.lock': • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/3d2d8f281a27d466fa54b469b5993f7dde198375' (2023-06-30) → 'github:NixOS/nixpkgs/a3a3dda3bacf61e8a39258a0ed9c924eeca8e293' (2023-07-05)
-
Update only a single input of a flake in a different directory:
# nix flake update nixpkgs --flake ~/repos/another warning: updating lock file '/home/myself/repos/another/flake.lock': • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/3d2d8f281a27d466fa54b469b5993f7dde198375' (2023-06-30) → 'github:NixOS/nixpkgs/a3a3dda3bacf61e8a39258a0ed9c924eeca8e293' (2023-07-05)
Note
When trying to refer to a flake in a subdirectory, write
./another
instead ofanother
. Otherwise Lix will try to look up the flake in the registry.
Description
This command updates the inputs in a lock file (flake.lock
).
By default, all inputs are updated. If the lock file doesn't exist
yet, it will be created. If inputs are not in the lock file yet, they will be added.
Unlike other nix flake
commands, nix flake update
takes a list of names of inputs
to update as its positional arguments and operates on the flake in the current directory.
You can pass a different flake-url with --flake
to override that default.
The related command nix flake lock
also creates lock files and adds missing inputs, but is safer as it
will never update inputs already in the lock file.
Options
--flake
flake-url The flake to operate on. Default is the current directory.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix fmt
- reformat your code in the standard style
Synopsis
nix fmt
[option...] args...
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
With nixpkgs-fmt:
# flake.nix
{
outputs = { nixpkgs, self }: {
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt;
};
}
-
Format the current flake:
$ nix fmt
-
Format a specific folder or file:
$ nix fmt ./folder ./file.nix
With nixfmt:
# flake.nix
{
outputs = { nixpkgs, self }: {
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixfmt;
};
}
- Format specific files:
$ nix fmt ./file1.nix ./file2.nix
With Alejandra:
# flake.nix
{
outputs = { nixpkgs, self }: {
formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.alejandra;
};
}
-
Format the current flake:
$ nix fmt
-
Format a specific folder or file:
$ nix fmt ./folder ./file.nix
Description
nix fmt
will rewrite all Nix files (*.nix) to a canonical format
using the formatter specified in your flake.
Options
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix hash
- compute and convert cryptographic hashes
Synopsis
nix hash
[option...] subcommand
where subcommand is one of the following:
nix hash file
- print cryptographic hash of a regular filenix hash path
- print cryptographic hash of the NAR serialisation of a pathnix hash to-base16
- convert a hash to base-16 representationnix hash to-base32
- convert a hash to base-32 representationnix hash to-base64
- convert a hash to base-64 representationnix hash to-sri
- convert a hash to SRI representation
Warning
This program is experimental and its interface is subject to change.
Name
nix hash file
- print cryptographic hash of a regular file
Synopsis
nix hash file
[option...] paths...
Options
-
--base16
Print the hash in base-16 format. -
--base32
Print the hash in base-32 (Nix-specific) format. -
--base64
Print the hash in base-64 format. -
--sri
Print the hash in SRI format. -
--type
hash-algo hash algorithm ('md5', 'sha1', 'sha256', or 'sha512')
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix hash path
- print cryptographic hash of the NAR serialisation of a path
Synopsis
nix hash path
[option...] paths...
Options
-
--base16
Print the hash in base-16 format. -
--base32
Print the hash in base-32 (Nix-specific) format. -
--base64
Print the hash in base-64 format. -
--sri
Print the hash in SRI format. -
--type
hash-algo hash algorithm ('md5', 'sha1', 'sha256', or 'sha512')
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix hash to-base16
- convert a hash to base-16 representation
Synopsis
nix hash to-base16
[option...] strings...
Options
--type
hash-algo hash algorithm ('md5', 'sha1', 'sha256', or 'sha512'). Optional as can also be gotten from SRI hash itself.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix hash to-base32
- convert a hash to base-32 representation
Synopsis
nix hash to-base32
[option...] strings...
Options
--type
hash-algo hash algorithm ('md5', 'sha1', 'sha256', or 'sha512'). Optional as can also be gotten from SRI hash itself.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix hash to-base64
- convert a hash to base-64 representation
Synopsis
nix hash to-base64
[option...] strings...
Options
--type
hash-algo hash algorithm ('md5', 'sha1', 'sha256', or 'sha512'). Optional as can also be gotten from SRI hash itself.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix hash to-sri
- convert a hash to SRI representation
Synopsis
nix hash to-sri
[option...] strings...
Options
--type
hash-algo hash algorithm ('md5', 'sha1', 'sha256', or 'sha512'). Optional as can also be gotten from SRI hash itself.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix help
- show help about nix
or a particular subcommand
Synopsis
nix help
[option...] subcommand...
Examples
-
Show help about
nix
in general:# nix help
-
Show help about a particular subcommand:
# nix help flake info
Warning
This program is experimental and its interface is subject to change.
Name
nix help-stores
- show help about store types and their settings
Synopsis
nix help-stores
[option...]
Lix supports different types of stores. These are described below.
Store URL format
Stores are specified using a URL-like syntax. For example, the command
# nix path-info --store https://cache.nixos.org/ --json \
/nix/store/a7gvj343m05j2s32xcnwr35v31ynlypr-coreutils-9.1
fetches information about a store path in the HTTP binary cache located at https://cache.nixos.org/, which is a type of store.
Store URLs can specify store settings using URL query strings,
i.e. by appending ?name1=value1&name2=value2&...
to the URL. For
instance,
--store ssh://machine.example.org?ssh-key=/path/to/my/key
tells Lix to access the store on a remote machine via the SSH
protocol, using /path/to/my/key
as the SSH private key. The
supported settings for each store type are documented below.
The special store URL auto
causes Lix to automatically select a
store as follows:
-
Use the local store
/nix/store
if/nix/var/nix
is writable by the current user. -
Otherwise, if
/nix/var/nix/daemon-socket/socket
exists, connect to the Nix daemon listening on that socket. -
Otherwise, on Linux only, use the local chroot store
~/.local/share/nix/root
, which will be created automatically if it does not exist. -
Otherwise, use the local store
/nix/store
.
Dummy Store
Store URL format: dummy://
This store type represents a store that contains no store paths and cannot be written to. It's useful when you want to use the Nix evaluator when no actual Nix store exists, e.g.
# nix eval --store dummy:// --expr '1 + 2'
Settings:
-
Size of the in-memory store path metadata cache.
Default:
65536
-
Priority of this store when used as a substituter. A lower value means a higher priority.
Default:
0
-
Logical location of the Nix store, usually
/nix/store
. Note that you can only copy store paths between stores if they have the samestore
setting.Default:
/nix/store
-
Optional features that the system this store builds on implements (like "kvm").
Default: machine-specific
-
Whether paths from this store can be used as substitutes even if they are not signed by a key listed in the
trusted-public-keys
setting.Default:
false
-
Whether this store (when used as a substituter) can be queried efficiently for path validity.
Default:
false
Experimental SSH Store
Store URL format: ssh-ng://[username@]hostname
Experimental store type that allows full access to a Nix store on a remote machine.
Settings:
-
The public host key of the remote machine.
Default: empty
-
Whether to enable SSH compression.
Default:
false
-
Maximum age of a connection before it is closed.
Default:
4294967295
-
Maximum number of concurrent connections to the Nix daemon.
Default:
1
-
Size of the in-memory store path metadata cache.
Default:
65536
-
Priority of this store when used as a substituter. A lower value means a higher priority.
Default:
0
-
Path to the
nix-daemon
executable on the remote machine.Default:
nix-daemon
-
Store URL to be used on the remote machine. The default is
auto
(i.e. use the Nix daemon or/nix/store
directly).Default: empty
-
Path to the SSH private key used to authenticate to the remote machine.
Default: empty
-
Logical location of the Nix store, usually
/nix/store
. Note that you can only copy store paths between stores if they have the samestore
setting.Default:
/nix/store
-
Optional features that the system this store builds on implements (like "kvm").
Default: machine-specific
-
Whether paths from this store can be used as substitutes even if they are not signed by a key listed in the
trusted-public-keys
setting.Default:
false
-
Whether this store (when used as a substituter) can be queried efficiently for path validity.
Default:
false
HTTP Binary Cache Store
Store URL format: http://...
, https://...
This store allows a binary cache to be accessed via the HTTP protocol.
Settings:
-
NAR compression method (
xz
,bzip2
,gzip
,zstd
, ornone
).Default:
xz
-
The preset level to be used when compressing NARs. The meaning and accepted values depend on the compression method selected.
-1
specifies that the default compression level should be used.Default:
-1
-
Whether to index DWARF debug info files by build ID. This allows
dwarffs
to fetch debug info on demandDefault:
false
-
Path to a local cache of NARs fetched from this binary cache, used by commands such as
nix store cat
.Default: empty
-
Enable multi-threaded compression of NARs. This is currently only available for
xz
andzstd
.Default:
false
-
Size of the in-memory store path metadata cache.
Default:
65536
-
Priority of this store when used as a substituter. A lower value means a higher priority.
Default:
0
-
Path to the secret key used to sign the binary cache.
Default: empty
-
Logical location of the Nix store, usually
/nix/store
. Note that you can only copy store paths between stores if they have the samestore
setting.Default:
/nix/store
-
Optional features that the system this store builds on implements (like "kvm").
Default: machine-specific
-
Whether paths from this store can be used as substitutes even if they are not signed by a key listed in the
trusted-public-keys
setting.Default:
false
-
Whether this store (when used as a substituter) can be queried efficiently for path validity.
Default:
false
-
Whether to write a JSON file that lists the files in each NAR.
Default:
false
Local Binary Cache Store
Store URL format: file://
path
This store allows reading and writing a binary cache stored in path in the local filesystem. If path does not exist, it will be created.
For example, the following builds or downloads nixpkgs#hello
into
the local store and then copies it to the binary cache in
/tmp/binary-cache
:
# nix copy --to file:///tmp/binary-cache nixpkgs#hello
Settings:
-
NAR compression method (
xz
,bzip2
,gzip
,zstd
, ornone
).Default:
xz
-
The preset level to be used when compressing NARs. The meaning and accepted values depend on the compression method selected.
-1
specifies that the default compression level should be used.Default:
-1
-
Whether to index DWARF debug info files by build ID. This allows
dwarffs
to fetch debug info on demandDefault:
false
-
Path to a local cache of NARs fetched from this binary cache, used by commands such as
nix store cat
.Default: empty
-
Enable multi-threaded compression of NARs. This is currently only available for
xz
andzstd
.Default:
false
-
Size of the in-memory store path metadata cache.
Default:
65536
-
Priority of this store when used as a substituter. A lower value means a higher priority.
Default:
0
-
Path to the secret key used to sign the binary cache.
Default: empty
-
Logical location of the Nix store, usually
/nix/store
. Note that you can only copy store paths between stores if they have the samestore
setting.Default:
/nix/store
-
Optional features that the system this store builds on implements (like "kvm").
Default: machine-specific
-
Whether paths from this store can be used as substitutes even if they are not signed by a key listed in the
trusted-public-keys
setting.Default:
false
-
Whether this store (when used as a substituter) can be queried efficiently for path validity.
Default:
false
-
Whether to write a JSON file that lists the files in each NAR.
Default:
false
Local Daemon Store
Store URL format: daemon
, unix://
path
This store type accesses a Nix store by talking to a Nix daemon
listening on the Unix domain socket path. The store pseudo-URL
daemon
is equivalent to unix:///nix/var/nix/daemon-socket/socket
.
Settings:
-
directory where Lix will store log files.
Default:
/nix/var/log/nix
-
Maximum age of a connection before it is closed.
Default:
4294967295
-
Maximum number of concurrent connections to the Nix daemon.
Default:
1
-
Size of the in-memory store path metadata cache.
Default:
65536
-
Priority of this store when used as a substituter. A lower value means a higher priority.
Default:
0
-
Physical path of the Nix store.
Default:
/nix/store
-
Directory prefixed to all other paths.
Default: ``
-
Directory where Lix will store state.
Default:
/dummy
-
Logical location of the Nix store, usually
/nix/store
. Note that you can only copy store paths between stores if they have the samestore
setting.Default:
/nix/store
-
Optional features that the system this store builds on implements (like "kvm").
Default: machine-specific
-
Whether paths from this store can be used as substitutes even if they are not signed by a key listed in the
trusted-public-keys
setting.Default:
false
-
Whether this store (when used as a substituter) can be queried efficiently for path validity.
Default:
false
Local Store
Store URL format: local
, root
This store type accesses a Nix store in the local filesystem directly
(i.e. not via the Nix daemon). root is an absolute path that is
prefixed to other directories such as the Nix store directory. The
store pseudo-URL local
denotes a store that uses /
as its root
directory.
A store that uses a root other than /
is called a chroot
store. With such stores, the store directory is "logically" still
/nix/store
, so programs stored in them can only be built and
executed by chroot
-ing into root. Chroot stores only support
building and running on Linux when mount namespaces
and user namespaces
are
enabled.
For example, the following uses /tmp/root
as the chroot environment
to build or download nixpkgs#hello
and then execute it:
# nix run --store /tmp/root nixpkgs#hello
Hello, world!
Here, the "physical" store location is /tmp/root/nix/store
, and
Nix's store metadata is in /tmp/root/nix/var/nix/db
.
It is also possible, but not recommended, to change the "logical"
location of the Nix store from its default of /nix/store
. This makes
it impossible to use default substituters such as
https://cache.nixos.org/
, and thus you may have to build everything
locally. Here is an example:
# nix build --store 'local?store=/tmp/my-nix/store&state=/tmp/my-nix/state&log=/tmp/my-nix/log' nixpkgs#hello
Settings:
-
directory where Lix will store log files.
Default:
/nix/var/log/nix
-
Size of the in-memory store path metadata cache.
Default:
65536
-
Priority of this store when used as a substituter. A lower value means a higher priority.
Default:
0
-
Allow this store to be opened when its database is on a read-only filesystem.
Normally Lix will attempt to open the store database in read-write mode, even for querying (when write access is not needed), causing it to fail if the database is on a read-only filesystem.
Enable read-only mode to disable locking and open the SQLite database with the
immutable
parameter set.Warning Do not use this unless the filesystem is read-only.
Using it when the filesystem is writable can cause incorrect query results or corruption errors if the database is changed by another process. While the filesystem the database resides on might appear to be read-only, consider whether another user or system might have write access to it.
Default:
false
-
Physical path of the Nix store.
Default:
/nix/store
-
Whether store paths copied into this store should have a trusted signature.
Default:
true
-
Directory prefixed to all other paths.
Default: ``
-
Directory where Lix will store state.
Default:
/dummy
-
Logical location of the Nix store, usually
/nix/store
. Note that you can only copy store paths between stores if they have the samestore
setting.Default:
/nix/store
-
Optional features that the system this store builds on implements (like "kvm").
Default: machine-specific
-
Whether paths from this store can be used as substitutes even if they are not signed by a key listed in the
trusted-public-keys
setting.Default:
false
-
Whether this store (when used as a substituter) can be queried efficiently for path validity.
Default:
false
S3 Binary Cache Store
Store URL format: s3://
bucket-name
This store allows reading and writing a binary cache stored in an AWS S3 bucket.
Settings:
-
Size (in bytes) of each part in multi-part uploads.
Default:
5242880
-
NAR compression method (
xz
,bzip2
,gzip
,zstd
, ornone
).Default:
xz
-
The preset level to be used when compressing NARs. The meaning and accepted values depend on the compression method selected.
-1
specifies that the default compression level should be used.Default:
-1
-
The URL of the endpoint of an S3-compatible service such as MinIO. Do not specify this setting if you're using Amazon S3.
Note
This endpoint must support HTTPS and will use path-based addressing instead of virtual host based addressing.
Default: empty
-
Whether to index DWARF debug info files by build ID. This allows
dwarffs
to fetch debug info on demandDefault:
false
-
Path to a local cache of NARs fetched from this binary cache, used by commands such as
nix store cat
.Default: empty
-
Compression method for
log/*
files. It is recommended to use a compression method supported by most web browsers (e.g.brotli
).Default: empty
-
Compression method for
.ls
files.Default: empty
-
Whether to use multi-part uploads.
Default:
false
-
Compression method for
.narinfo
files.Default: empty
-
Enable multi-threaded compression of NARs. This is currently only available for
xz
andzstd
.Default:
false
-
Size of the in-memory store path metadata cache.
Default:
65536
-
Priority of this store when used as a substituter. A lower value means a higher priority.
Default:
0
-
The name of the AWS configuration profile to use. By default Lix will use the
default
profile.Default: empty
-
The region of the S3 bucket. If your bucket is not in
us–east-1
, you should always explicitly specify the region parameter.Default:
us-east-1
-
The scheme used for S3 requests,
https
(default) orhttp
. This option allows you to disable HTTPS for binary caches which don't support it.Note
HTTPS should be used if the cache might contain sensitive information.
Default: empty
-
Path to the secret key used to sign the binary cache.
Default: empty
-
Logical location of the Nix store, usually
/nix/store
. Note that you can only copy store paths between stores if they have the samestore
setting.Default:
/nix/store
-
Optional features that the system this store builds on implements (like "kvm").
Default: machine-specific
-
Whether paths from this store can be used as substitutes even if they are not signed by a key listed in the
trusted-public-keys
setting.Default:
false
-
Whether this store (when used as a substituter) can be queried efficiently for path validity.
Default:
false
-
Whether to write a JSON file that lists the files in each NAR.
Default:
false
SSH Store
Store URL format: ssh://[username@]hostname
This store type allows limited access to a remote store on another machine via SSH.
Settings:
-
The public host key of the remote machine.
Default: empty
-
Whether to enable SSH compression.
Default:
false
-
Maximum number of concurrent SSH connections.
Default:
1
-
Size of the in-memory store path metadata cache.
Default:
65536
-
Priority of this store when used as a substituter. A lower value means a higher priority.
Default:
0
-
Path to the
nix-store
executable on the remote machine.Default:
nix-store
-
Store URL to be used on the remote machine. The default is
auto
(i.e. use the Nix daemon or/nix/store
directly).Default: empty
-
Path to the SSH private key used to authenticate to the remote machine.
Default: empty
-
Logical location of the Nix store, usually
/nix/store
. Note that you can only copy store paths between stores if they have the samestore
setting.Default:
/nix/store
-
Optional features that the system this store builds on implements (like "kvm").
Default: machine-specific
-
Whether paths from this store can be used as substitutes even if they are not signed by a key listed in the
trusted-public-keys
setting.Default:
false
-
Whether this store (when used as a substituter) can be queried efficiently for path validity.
Default:
false
Warning
This program is experimental and its interface is subject to change.
Name
nix key
- generate and convert Nix signing keys
Synopsis
nix key
[option...] subcommand
where subcommand is one of the following:
nix key convert-secret-to-public
- generate a public key for verifying store paths from a secret key read from standard inputnix key generate-secret
- generate a secret key for signing store paths
Warning
This program is experimental and its interface is subject to change.
Name
nix key convert-secret-to-public
- generate a public key for verifying store paths from a secret key read from standard input
Synopsis
nix key convert-secret-to-public
[option...]
Examples
-
Convert a secret key to a public key:
# echo cache.example.org-0:E7lAO+MsPwTFfPXsdPtW8GKui/5ho4KQHVcAGnX+Tti1V4dUxoVoqLyWJ4YESuZJwQ67GVIksDt47og+tPVUZw== \ | nix key convert-secret-to-public cache.example.org-0:tVeHVMaFaKi8lieGBErmScEOuxlSJLA7eO6IPrT1VGc=
Description
This command reads a Ed25519 secret key from standard input, and writes the corresponding public key to standard output. For more details, see nix key generate-secret.
Warning
This program is experimental and its interface is subject to change.
Name
nix key generate-secret
- generate a secret key for signing store paths
Synopsis
nix key generate-secret
[option...]
Examples
-
Generate a new secret key:
# nix key generate-secret --key-name cache.example.org-1 > ./secret-key
We can then use this key to sign the closure of the Hello package:
# nix build nixpkgs#hello # nix store sign --key-file ./secret-key --recursive ./result
Finally, we can verify the store paths using the corresponding public key:
# nix store verify --trusted-public-keys $(nix key convert-secret-to-public < ./secret-key) ./result
Description
This command generates a new Ed25519 secret key for signing store
paths and prints it on standard output. Use nix key convert-secret-to-public
to get the corresponding public key for
verifying signed store paths.
The mandatory argument --key-name
specifies a key name (such as
cache.example.org-1
). It is used to look up keys on the client when
it verifies signatures. It can be anything, but it’s suggested to use
the host name of your cache (e.g. cache.example.org
) with a suffix
denoting the number of the key (to be incremented every time you need
to revoke a key).
Format
Both secret and public keys are represented as the key name followed by a base-64 encoding of the Ed25519 key data, e.g.
cache.example.org-0:E7lAO+MsPwTFfPXsdPtW8GKui/5ho4KQHVcAGnX+Tti1V4dUxoVoqLyWJ4YESuZJwQ67GVIksDt47og+tPVUZw==
Options
--key-name
name Identifier of the key (e.g.cache.example.org-1
).
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix log
- show the build log of the specified packages or paths, if available
Synopsis
nix log
[option...] installable
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Get the build log of GNU Hello:
# nix log nixpkgs#hello
-
Get the build log of a specific store path:
# nix log /nix/store/lmngj4wcm9rkv3w4dfhzhcyij3195hiq-thunderbird-52.2.1
-
Get a build log from a specific binary cache:
# nix log --store https://cache.nixos.org nixpkgs#hello
Description
This command prints the log of a previous build of the installable on standard output.
Lix looks for build logs in two places:
-
In the directory
/nix/var/log/nix/drvs
, which contains logs for locally built derivations. -
In the binary caches listed in the
substituters
setting. Logs should be named<cache>/log/<base-name-of-store-path>
, wherestore-path
is a derivation, e.g.https://cache.nixos.org/log/dvmig8jgrdapvbyxb1rprckdmdqx08kv-hello-2.10.drv
. For non-derivation store paths, Lix will first try to determine the deriver by fetching the.narinfo
file for this store path.
Options
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix nar
- create or inspect NAR files
Synopsis
nix nar
[option...] subcommand
where subcommand is one of the following:
nix nar cat
- print the contents of a file inside a NAR file on stdoutnix nar dump-path
- serialise a path to stdout in NAR formatnix nar ls
- show information about a path inside a NAR file
Description
nix nar
provides several subcommands for creating and inspecting
Nix Archives (NARs).
File format
For the definition of the NAR file format, see Figure 5.2 in https://edolstra.github.io/pubs/phd-thesis.pdf.
Warning
This program is experimental and its interface is subject to change.
Name
nix nar cat
- print the contents of a file inside a NAR file on stdout
Synopsis
nix nar cat
[option...] nar path
Examples
-
List a file in a NAR and pipe it through
gunzip
:# nix nar cat ./hello.nar /share/man/man1/hello.1.gz | gunzip .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.46.4. .TH HELLO "1" "November 2014" "hello 2.10" "User Commands" …
Description
This command prints on standard output the contents of the regular file path inside the NAR file nar.
Warning
This program is experimental and its interface is subject to change.
Name
nix nar dump-path
- serialise a path to stdout in NAR format
Synopsis
nix nar dump-path
[option...] path
Examples
-
To serialise directory
foo
as a NAR:# nix nar dump-path ./foo > foo.nar
Description
This command generates a NAR file containing the serialisation of path, which must contain only regular files, directories and symbolic links. The NAR is written to standard output.
Warning
This program is experimental and its interface is subject to change.
Name
nix nar ls
- show information about a path inside a NAR file
Synopsis
nix nar ls
[option...] nar path
Examples
-
To list a specific file in a NAR:
# nix nar ls --long ./hello.nar /bin/hello -r-xr-xr-x 38184 hello
-
To recursively list the contents of a directory inside a NAR, in JSON format:
# nix nar ls --json --recursive ./hello.nar /bin {"type":"directory","entries":{"hello":{"type":"regular","size":38184,"executable":true,"narOffset":400}}}
Description
This command shows information about a path inside NAR file nar.
Options
-
--directory
/-d
Show directories rather than their contents. -
--json
Produce output in JSON format, suitable for consumption by another program. -
--long
/-l
Show detailed file information. -
--recursive
/-R
List subdirectories recursively.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix path-info
- query information about store paths
Synopsis
nix path-info
[option...] installables...
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Print the store path produced by
nixpkgs#hello
:# nix path-info nixpkgs#hello /nix/store/v5sv61sszx301i0x6xysaqzla09nksnd-hello-2.10
-
Show the closure sizes of every path in the current NixOS system closure, sorted by size:
# nix path-info --recursive --closure-size /run/current-system | sort -nk2 /nix/store/hl5xwp9kdrd1zkm0idm3kkby9q66z404-empty 96 /nix/store/27324qvqhnxj3rncazmxc4mwy79kz8ha-nameservers 112 … /nix/store/539jkw9a8dyry7clcv60gk6na816j7y8-etc 5783255504 /nix/store/zqamz3cz4dbzfihki2mk7a63mbkxz9xq-nixos-system-machine-20.09.20201112.3090c65 5887562256
-
Show a package's closure size and all its dependencies with human readable sizes:
# nix path-info --recursive --size --closure-size --human-readable nixpkgs#rustc /nix/store/01rrgsg5zk3cds0xgdsq40zpk6g51dz9-ncurses-6.2-dev 386.7K 69.1M /nix/store/0q783wnvixpqz6dxjp16nw296avgczam-libpfm-4.11.0 5.9M 37.4M …
-
Check the existence of a path in a binary cache:
# nix path-info --recursive /nix/store/blzxgyvrk32ki6xga10phr4sby2xf25q-geeqie-1.5.1 --store https://cache.nixos.org/ path '/nix/store/blzxgyvrk32ki6xga10phr4sby2xf25q-geeqie-1.5.1' is not valid
-
Print the 10 most recently added paths (using --json and the jq(1) command):
# nix path-info --json --all | jq -r 'sort_by(.registrationTime)[-11:-1][].path'
-
Show the size of the entire Nix store:
# nix path-info --json --all | jq 'map(.narSize) | add' 49812020936
-
Show every path whose closure is bigger than 1 GB, sorted by closure size:
# nix path-info --json --all --closure-size \ | jq 'map(select(.closureSize > 1e9)) | sort_by(.closureSize) | map([.path, .closureSize])' [ …, [ "/nix/store/zqamz3cz4dbzfihki2mk7a63mbkxz9xq-nixos-system-machine-20.09.20201112.3090c65", 5887562256 ] ]
-
Print the path of the store derivation produced by
nixpkgs#hello
:# nix path-info --derivation nixpkgs#hello /nix/store/s6rn4jz1sin56rf4qj5b5v8jxjm32hlk-hello-2.10.drv
Description
This command shows information about the store paths produced by
installables, or about all paths in the store if you pass --all
.
By default, this command only prints the store paths. You can get
additional information by passing flags such as --closure-size
,
--size
, --sigs
or --json
.
Warning
Note that
nix path-info
does not build or substitute the installables you specify. Thus, if the corresponding store paths don't already exist, this command will fail. You can usenix build
to ensure that they exist.
Options
-
--closure-size
/-S
Print the sum of the sizes of the NAR serialisations of the closure of each path. -
--human-readable
/-h
With-s
and-S
, print sizes in a human-friendly format such as5.67G
. -
--json
Produce output in JSON format, suitable for consumption by another program. -
--sigs
Show signatures. -
--size
/-s
Print the size of the NAR serialisation of each path. -
--stdin
Read installables from the standard input. No default installable applied.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--all
Apply the operation to every store path. -
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
. -
--recursive
/-r
Apply operation to closure of the specified paths.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix print-dev-env
- print shell code that can be sourced by bash to reproduce the build environment of a derivation
Synopsis
nix print-dev-env
[option...] installable
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Apply the build environment of GNU hello to the current shell:
# . <(nix print-dev-env nixpkgs#hello)
-
Get the build environment in JSON format:
# nix print-dev-env nixpkgs#hello --json
The output will look like this:
{ "bashFunctions": { "buildPhase": " \n runHook preBuild;\n...", ... }, "variables": { "src": { "type": "exported", "value": "/nix/store/3x7dwzq014bblazs7kq20p9hyzz0qh8g-hello-2.10.tar.gz" }, "postUnpackHooks": { "type": "array", "value": ["_updateSourceDateEpochFromSourceRoot"] }, ... } }
Description
This command prints a shell script that can be sourced by bash
and
that sets the variables and shell functions defined by the build
process of installable. This allows you to get a similar build
environment in your current shell rather than in a subshell (as with
nix develop
).
With --json
, the output is a JSON serialisation of the variables and
functions defined by the build process.
Options
-
--json
Produce output in JSON format, suitable for consumption by another program. -
--profile
path The profile to operate on. -
--redirect
installable outputs-dir Redirect a store path to a mutable location.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix profile
- manage Nix profiles
Synopsis
nix profile
[option...] subcommand
where subcommand is one of the following:
nix profile diff-closures
- show the closure difference between each version of a profilenix profile history
- show all versions of a profilenix profile install
- install a package into a profilenix profile list
- list installed packagesnix profile remove
- remove packages from a profilenix profile rollback
- roll back to the previous version or a specified version of a profilenix profile upgrade
- upgrade packages using their most recent flakenix profile wipe-history
- delete non-current versions of a profile
Description
nix profile
allows you to create and manage Nix profiles. A Nix
profile is a set of packages that can be installed and upgraded
independently from each other. Nix profiles are versioned, allowing
them to be rolled back easily.
Files
Profiles
A directory that contains links to profiles managed by nix-env
and nix profile
:
$XDG_STATE_HOME/nix/profiles
for regular users$NIX_STATE_DIR/profiles/per-user/root
if the user isroot
A profile is a directory of symlinks to files in the Nix store.
Filesystem layout
Profiles are versioned as follows. When using a profile named path, path is a symlink to path-
N-link
, where N is the version of the profile.
In turn, path-
N-link
is a symlink to a path in the Nix store.
For example:
$ ls -l ~alice/.local/state/nix/profiles/profile*
lrwxrwxrwx 1 alice users 14 Nov 25 14:35 /home/alice/.local/state/nix/profiles/profile -> profile-7-link
lrwxrwxrwx 1 alice users 51 Oct 28 16:18 /home/alice/.local/state/nix/profiles/profile-5-link -> /nix/store/q69xad13ghpf7ir87h0b2gd28lafjj1j-profile
lrwxrwxrwx 1 alice users 51 Oct 29 13:20 /home/alice/.local/state/nix/profiles/profile-6-link -> /nix/store/6bvhpysd7vwz7k3b0pndn7ifi5xr32dg-profile
lrwxrwxrwx 1 alice users 51 Nov 25 14:35 /home/alice/.local/state/nix/profiles/profile-7-link -> /nix/store/mp0x6xnsg0b8qhswy6riqvimai4gm677-profile
Each of these symlinks is a root for the Lix garbage collector.
The contents of the store path corresponding to each version of the profile is a tree of symlinks to the files of the installed packages, e.g.
$ ll -R ~eelco/.local/state/nix/profiles/profile-7-link/
/home/eelco/.local/state/nix/profiles/profile-7-link/:
total 20
dr-xr-xr-x 2 root root 4096 Jan 1 1970 bin
-r--r--r-- 2 root root 1402 Jan 1 1970 manifest.nix
dr-xr-xr-x 4 root root 4096 Jan 1 1970 share
/home/eelco/.local/state/nix/profiles/profile-7-link/bin:
total 20
lrwxrwxrwx 5 root root 79 Jan 1 1970 chromium -> /nix/store/ijm5k0zqisvkdwjkc77mb9qzb35xfi4m-chromium-86.0.4240.111/bin/chromium
lrwxrwxrwx 7 root root 87 Jan 1 1970 spotify -> /nix/store/w9182874m1bl56smps3m5zjj36jhp3rn-spotify-1.1.26.501.gbe11e53b-15/bin/spotify
lrwxrwxrwx 3 root root 79 Jan 1 1970 zoom-us -> /nix/store/wbhg2ga8f3h87s9h5k0slxk0m81m4cxl-zoom-us-5.3.469451.0927/bin/zoom-us
/home/eelco/.local/state/nix/profiles/profile-7-link/share/applications:
total 12
lrwxrwxrwx 4 root root 120 Jan 1 1970 chromium-browser.desktop -> /nix/store/4cf803y4vzfm3gyk3vzhzb2327v0kl8a-chromium-unwrapped-86.0.4240.111/share/applications/chromium-browser.desktop
lrwxrwxrwx 7 root root 110 Jan 1 1970 spotify.desktop -> /nix/store/w9182874m1bl56smps3m5zjj36jhp3rn-spotify-1.1.26.501.gbe11e53b-15/share/applications/spotify.desktop
lrwxrwxrwx 3 root root 107 Jan 1 1970 us.zoom.Zoom.desktop -> /nix/store/wbhg2ga8f3h87s9h5k0slxk0m81m4cxl-zoom-us-5.3.469451.0927/share/applications/us.zoom.Zoom.desktop
…
Each profile version contains a manifest file:
manifest.nix
used bynix-env
.manifest.json
used bynix profile
(experimental).
User profile link
A symbolic link to the user's current profile:
~/.nix-profile
$XDG_STATE_HOME/nix/profile
ifuse-xdg-base-directories
is set totrue
.
By default, this symlink points to:
$XDG_STATE_HOME/nix/profiles/profile
for regular users$NIX_STATE_DIR/profiles/per-user/root/profile
forroot
The PATH
environment variable should include /bin
subdirectory of the profile link (e.g. ~/.nix-profile/bin
) for the user environment to be visible to the user.
The installer sets this up by default, unless you enable use-xdg-base-directories
.
Profile compatibility
Warning
Once you have used
nix profile
you can no longer usenix-env
without first deleting$XDG_STATE_HOME/nix/profiles/profile
Once you installed a package with nix profile
, you get the following error message when using nix-env
:
$ nix-env -f '<nixpkgs>' -iA 'hello'
error: nix-env
profile '/home/alice/.local/state/nix/profiles/profile' is incompatible with 'nix-env'; please use 'nix profile' instead
To migrate back to nix-env
you can delete your current profile:
Warning
This will delete packages that have been installed before, so you may want to back up this information before running the command.
$ rm -rf "${XDG_STATE_HOME-$HOME/.local/state}/nix/profiles/profile"
Warning
This program is experimental and its interface is subject to change.
Name
nix profile diff-closures
- show the closure difference between each version of a profile
Synopsis
nix profile diff-closures
[option...]
Examples
-
Show what changed between each version of the NixOS system profile:
# nix profile diff-closures --profile /nix/var/nix/profiles/system Version 13 -> 14: acpi-call: 2020-04-07-5.8.13 → 2020-04-07-5.8.14 aws-sdk-cpp: -6723.1 KiB … Version 14 -> 15: acpi-call: 2020-04-07-5.8.14 → 2020-04-07-5.8.16 attica: -996.2 KiB breeze-icons: -78713.5 KiB brotli: 1.0.7 → 1.0.9, +44.2 KiB
Description
This command shows the difference between the closures of subsequent
versions of a profile. See nix store diff-closures
for details.
Options
--profile
path The profile to operate on.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix profile history
- show all versions of a profile
Synopsis
nix profile history
[option...]
Examples
-
Show the changes between each version of your default profile:
# nix profile history Version 508 (2020-04-10): flake:nixpkgs#legacyPackages.x86_64-linux.awscli: ∅ -> 1.17.13 Version 509 (2020-05-16) <- 508: flake:nixpkgs#legacyPackages.x86_64-linux.awscli: 1.17.13 -> 1.18.211
Description
This command shows what packages were added, removed or upgraded
between subsequent versions of a profile. It only shows top-level
packages, not dependencies; for that, use nix profile diff-closures
.
The addition of a package to a profile is denoted by the string ∅ ->
version, whereas the removal is denoted by version -> ∅
.
Options
--profile
path The profile to operate on.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix profile install
- install a package into a profile
Synopsis
nix profile install
[option...] installables...
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Install a package from Nixpkgs:
# nix profile install nixpkgs#hello
-
Install a package from a specific branch of Nixpkgs:
# nix profile install nixpkgs/release-20.09#hello
-
Install a package from a specific revision of Nixpkgs:
# nix profile install nixpkgs/d73407e8e6002646acfdef0e39ace088bacc83da#hello
-
Install a specific output of a package:
# nix profile install nixpkgs#bash^man
Description
This command adds installables to a Nix profile.
Options
-
--priority
priority The priority of the package to install. -
--profile
path The profile to operate on. -
--stdin
Read installables from the standard input. No default installable applied.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix profile list
- list installed packages
Synopsis
nix profile list
[option...]
Examples
-
Show what packages are installed in the default profile:
# nix profile list Name: gdb Flake attribute: legacyPackages.x86_64-linux.gdb Original flake URL: flake:nixpkgs Locked flake URL: github:NixOS/nixpkgs/7b38b03d76ab71bdc8dc325e3f6338d984cc35ca Store paths: /nix/store/indzcw5wvlhx6vwk7k4iq29q15chvr3d-gdb-11.1 Name: blender-bin Flake attribute: packages.x86_64-linux.default Original flake URL: flake:blender-bin Locked flake URL: github:edolstra/nix-warez/91f2ffee657bf834e4475865ae336e2379282d34?dir=blender Store paths: /nix/store/i798sxl3j40wpdi1rgf391id1b5klw7g-blender-bin-3.1.2
Note that you can unambiguously rebuild a package from a profile through its locked flake URL and flake attribute, e.g.
# nix build github:edolstra/nix-warez/91f2ffee657bf834e4475865ae336e2379282d34?dir=blender#packages.x86_64-linux.default
will build the package with name blender-bin shown above.
Description
This command shows what packages are currently installed in a profile. For each installed package, it shows the following information:
-
Name
: A unique name used to unambiguously identify the package in invocations ofnix profile remove
andnix profile upgrade
. -
Flake attribute
: The flake output attribute path that provides the package (e.g.packages.x86_64-linux.hello
). -
Original flake URL
: The original ("unlocked") flake reference specified by the user when the package was first installed vianix profile install
. -
Locked flake URL
: The locked flake reference to which the original flake reference was resolved. -
Store paths
: The store path(s) of the package.
Options
-
--json
Produce output in JSON format, suitable for consumption by another program. -
--profile
path The profile to operate on.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix profile remove
- remove packages from a profile
Synopsis
nix profile remove
[option...] elements...
Note: unlike nix profile install
, this command does not take installables.
Examples
-
Remove a package by name:
# nix profile remove hello
-
Remove a package by attribute path:
# nix profile remove packages.x86_64-linux.hello
-
Remove all packages:
# nix profile remove '.*'
-
Remove a package by store path:
# nix profile remove /nix/store/rr3y0c6zyk7kjjl8y19s4lsrhn4aiq1z-hello-2.10
Description
This command removes a package from a profile.
Options
--profile
path The profile to operate on.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix profile rollback
- roll back to the previous version or a specified version of a profile
Synopsis
nix profile rollback
[option...]
Examples
-
Roll back your default profile to the previous version:
# nix profile rollback switching profile from version 519 to 518
-
Switch your default profile to version 510:
# nix profile rollback --to 510 switching profile from version 518 to 510
Description
This command switches a profile to the most recent version older
than the currently active version, or if --to
N is given, to
version N of the profile. To see the available versions of a
profile, use nix profile history
.
Options
-
--dry-run
Show what this command would do without doing it. -
--profile
path The profile to operate on. -
--to
version The profile version to roll back to.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix profile upgrade
- upgrade packages using their most recent flake
Synopsis
nix profile upgrade
[option...] elements...
Note: unlike nix profile install
, this command does not take installables.
Examples
-
Upgrade all packages that were installed using an unlocked flake reference:
# nix profile upgrade '.*'
-
Upgrade a specific package by name:
# nix profile upgrade hello
# nix profile upgrade packages.x86_64-linux.hello
Description
This command upgrades a previously installed package in a Nix profile, by fetching and evaluating the latest version of the flake from which the package was installed.
Warning
This only works if you used an unlocked flake reference at installation time, e.g.
nixpkgs#hello
. It does not work if you used a locked flake reference (e.g.github:NixOS/nixpkgs/13d0c311e3ae923a00f734b43fd1d35b47d8943a#hello
), since in that case the "latest version" is always the same.
Options
--profile
path The profile to operate on.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix profile wipe-history
- delete non-current versions of a profile
Synopsis
nix profile wipe-history
[option...]
Examples
-
Delete all versions of the default profile older than 100 days:
# nix profile wipe-history --profile /tmp/profile --older-than 100d removing profile version 515 removing profile version 514
Description
This command deletes non-current versions of a profile, making it
impossible to roll back to these versions. By default, all non-current
versions are deleted. With --older-than
Nd
, all non-current
versions older than N days are deleted.
Options
-
--dry-run
Show what this command would do without doing it. -
--older-than
age Delete versions older than the specified age. age must be in the format Nd
, where N denotes a number of days. -
--profile
path The profile to operate on.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix realisation
- manipulate a Nix realisation
Synopsis
nix realisation
[option...] subcommand
where subcommand is one of the following:
nix realisation info
- query information about one or several realisations
Warning
This program is experimental and its interface is subject to change.
Name
nix realisation info
- query information about one or several realisations
Synopsis
nix realisation info
[option...] installables...
Description
Display some information about the given realisation
Examples
Show some information about the realisation of the hello
package:
$ nix realisation info nixpkgs#hello --json
[{"id":"sha256:3d382378a00588e064ee30be96dd0fa7e7df7cf3fbcace85a0e7b7dada1eef25!out","outPath":"fd3m7xawvrqcg98kgz5hc2vk3x9q0lh7-hello"}]
Options
-
--json
Produce output in JSON format, suitable for consumption by another program. -
--stdin
Read installables from the standard input. No default installable applied.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--all
Apply the operation to every store path. -
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
. -
--recursive
/-r
Apply operation to closure of the specified paths.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix registry
- manage the flake registry
Synopsis
nix registry
[option...] subcommand
where subcommand is one of the following:
nix registry add
- add/replace flake in user flake registrynix registry list
- list available Nix flakesnix registry pin
- pin a flake to its current version or to the current version of a flake URLnix registry remove
- remove flake from user flake registry
Description
nix registry
provides subcommands for managing flake
registries. Flake registries are a convenience feature that allows
you to refer to flakes using symbolic identifiers such as nixpkgs
,
rather than full URLs such as git://github.com/NixOS/nixpkgs
. You
can use these identifiers on the command line (e.g. when you do nix run nixpkgs#hello
) or in flake input specifications in flake.nix
files. The latter are automatically resolved to full URLs and recorded
in the flake's flake.lock
file.
In addition, the flake registry allows you to redirect arbitrary flake
references (e.g. github:NixOS/patchelf
) to another location, such as
a local fork.
There are multiple registries. These are, in order from lowest to highest precedence:
-
The global registry, which is a file downloaded from the URL specified by the setting
flake-registry
. It is cached locally and updated automatically when it's older thantarball-ttl
seconds. The default global registry is kept in a GitHub repository. -
The system registry, which is shared by all users. The default location is
/etc/nix/registry.json
. On NixOS, the system registry can be specified using the NixOS optionnix.registry
. -
The user registry
~/.config/nix/registry.json
. This registry can be modified by commands such asnix registry pin
. -
Overrides specified on the command line using the option
--override-flake
.
Registry format
A registry is a JSON file with the following format:
{
"version": 2,
"flakes": [
{
"from": {
"type": "indirect",
"id": "nixpkgs"
},
"to": {
"type": "github",
"owner": "NixOS",
"repo": "nixpkgs"
}
},
...
]
}
That is, it contains a list of objects with attributes from
and
to
, both of which contain a flake reference in attribute
representation. (For example, {"type": "indirect", "id": "nixpkgs"}
is the attribute representation of nixpkgs
, while {"type": "github", "owner": "NixOS", "repo": "nixpkgs"}
is the attribute
representation of github:NixOS/nixpkgs
.)
Given some flake reference R, a registry entry is used if its
from
flake reference matches R. R is then replaced by the
unification of the to
flake reference with R.
Matching
The from
flake reference in a registry entry matches some flake
reference R if the attributes in from
are the same as the
attributes in R
. For example:
-
nixpkgs
matches withnixpkgs
. -
nixpkgs
matches withnixpkgs/nixos-20.09
. -
nixpkgs/nixos-20.09
does not match withnixpkgs
. -
nixpkgs
does not match withgit://github.com/NixOS/patchelf
.
Unification
The to
flake reference in a registry entry is unified with some flake
reference R by taking to
and applying the rev
and ref
attributes from R, if specified. For example:
-
github:NixOS/nixpkgs
unified withnixpkgs
producesgithub:NixOS/nixpkgs
. -
github:NixOS/nixpkgs
unified withnixpkgs/nixos-20.09
producesgithub:NixOS/nixpkgs/nixos-20.09
. -
github:NixOS/nixpkgs/master
unified withnixpkgs/nixos-20.09
producesgithub:NixOS/nixpkgs/nixos-20.09
.
Warning
This program is experimental and its interface is subject to change.
Name
nix registry add
- add/replace flake in user flake registry
Synopsis
nix registry add
[option...] from-url to-url
Examples
-
Set the
nixpkgs
flake identifier to a specific branch of Nixpkgs:# nix registry add nixpkgs github:NixOS/nixpkgs/nixos-20.03
-
Pin
nixpkgs
to a specific revision:# nix registry add nixpkgs github:NixOS/nixpkgs/925b70cd964ceaedee26fde9b19cc4c4f081196a
-
Add an entry that redirects a specific branch of
nixpkgs
to another fork:# nix registry add nixpkgs/nixos-20.03 ~/Dev/nixpkgs
-
Add
nixpkgs
pointing togithub:nixos/nixpkgs
to your custom flake registry:nix registry add --registry ./custom-flake-registry.json nixpkgs github:nixos/nixpkgs
Description
This command adds an entry to the user registry that maps flake reference from-url to flake reference to-url. If an entry for from-url already exists, it is overwritten.
Entries can be removed using nix registry remove
.
Options
--registry
registry The registry to operate on.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix registry list
- list available Nix flakes
Synopsis
nix registry list
[option...]
Examples
-
Show the contents of all registries:
# nix registry list user flake:dwarffs github:edolstra/dwarffs/d181d714fd36eb06f4992a1997cd5601e26db8f5 system flake:nixpkgs path:/nix/store/fxl9mrm5xvzam0lxi9ygdmksskx4qq8s-source?lastModified=1605220118&narHash=sha256-Und10ixH1WuW0XHYMxxuHRohKYb45R%2fT8CwZuLd2D2Q=&rev=3090c65041104931adda7625d37fa874b2b5c124 global flake:blender-bin github:edolstra/nix-warez?dir=blender global flake:dwarffs github:edolstra/dwarffs …
Description
This command displays the contents of all registries on standard output. Each line represents one registry entry in the format type from to, where type denotes the registry containing the entry:
flags
: entries specified on the command line using--override-flake
.user
: the user registry.system
: the system registry.global
: the global registry.
See the nix registry
manual page for more details.
Warning
This program is experimental and its interface is subject to change.
Name
nix registry pin
- pin a flake to its current version or to the current version of a flake URL
Synopsis
nix registry pin
[option...] url locked
Examples
-
Pin
nixpkgs
to its most recent Git revision:# nix registry pin nixpkgs
Afterwards the user registry will have an entry like this:
nix registry list | grep '^user ' user flake:nixpkgs github:NixOS/nixpkgs/925b70cd964ceaedee26fde9b19cc4c4f081196a
and
nix flake info
will say:# nix flake info nixpkgs Resolved URL: github:NixOS/nixpkgs/925b70cd964ceaedee26fde9b19cc4c4f081196a Locked URL: github:NixOS/nixpkgs/925b70cd964ceaedee26fde9b19cc4c4f081196a …
-
Pin
nixpkgs
in a custom registry to its most recent Git revision:# nix registry pin --registry ./custom-flake-registry.json nixpkgs
Description
This command adds an entry to the user registry that maps flake reference url to the corresponding locked flake reference, that is, a flake reference that specifies an exact revision or content hash. This ensures that until this registry entry is removed, all uses of url will resolve to exactly the same flake.
Entries can be removed using nix registry remove
.
Options
--registry
registry The registry to operate on.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix registry remove
- remove flake from user flake registry
Synopsis
nix registry remove
[option...] url
Examples
-
Remove the entry
nixpkgs
from the user registry:# nix registry remove nixpkgs
-
Remove the entry
nixpkgs
from a custom registry:# nix registry remove --registry ./custom-flake-registry.json nixpkgs
Description
This command removes from the user registry any entry for flake reference url.
Options
--registry
registry The registry to operate on.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix repl
- start an interactive environment for evaluating Nix expressions
Synopsis
nix repl
[option...] installables...
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Display all special commands within the REPL:
# nix repl nix-repl> :?
-
Evaluate some simple Nix expressions:
# nix repl nix-repl> 1 + 2 3 nix-repl> map (x: x * 2) [1 2 3] [ 2 4 6 ]
-
Interact with Nixpkgs in the REPL:
# nix repl --file example.nix Loading Installable ''... Added 3 variables. # nix repl --expr '{a={b=3;c=4;};}' Loading Installable ''... Added 1 variables. # nix repl --expr '{a={b=3;c=4;};}' a Loading Installable ''... Added 1 variables. # nix repl --extra-experimental-features 'flakes repl-flake' nixpkgs Loading Installable 'flake:nixpkgs#'... Added 5 variables. nix-repl> legacyPackages.x86_64-linux.emacs.name "emacs-27.1" nix-repl> legacyPackages.x86_64-linux.emacs.name "emacs-27.1" nix-repl> :q # nix repl --expr 'import <nixpkgs>{}' Loading Installable ''... Added 12439 variables. nix-repl> emacs.name "emacs-27.1" nix-repl> emacs.drvPath "/nix/store/lp0sjrhgg03y2n0l10n70rg0k7hhyz0l-emacs-27.1.drv" nix-repl> drv = runCommand "hello" { buildInputs = [ hello ]; } "hello; hello > $out" nix-repl> :b drv this derivation produced the following outputs: out -> /nix/store/0njwbgwmkwls0w5dv9mpc1pq5fj39q0l-hello nix-repl> builtins.readFile drv "Hello, world!\n" nix-repl> :log drv Hello, world!
Description
This command provides an interactive environment for evaluating Nix expressions. (REPL stands for 'read–eval–print loop'.)
On startup, it loads the Nix expressions named files and adds them
into the lexical scope. You can load addition files using the :l <filename>
command, or reload all files using :r
.
Options
--stdin
Read installables from the standard input. No default installable applied.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix run
- run a Nix application
Synopsis
nix run
[option...] installable args...
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Run the default app from the
blender-bin
flake:# nix run blender-bin
-
Run a non-default app from the
blender-bin
flake:# nix run blender-bin#blender_2_83
Tip: you can find apps provided by this flake by running
nix flake show blender-bin
. -
Run
vim
from thenixpkgs
flake:# nix run nixpkgs#vim
Note that
vim
(as of the time of writing of this page) is not an app but a package. Thus, Lix runs the eponymous file from thevim
package. -
Run
vim
with arguments:# nix run nixpkgs#vim -- --help
Description
nix run
builds and runs installable, which must evaluate to an
app or a regular Nix derivation.
If installable evaluates to an app (see below), it executes the program specified by the app definition.
If installable evaluates to a derivation, it will try to execute the
program <out>/bin/<name>
, where out is the primary output store
path of the derivation, and name is the first of the following that
exists:
- The
meta.mainProgram
attribute of the derivation. - The
pname
attribute of the derivation. - The name part of the value of the
name
attribute of the derivation.
For instance, if name
is set to hello-1.10
, nix run
will run
$out/bin/hello
.
Flake output attributes
If no flake output attribute is given, nix run
tries the following
flake output attributes:
-
apps.<system>.default
-
packages.<system>.default
If an attribute name is given, nix run
tries the following flake
output attributes:
-
apps.<system>.<name>
-
packages.<system>.<name>
-
legacyPackages.<system>.<name>
Apps
An app is specified by a flake output attribute named
apps.<system>.<name>
. It looks like this:
apps.x86_64-linux.blender_2_79 = {
type = "app";
program = "${self.packages.x86_64-linux.blender_2_79}/bin/blender";
};
The only supported attributes are:
-
type
(required): Must be set toapp
. -
program
(required): The full path of the executable to run. It must reside in the Nix store.
Options
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix search
- search for packages
Synopsis
nix search
[option...] installable regex...
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Show all packages in the
nixpkgs
flake:# nix search nixpkgs ^ * legacyPackages.x86_64-linux.AMB-plugins (0.8.1) A set of ambisonics ladspa plugins * legacyPackages.x86_64-linux.ArchiSteamFarm (4.3.1.0) Application with primary purpose of idling Steam cards from multiple accounts simultaneously …
-
Show packages in the
nixpkgs
flake containingblender
in its name or description:# nix search nixpkgs blender * legacyPackages.x86_64-linux.blender (2.91.0) 3D Creation/Animation/Publishing System
-
Search for packages underneath the attribute
gnome3
in Nixpkgs:# nix search nixpkgs#gnome3 vala * legacyPackages.x86_64-linux.gnome3.vala (0.48.9) Compiler for GObject type system
-
Show all packages in the flake in the current directory:
# nix search . ^
-
Search for Firefox or Chromium:
# nix search nixpkgs 'firefox|chromium'
-
Search for packages containing
git
and eitherfrontend
orgui
:# nix search nixpkgs git 'frontend|gui'
-
Search for packages containing
neovim
but hide ones containing eithergui
orpython
:# nix search nixpkgs neovim --exclude 'python|gui'
or
# nix search nixpkgs neovim --exclude 'python' --exclude 'gui'
Description
nix search
searches installable (which can be evaluated, that is, a
flake or Nix expression, but not a store path or store derivation path) for packages whose name or description matches all of the
regular expressions regex. For each matching package, It prints the
full attribute name (from the root of the installable), the version
and the meta.description
field, highlighting the substrings that
were matched by the regular expressions.
To show all packages, use the regular expression ^
. In contrast to .*
,
it avoids highlighting the entire name and description of every package.
Note that in this context,
^
is the regex character to match the beginning of a string, not the delimiter for selecting a derivation output.
Flake output attributes
If no flake output attribute is given, nix search
searches for
packages:
-
Directly underneath
packages.<system>
. -
Underneath
legacyPackages.<system>
, recursing into attribute sets that contain an attributerecurseForDerivations = true
.
Options
-
--exclude
/-e
regex Hide packages whose attribute path, name or description contain regex. -
--json
Produce output in JSON format, suitable for consumption by another program.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix shell
- run a shell in which the specified packages are available
Synopsis
nix shell
[option...] installables...
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Start a shell providing
youtube-dl
from thenixpkgs
flake:# nix shell nixpkgs#youtube-dl # youtube-dl --version 2020.11.01.1
-
Start a shell providing GNU Hello from NixOS 20.03:
# nix shell nixpkgs/nixos-20.03#hello
-
Run GNU Hello:
# nix shell nixpkgs#hello --command hello --greeting 'Hi everybody!' Hi everybody!
-
Run multiple commands in a shell environment:
# nix shell nixpkgs#gnumake --command sh -c "cd src && make"
-
Run GNU Hello in a chroot store:
# nix shell --store ~/my-nix nixpkgs#hello --command hello
-
Start a shell providing GNU Hello in a chroot store:
# nix shell --store ~/my-nix nixpkgs#hello nixpkgs#bashInteractive --command bash
Note that it's necessary to specify
bash
explicitly because your default shell (e.g./bin/bash
) generally will not exist in the chroot.
Description
nix shell
runs a command in an environment in which the $PATH
variable
provides the specified installables. If no command is specified, it starts the
default shell of your user account specified by $SHELL
.
Options
-
--command
/-c
command args Command and arguments to be executed, defaulting to$SHELL
-
--ignore-environment
/-i
Clear the entire environment (except those specified with--keep
). -
--keep
/-k
name Keep the environment variable name. -
--stdin
Read installables from the standard input. No default installable applied. -
--unset
/-u
name Unset the environment variable name.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store
- manipulate a Nix store
Synopsis
nix store
[option...] subcommand
where subcommand is one of the following:
nix store add-file
- add a regular file to the Nix storenix store add-path
- add a path to the Nix storenix store cat
- print the contents of a file in the Nix store on stdoutnix store copy-log
- copy build logs between Nix storesnix store copy-sigs
- copy store path signatures from substitutersnix store delete
- delete paths from the Nix storenix store diff-closures
- show what packages and versions were added and removed between two closuresnix store dump-path
- serialise a store path to stdout in NAR formatnix store gc
- perform garbage collection on a Nix storenix store ls
- show information about a path in the Nix storenix store make-content-addressed
- rewrite a path or closure to content-addressed formnix store optimise
- replace identical files in the store by hard linksnix store path-from-hash-part
- get a store path from its hash partnix store ping
- test whether a store can be accessednix store prefetch-file
- download a file into the Nix storenix store repair
- repair store pathsnix store sign
- sign store pathsnix store verify
- verify the integrity of store paths
Warning
This program is experimental and its interface is subject to change.
Name
nix store add-file
- add a regular file to the Nix store
Synopsis
nix store add-file
[option...] path
Description
Copy the regular file path to the Nix store, and print the resulting store path on standard output.
Warning
The resulting store path is not registered as a garbage collector root, so it could be deleted before you have a chance to register it.
Examples
Add a regular file to the store:
# echo foo > bar
# nix store add-file ./bar
/nix/store/cbv2s4bsvzjri77s2gb8g8bpcb6dpa8w-bar
# cat /nix/store/cbv2s4bsvzjri77s2gb8g8bpcb6dpa8w-bar
foo
Options
-
--dry-run
Show what this command would do without doing it. -
--name
/-n
name Override the name component of the store path. It defaults to the base name of path.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store add-path
- add a path to the Nix store
Synopsis
nix store add-path
[option...] path
Description
Copy path to the Nix store, and print the resulting store path on standard output.
Warning
The resulting store path is not registered as a garbage collector root, so it could be deleted before you have a chance to register it.
Examples
Add a directory to the store:
# mkdir dir
# echo foo > dir/bar
# nix store add-path ./dir
/nix/store/6pmjx56pm94n66n4qw1nff0y1crm8nqg-dir
# cat /nix/store/6pmjx56pm94n66n4qw1nff0y1crm8nqg-dir/bar
foo
Options
-
--dry-run
Show what this command would do without doing it. -
--name
/-n
name Override the name component of the store path. It defaults to the base name of path.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store cat
- print the contents of a file in the Nix store on stdout
Synopsis
nix store cat
[option...] path
Examples
-
Show the contents of a file in a binary cache:
# nix store cat --store https://cache.nixos.org/ \ /nix/store/0i2jd68mp5g6h2sa5k9c85rb80sn8hi9-hello-2.10/bin/hello | hexdump -C | head -n1 00000000 7f 45 4c 46 02 01 01 00 00 00 00 00 00 00 00 00 |.ELF............|
Description
This command prints on standard output the contents of the regular file path in a Nix store. path can be a top-level store path or any file inside a store path.
Warning
This program is experimental and its interface is subject to change.
Name
nix store copy-log
- copy build logs between Nix stores
Synopsis
nix store copy-log
[option...] installables...
Examples
-
To copy the build log of the
hello
package from https://cache.nixos.org to the local store:# nix store copy-log --from https://cache.nixos.org --eval-store auto nixpkgs#hello
You can verify that the log is available locally:
# nix log --substituters '' nixpkgs#hello
(The flag
--substituters ''
avoids queryinghttps://cache.nixos.org
for the log.) -
To copy the log for a specific store derivation via SSH:
# nix store copy-log --to ssh-ng://machine /nix/store/ilgm50plpmcgjhcp33z6n4qbnpqfhxym-glibc-2.33-59.drv
Description
nix store copy-log
copies build logs between two Nix stores. The
source store is specified using --from
and the destination using
--to
. If one of these is omitted, it defaults to the local store.
Options
-
--from
store-uri URL of the source Nix store. -
--stdin
Read installables from the standard input. No default installable applied. -
--to
store-uri URL of the destination Nix store.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store copy-sigs
- copy store path signatures from substituters
Synopsis
nix store copy-sigs
[option...] installables...
Options
-
--stdin
Read installables from the standard input. No default installable applied. -
--substituter
/-s
store-uri Copy signatures from the specified store.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--all
Apply the operation to every store path. -
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
. -
--recursive
/-r
Apply operation to closure of the specified paths.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store delete
- delete paths from the Nix store
Synopsis
nix store delete
[option...] installables...
Examples
-
Delete a specific store path:
# nix store delete /nix/store/yb5q57zxv6hgqql42d5r8b5k5mcq6kay-hello-2.10
Description
This command deletes the store paths specified by installables,
but only if it is safe to do so; that is, when the path is not
reachable from a root of the garbage collector. This means that you
can only delete paths that would also be deleted by nix store gc
. Thus, nix store delete
is a more targeted version of nix store gc
.
With the option --ignore-liveness
, reachability from the roots is
ignored. However, the path still won't be deleted if there are other
paths in the store that refer to it (i.e., depend on it).
Options
-
--ignore-liveness
Do not check whether the paths are reachable from a root. -
--stdin
Read installables from the standard input. No default installable applied.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--all
Apply the operation to every store path. -
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
. -
--recursive
/-r
Apply operation to closure of the specified paths.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store diff-closures
- show what packages and versions were added and removed between two closures
Synopsis
nix store diff-closures
[option...] before after
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Show what got added and removed between two versions of the NixOS system profile:
# nix store diff-closures /nix/var/nix/profiles/system-655-link /nix/var/nix/profiles/system-658-link acpi-call: 2020-04-07-5.8.16 → 2020-04-07-5.8.18 baloo-widgets: 20.08.1 → 20.08.2 bluez-qt: +12.6 KiB dolphin: 20.08.1 → 20.08.2, +13.9 KiB kdeconnect: 20.08.2 → ∅, -6597.8 KiB kdeconnect-kde: ∅ → 20.08.2, +6599.7 KiB …
Description
This command shows the differences between the two closures before and after with respect to the addition, removal, or version change of packages, as well as changes in store path sizes.
For each package name in the two closures (where a package name is defined as the name component of a store path excluding the version), if there is a change in the set of versions of the package, or a change in the size of the store paths of more than 8 KiB, it prints a line like this:
dolphin: 20.08.1 → 20.08.2, +13.9 KiB
No size change is shown if it's below the threshold. If the package
does not exist in either the before or after closures, it is
represented using ∅
(empty set) on the appropriate side of the
arrow. If a package has an empty version string, the version is
rendered as ε
(epsilon).
There may be multiple versions of a package in each closure. In that case, only the changed versions are shown. Thus,
libfoo: 1.2, 1.3 → 1.4
leaves open the possibility that there are other versions (e.g. 1.1
)
that exist in both closures.
Options
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store dump-path
- serialise a store path to stdout in NAR format
Synopsis
nix store dump-path
[option...] installables...
Examples
-
To get a NAR containing the GNU Hello package:
# nix store dump-path nixpkgs#hello > hello.nar
-
To get a NAR from the binary cache https://cache.nixos.org/:
# nix store dump-path --store https://cache.nixos.org/ \ /nix/store/7crrmih8c52r8fbnqb933dxrsp44md93-glibc-2.25 > glibc.nar
Description
This command generates a NAR file containing the serialisation of the store path installable. The NAR is written to standard output.
Options
--stdin
Read installables from the standard input. No default installable applied.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--all
Apply the operation to every store path. -
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
. -
--recursive
/-r
Apply operation to closure of the specified paths.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store gc
- perform garbage collection on a Nix store
Synopsis
nix store gc
[option...]
Examples
-
Delete unreachable paths in the Nix store:
# nix store gc
-
Delete up to 1 gigabyte of garbage:
# nix store gc --max 1G
Description
This command deletes unreachable paths in the Nix store.
Options
-
--dry-run
Show what this command would do without doing it. -
--max
n Stop after freeing n bytes of disk space.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store ls
- show information about a path in the Nix store
Synopsis
nix store ls
[option...] path
Examples
-
To list the contents of a store path in a binary cache:
# nix store ls --store https://cache.nixos.org/ --long --recursive /nix/store/0i2jd68mp5g6h2sa5k9c85rb80sn8hi9-hello-2.10 dr-xr-xr-x 0 ./bin -r-xr-xr-x 38184 ./bin/hello dr-xr-xr-x 0 ./share …
-
To show information about a specific file in a binary cache:
# nix store ls --store https://cache.nixos.org/ --long /nix/store/0i2jd68mp5g6h2sa5k9c85rb80sn8hi9-hello-2.10/bin/hello -r-xr-xr-x 38184 hello
Description
This command shows information about path in a Nix store. path can be a top-level store path or any file inside a store path.
Options
-
--directory
/-d
Show directories rather than their contents. -
--json
Produce output in JSON format, suitable for consumption by another program. -
--long
/-l
Show detailed file information. -
--recursive
/-R
List subdirectories recursively.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store make-content-addressed
- rewrite a path or closure to content-addressed form
Synopsis
nix store make-content-addressed
[option...] installables...
Examples
-
Create a content-addressed representation of the closure of GNU Hello:
# nix store make-content-addressed nixpkgs#hello … rewrote '/nix/store/v5sv61sszx301i0x6xysaqzla09nksnd-hello-2.10' to '/nix/store/5skmmcb9svys5lj3kbsrjg7vf2irid63-hello-2.10'
Since the resulting paths are content-addressed, they are always trusted and don't need signatures to copied to another store:
# nix copy --to /tmp/nix --trusted-public-keys '' /nix/store/5skmmcb9svys5lj3kbsrjg7vf2irid63-hello-2.10
By contrast, the original closure is input-addressed, so it does need signatures to be trusted:
# nix copy --to /tmp/nix --trusted-public-keys '' nixpkgs#hello cannot add path '/nix/store/zy9wbxwcygrwnh8n2w9qbbcr6zk87m26-libunistring-0.9.10' because it lacks a signature by a trusted key
-
Create a content-addressed representation of the current NixOS system closure:
# nix store make-content-addressed /run/current-system
Description
This command converts the closure of the store paths specified by installables to content-addressed form.
Nix store paths are usually input-addressed, meaning that the hash part of the store path is computed from the contents of the derivation (i.e., the build-time dependency graph). Input-addressed paths need to be signed by a trusted key if you want to import them into a store, because we need to trust that the contents of the path were actually built by the derivation.
By contrast, in a content-addressed path, the hash part is computed from the contents of the path. This allows the contents of the path to be verified without any additional information such as signatures. This means that a command like
# nix store build /nix/store/5skmmcb9svys5lj3kbsrjg7vf2irid63-hello-2.10 \
--substituters https://my-cache.example.org
will succeed even if the binary cache https://my-cache.example.org
doesn't present any signatures.
Options
-
--from
store-uri URL of the source Nix store. -
--json
Produce output in JSON format, suitable for consumption by another program. -
--stdin
Read installables from the standard input. No default installable applied. -
--to
store-uri URL of the destination Nix store.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--all
Apply the operation to every store path. -
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
. -
--recursive
/-r
Apply operation to closure of the specified paths.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store optimise
- replace identical files in the store by hard links
Synopsis
nix store optimise
[option...]
Examples
-
Optimise the Nix store:
nix store optimise
Description
This command deduplicates the Nix store: it scans the store for regular files with identical contents, and replaces them with hard links to a single instance.
Note that you can also set auto-optimise-store
to true
in
nix.conf
to perform this optimisation incrementally whenever a new
path is added to the Nix store. To make this efficient, Lix maintains
a content-addressed index of all the files in the Nix store in the
directory /nix/store/.links/
.
Warning
This program is experimental and its interface is subject to change.
Name
nix store path-from-hash-part
- get a store path from its hash part
Synopsis
nix store path-from-hash-part
[option...] hash-part
Examples
-
Return the full store path with the given hash part:
# nix store path-from-hash-part --store https://cache.nixos.org/ 0i2jd68mp5g6h2sa5k9c85rb80sn8hi9 /nix/store/0i2jd68mp5g6h2sa5k9c85rb80sn8hi9-hello-2.10
Description
Given the hash part of a store path (that is, the 32 characters
following /nix/store/
), return the full store path. This is
primarily useful in the implementation of binary caches, where a
request for a .narinfo
file only supplies the hash part
(e.g. https://cache.nixos.org/0i2jd68mp5g6h2sa5k9c85rb80sn8hi9.narinfo
).
Warning
This program is experimental and its interface is subject to change.
Name
nix store ping
- test whether a store can be accessed
Synopsis
nix store ping
[option...]
Examples
-
Test whether connecting to a remote Nix store via SSH works:
# nix store ping --store ssh://mac1
-
Test whether a URL is a valid binary cache:
# nix store ping --store https://cache.nixos.org
-
Test whether the Nix daemon is up and running:
# nix store ping --store daemon
Description
This command tests whether a particular Nix store (specified by the
argument --store
url) can be accessed. What this means is
dependent on the type of the store. For instance, for an SSH store it
means that Lix can connect to the specified machine.
If the command succeeds, Lix returns a exit code of 0 and does not print any output.
Options
--json
Produce output in JSON format, suitable for consumption by another program.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store prefetch-file
- download a file into the Nix store
Synopsis
nix store prefetch-file
[option...] url
Examples
-
Download a file to the Nix store:
# nix store prefetch-file https://releases.nixos.org/nix/nix-2.3.10/nix-2.3.10.tar.xz Downloaded 'https://releases.nixos.org/nix/nix-2.3.10/nix-2.3.10.tar.xz' to '/nix/store/vbdbi42hgnc4h7pyqzp6h2yf77kw93aw-source' (hash 'sha256-qKheVd5D0BervxMDbt+1hnTKE2aRWC8XCAwc0SeHt6s=').
-
Download a file and get the SHA-512 hash:
# nix store prefetch-file --json --hash-type sha512 \ https://releases.nixos.org/nix/nix-2.3.10/nix-2.3.10.tar.xz \ | jq -r .hash sha512-6XJxfym0TNH9knxeH4ZOvns6wElFy3uahunl2hJgovACCMEMXSy42s69zWVyGJALXTI+86tpDJGlIcAySEKBbA==
Description
This command downloads the file url to the Nix store. It prints out the resulting store path and the cryptographic hash of the contents of the file.
The name component of the store path defaults to the last component of
url, but this can be overridden using --name
.
Options
-
--executable
Make the resulting file executable. Note that this causes the resulting hash to be a NAR hash rather than a flat file hash. -
--expected-hash
hash The expected hash of the file. -
--hash-type
hash-algo hash algorithm ('md5', 'sha1', 'sha256', or 'sha512') -
--json
Produce output in JSON format, suitable for consumption by another program. -
--name
name Override the name component of the resulting store path. It defaults to the base name of url. -
--unpack
Unpack the archive (which must be a tarball or zip file) and add the result to the Nix store.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store repair
- repair store paths
Synopsis
nix store repair
[option...] installables...
Examples
-
Repair a store path, after determining that it is corrupt:
# nix store verify /nix/store/yb5q57zxv6hgqql42d5r8b5k5mcq6kay-hello-2.10 path '/nix/store/yb5q57zxv6hgqql42d5r8b5k5mcq6kay-hello-2.10' was modified! expected hash 'sha256:1hd5vnh6xjk388gdk841vflicy8qv7qzj2hb7xlyh8lpb43j921l', got 'sha256:1a25lf78x5wi6pfkrxalf0n13kdaca0bqmjqnp7wfjza2qz5ssgl' # nix store repair /nix/store/yb5q57zxv6hgqql42d5r8b5k5mcq6kay-hello-2.10
Description
This command attempts to "repair" the store paths specified by installables by redownloading them using the available substituters. If no substitutes are available, then repair is not possible.
Warning
During repair, there is a very small time window during which the old path (if it exists) is moved out of the way and replaced with the new path. If repair is interrupted in between, then the system may be left in a broken state (e.g., if the path contains a critical system component like the GNU C Library).
Options
--stdin
Read installables from the standard input. No default installable applied.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--all
Apply the operation to every store path. -
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
. -
--recursive
/-r
Apply operation to closure of the specified paths.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store sign
- sign store paths
Synopsis
nix store sign
[option...] installables...
Options
-
--key-file
/-k
file File containing the secret signing key. -
--stdin
Read installables from the standard input. No default installable applied.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--all
Apply the operation to every store path. -
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
. -
--recursive
/-r
Apply operation to closure of the specified paths.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix store verify
- verify the integrity of store paths
Synopsis
nix store verify
[option...] installables...
Examples
-
Verify the entire Nix store:
# nix store verify --all
-
Check whether each path in the closure of Firefox has at least 2 signatures:
# nix store verify --recursive --sigs-needed 2 --no-contents $(type -p firefox)
-
Verify a store path in the binary cache
https://cache.nixos.org/
:# nix store verify --store https://cache.nixos.org/ \ /nix/store/v5sv61sszx301i0x6xysaqzla09nksnd-hello-2.10
Description
This command verifies the integrity of the store paths installables,
or, if --all
is given, the entire Nix store. For each path, it
checks that
-
its contents match the NAR hash recorded in the Nix database; and
-
it is trusted, that is, it is signed by at least one trusted signing key, is content-addressed, or is built locally ("ultimately trusted").
Exit status
The exit status of this command is the sum of the following values:
-
1 if any path is corrupted (i.e. its contents don't match the recorded NAR hash).
-
2 if any path is untrusted.
-
4 if any path couldn't be verified for any other reason (such as an I/O error).
Options
-
--no-contents
Do not verify the contents of each store path. -
--no-trust
Do not verify whether each store path is trusted. -
--sigs-needed
/-n
n Require that each path is signed by at least n different keys. -
--stdin
Read installables from the standard input. No default installable applied. -
--substituter
/-s
store-uri Use signatures from the specified store.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--all
Apply the operation to every store path. -
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
. -
--recursive
/-r
Apply operation to closure of the specified paths.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix upgrade-nix
- upgrade Nix to the stable version declared in Nixpkgs
Synopsis
nix upgrade-nix
[option...]
Examples
-
Upgrade Nix to the stable version declared in Nixpkgs:
# nix upgrade-nix
-
Upgrade Nix in a specific profile:
# nix upgrade-nix --profile ~alice/.local/state/nix/profiles/profile
Description
This command upgrades Lix to the latest stable version. This stable version is defined in the Lix manifest and updated manually. It may not always be the latest tagged release.
By default, it locates the directory containing the nix
binary in the $PATH
environment variable. If that directory is a Nix profile, it will
upgrade the nix
package in that profile to the latest stable binary
release.
You cannot use this command to upgrade Nix in the system profile of a
NixOS system (that is, if nix
is found in /run/current-system
).
Options
-
--dry-run
Show what this command would do without doing it. -
--nix-store-paths-url
url The URL of the file that contains the store paths of the latest Nix release. -
--profile
/-p
profile-dir The path to the Nix profile to upgrade. -
--store-path
store-path A specific store path to upgrade Nix to
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Warning
This program is experimental and its interface is subject to change.
Name
nix why-depends
- show why a package has another package in its closure
Synopsis
nix why-depends
[option...] package dependency
Note: this command's interface is based heavily around installables, which you may want to read about first (nix --help
).
Examples
-
Show one path through the dependency graph leading from Hello to Glibc:
# nix why-depends nixpkgs#hello nixpkgs#glibc /nix/store/v5sv61sszx301i0x6xysaqzla09nksnd-hello-2.10 └───bin/hello: …...................../nix/store/9l06v7fc38c1x3r2iydl15ksgz0ysb82-glibc-2.32/lib/ld-linux-x86-64.… → /nix/store/9l06v7fc38c1x3r2iydl15ksgz0ysb82-glibc-2.32
-
Show all files and paths in the dependency graph leading from Thunderbird to libX11:
# nix why-depends --all nixpkgs#thunderbird nixpkgs#xorg.libX11 /nix/store/qfc8729nzpdln1h0hvi1ziclsl3m84sr-thunderbird-78.5.1 ├───lib/thunderbird/libxul.so: …6wrw-libxcb-1.14/lib:/nix/store/adzfjjh8w25vdr0xdx9x16ah4f5rqrw5-libX11-1.7.0/lib:/nix/store/ssf… │ → /nix/store/adzfjjh8w25vdr0xdx9x16ah4f5rqrw5-libX11-1.7.0 ├───lib/thunderbird/libxul.so: …pxyc-libXt-1.2.0/lib:/nix/store/1qj29ipxl2fyi2b13l39hdircq17gnk0-libXdamage-1.1.5/lib:/nix/store… │ → /nix/store/1qj29ipxl2fyi2b13l39hdircq17gnk0-libXdamage-1.1.5 │ ├───lib/libXdamage.so.1.1.0: …-libXfixes-5.0.3/lib:/nix/store/adzfjjh8w25vdr0xdx9x16ah4f5rqrw5-libX11-1.7.0/lib:/nix/store/9l0… │ │ → /nix/store/adzfjjh8w25vdr0xdx9x16ah4f5rqrw5-libX11-1.7.0 …
-
Show why Glibc depends on itself:
# nix why-depends nixpkgs#glibc nixpkgs#glibc /nix/store/9df65igwjmf2wbw0gbrrgair6piqjgmi-glibc-2.31 └───lib/ld-2.31.so: …che Do not use /nix/store/9df65igwjmf2wbw0gbrrgair6piqjgmi-glibc-2.31/etc/ld.so.cache. --… → /nix/store/9df65igwjmf2wbw0gbrrgair6piqjgmi-glibc-2.31
-
Show why Geeqie has a build-time dependency on
systemd
:# nix why-depends --derivation nixpkgs#geeqie nixpkgs#systemd /nix/store/drrpq2fqlrbj98bmazrnww7hm1in3wgj-geeqie-1.4.drv └───/: …atch.drv",["out"]),("/nix/store/qzh8dyq3lfbk3i1acbp7x9wh3il2imiv-gtk+3-3.24.21.drv",["dev"]),("/… → /nix/store/qzh8dyq3lfbk3i1acbp7x9wh3il2imiv-gtk+3-3.24.21.drv └───/: …16.0.drv",["dev"]),("/nix/store/8kp79fyslf3z4m3dpvlh6w46iaadz5c2-cups-2.3.3.drv",["dev"]),("/nix… → /nix/store/8kp79fyslf3z4m3dpvlh6w46iaadz5c2-cups-2.3.3.drv └───/: ….3.1.drv",["out"]),("/nix/store/yd3ihapyi5wbz1kjacq9dbkaq5v5hqjg-systemd-246.4.drv",["dev"]),("/… → /nix/store/yd3ihapyi5wbz1kjacq9dbkaq5v5hqjg-systemd-246.4.drv
Description
Lix automatically determines potential runtime dependencies between
store paths by scanning for the hash parts of store paths. For
instance, if there exists a store path
/nix/store/9df65igwjmf2wbw0gbrrgair6piqjgmi-glibc-2.31
, and a file
inside another store path contains the string 9df65igw…
, then the
latter store path refers to the former, and thus might need it at
runtime. Lix always maintains the existence of the transitive closure
of a store path under the references relationship; it is therefore not
possible to install a store path without having all of its references
present.
Sometimes Lix packages end up with unexpected runtime dependencies; for instance, a reference to a compiler might accidentally end up in a binary, causing the former to be in the latter's closure. This kind of closure size bloat is undesirable.
nix why-depends
allows you to diagnose the cause of such issues. It
shows why the store path package depends on the store path
dependency, by showing a shortest sequence in the references graph
from the former to the latter. Also, for each node along this path, it
shows a file fragment containing a reference to the next store path in
the sequence.
To show why derivation package has a build-time rather than runtime
dependency on derivation dependency, use --derivation
.
Options
-
--all
/-a
Show all edges in the dependency graph leading from package to dependency, rather than just a shortest path. -
--precise
For each edge in the dependency graph, show the files in the parent that cause the dependency.
Common evaluation options:
-
--arg
name expr Pass the value expr as the argument name to Nix functions. -
--argstr
name string Pass the string string as the argument name to Nix functions. -
--debugger
Start an interactive environment if evaluation fails. -
--eval-store
store-url The URL of the Nix store to use for evaluation, i.e. to store derivations (.drv
files) and inputs referenced by them. -
--impure
Allow access to mutable paths and repositories. -
--include
/-I
path Add path to the Nix search path. The Nix search path is initialized from the colon-separatedNIX_PATH
environment variable, and is used to look up the location of Nix expressions using paths enclosed in angle brackets (i.e.,<nixpkgs>
).For instance, passing
-I /home/eelco/Dev -I /etc/nixos
will cause Lix to look for paths relative to
/home/eelco/Dev
and/etc/nixos
, in that order. This is equivalent to setting theNIX_PATH
environment variable to/home/eelco/Dev:/etc/nixos
It is also possible to match paths against a prefix. For example, passing
-I nixpkgs=/home/eelco/Dev/nixpkgs-branch -I /etc/nixos
will cause Lix to search for
<nixpkgs/path>
in/home/eelco/Dev/nixpkgs-branch/path
and/etc/nixos/nixpkgs/path
.If a path in the Nix search path starts with
http://
orhttps://
, it is interpreted as the URL of a tarball that will be downloaded and unpacked to a temporary location. The tarball must consist of a single top-level directory. For example, passing-I nixpkgs=https://github.com/NixOS/nixpkgs/archive/master.tar.gz
tells Lix to download and use the current contents of the
master
branch in thenixpkgs
repository.The URLs of the tarballs from the official
nixos.org
channels (see the manual page fornix-channel
) can be abbreviated aschannel:<channel-name>
. For instance, the following two flags are equivalent:-I nixpkgs=channel:nixos-21.05 -I nixpkgs=https://nixos.org/channels/nixos-21.05/nixexprs.tar.xz
You can also fetch source trees using flake URLs and add them to the search path. For instance,
-I nixpkgs=flake:nixpkgs
specifies that the prefix
nixpkgs
shall refer to the source tree downloaded from thenixpkgs
entry in the flake registry. Similarly,-I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05
makes
<nixpkgs>
refer to a particular branch of theNixOS/nixpkgs
repository on GitHub. -
--override-flake
original-ref resolved-ref Override the flake registries, redirecting original-ref to resolved-ref.
Common flake-related options:
-
--commit-lock-file
Commit changes to the flake's lock file. -
--inputs-from
flake-url Use the inputs of the specified flake as registry entries. -
--no-registries
Don't allow lookups in the flake registries. This option is deprecated; use--no-use-registries
. -
--no-update-lock-file
Do not allow any updates to the flake's lock file. -
--no-write-lock-file
Do not write the flake's newly generated lock file. -
--output-lock-file
flake-lock-path Write the given lock file instead offlake.lock
within the top-level flake. -
--override-input
input-path flake-url Override a specific flake input (e.g.dwarffs/nixpkgs
). This implies--no-write-lock-file
. -
--reference-lock-file
flake-lock-path Read the given lock file instead offlake.lock
within the top-level flake.
Logging-related options:
-
--debug
Set the logging verbosity level to 'debug'. -
--log-format
format Set the format of log output; one ofraw
,internal-json
,bar
orbar-with-logs
. -
--print-build-logs
/-L
Print full build logs on standard error. -
--quiet
Decrease the logging verbosity level. -
--verbose
/-v
Increase the logging verbosity level.
Miscellaneous global options:
-
--help
Show usage information. -
--offline
Disable substituters and consider all previously downloaded files up-to-date. -
--option
name value Set the Lix configuration setting name to value (overridingnix.conf
). -
--refresh
Consider all previously downloaded files out-of-date. -
--repair
During evaluation, rewrite missing or corrupted files in the Nix store. During building, rebuild missing or corrupted store paths. -
--version
Show version information.
Options that change the interpretation of installables:
-
--derivation
Operate on the store derivation rather than its outputs. -
--expr
/-E
expr Interpret installables as attribute paths relative to the Nix expression expr. -
--file
/-f
file Interpret installables as attribute paths relative to the Nix expression stored in file. If file is the character -, then a Nix expression will be read from standard input. Implies--impure
.
Note
See
man nix.conf
for overriding configuration settings with command line flags.
Files
This section lists configuration files that you can use when you work with Lix.
Name
nix.conf
- Lix configuration file
Description
Lix supports a variety of configuration settings, which are read from configuration files or taken as command line flags.
Configuration file
By default Lix reads settings from the following places, in that order:
-
The system-wide configuration file
sysconfdir/nix/nix.conf
(i.e./etc/nix/nix.conf
on most systems), or$NIX_CONF_DIR/nix.conf
ifNIX_CONF_DIR
is set.Values loaded in this file are not forwarded to the Nix daemon. The client assumes that the daemon has already loaded them.
-
If
NIX_USER_CONF_FILES
is set, then each path separated by:
will be loaded in reverse order.Otherwise it will look for
nix/nix.conf
files inXDG_CONFIG_DIRS
andXDG_CONFIG_HOME
. If unset,XDG_CONFIG_DIRS
defaults to/etc/xdg
, andXDG_CONFIG_HOME
defaults to$HOME/.config
as per XDG Base Directory Specification. -
If
NIX_CONFIG
is set, its contents are treated as the contents of a configuration file.
File format
Configuration files consist of name = value
pairs, one per line.
Comments start with a #
character.
Example:
keep-outputs = true # Nice for developers
keep-derivations = true # Idem
Other files can be included with a line like include <path>
, where <path>
is interpreted relative to the current configuration file.
A missing file is an error unless !include
is used instead.
A configuration setting usually overrides any previous value.
However, for settings that take a list of items, you can prefix the name of the setting by extra-
to append to the previous value.
For instance,
substituters = a b
extra-substituters = c d
defines the substituters
setting to be a b c d
.
Unknown option names are not an error, and are simply ignored with a warning.
Command line flags
Configuration options can be set on the command line, overriding the values set in the configuration file:
-
Every configuration setting has corresponding command line flag (e.g.
--max-jobs 16
). Boolean settings do not need an argument, and can be explicitly disabled with theno-
prefix (e.g.--keep-failed
and--no-keep-failed
).Unknown option names are invalid flags (unless there is already a flag with that name), and are rejected with an error.
-
The flag
--option <name> <value>
is interpreted exactly like a<name> = <value>
in a setting file.Unknown option names are ignored with a warning.
The extra-
prefix is supported for settings that take a list of items (e.g. --extra-trusted users alice
or --option extra-trusted-users alice
).
Available settings
-
Whether to accept Lix configuration from the
nixConfig
attribute of a flake without prompting. This is almost always a very bad idea.Setting this setting as a trusted user allows Nix flakes to gain root access on your machine if they set one of the several trusted-user-only settings that execute commands as root.
See multi-user installations for more details on the Lix security model.
Warning This setting is part of an experimental feature.
To change this setting, you need to make sure the corresponding experimental feature,
flakes
, is enabled. For example, include the following innix.conf
:extra-experimental-features = flakes accept-flake-config = ...
Default:
false
-
Access tokens used to access protected GitHub, GitLab, or other locations requiring token-based authentication.
Access tokens are specified as a string made up of space-separated
host=token
values. The specific token used is selected by matching thehost
portion against the "host" specification of the input. The actual use of thetoken
value is determined by the type of resource being accessed:-
Github: the token value is the OAUTH-TOKEN string obtained as the Personal Access Token from the Github server (see https://docs.github.com/en/developers/apps/building-oauth-apps/authorizing-oauth-apps).
-
Gitlab: the token value is either the OAuth2 token or the Personal Access Token (these are different types tokens for gitlab, see https://docs.gitlab.com/12.10/ee/api/README.html#authentication). The
token
value should betype:tokenstring
wheretype
is eitherOAuth2
orPAT
to indicate which type of token is being specified.
Example
~/.config/nix/nix.conf
:access-tokens = github.com=23ac...b289 gitlab.mycompany.com=PAT:A123Bp_Cd..EfG gitlab.com=OAuth2:1jklw3jk
Example
~/code/flake.nix
:input.foo = { type = "gitlab"; host = "gitlab.mycompany.com"; owner = "mycompany"; repo = "pro"; };
This example specifies three tokens, one each for accessing github.com, gitlab.mycompany.com, and gitlab.com.
The
input.foo
uses the "gitlab" fetcher, which might requires specifying the token type along with the token value.Default: empty
-
-
Whether to allow dirty Git/Mercurial trees.
Default:
true
-
By default, Lix allows you to
import
from a derivation, allowing building at evaluation time. With this option set to false, Lix will throw an error when evaluating an expression that uses this feature, allowing users to ensure their evaluation will not require any builds to take place.Default:
true
-
If set to
true
, Lix will stop complaining if the store directory (typically /nix/store) contains symlink components.This risks making some builds "impure" because builders sometimes "canonicalise" paths by resolving all symlink components. Problems occur if those builds are then deployed to machines where /nix/store resolves to a different location from that of the build machine. You can enable this setting if you are sure you're not going to do that.
Default:
false
-
allow-unsafe-native-code-during-evaluation
Whether builtin functions that allow executing native code should be enabled.
In particular, this adds the
importNative
andexec
builtins.Default:
false
-
Which prefixes to allow derivations to ask for access to (primarily for Darwin).
Default: empty
-
A list of URI prefixes to which access is allowed in restricted evaluation mode. For example, when set to
https://github.com/NixOS
, builtin functions such asfetchGit
are allowed to accesshttps://github.com/NixOS/patchelf.git
.Default: empty
-
A list user names, separated by whitespace. These users are allowed to connect to the Nix daemon.
You can specify groups by prefixing names with
@
. For instance,@wheel
means all users in thewheel
group. Also, you can allow all users by specifying*
.Note
Trusted users (set in
trusted-users
) can always connect to the Nix daemon.Default:
*
-
If set to
true
, Lix will ignore theallowSubstitutes
attribute in derivations and always attempt to use available substituters. For more information onallowSubstitutes
, see the manual chapter on advanced attributes.Default:
false
-
Whether to select UIDs for builds automatically, instead of using the users in
build-users-group
.UIDs are allocated starting at 872415232 (0x34000000) on Linux and 56930 on macOS.
Default:
false
-
If set to
true
, Lix automatically detects files in the store that have identical contents, and replaces them with hard links to a single copy. This saves disk space. If set tofalse
(the default), you can still runnix-store --optimise
to get rid of duplicate files.Default:
false
-
The bash prompt (
PS1
) innix develop
shells.Default: empty
-
Prefix prepended to the
PS1
environment variable innix develop
shells.Default: empty
-
Suffix appended to the
PS1
environment variable innix develop
shells.Default: empty
-
The path to the helper program that executes remote builds.
Lix communicates with the build hook over
stdio
using a custom protocol to request builds that cannot be performed directly by the Nix daemon. The default value is the internal Lix binary that implements remote building.Important
Change this setting only if you really know what you’re doing.
Default: empty
-
How often (in seconds) to poll for locks.
Default:
5
-
This options specifies the Unix group containing the Lix build user accounts. In multi-user Lix installations, builds should not be performed by the Lix account since that would allow users to arbitrarily modify the Nix store and database by supplying specially crafted builders; and they cannot be performed by the calling user since that would allow them to influence the build result.
Therefore, if this option is non-empty and specifies a valid group, builds will be performed under the user accounts that are a member of the group specified here (as listed in
/etc/group
). Those user accounts should not be used for any other purpose!Lix will never run two builds under the same user account at the same time. This is to prevent an obvious security hole: a malicious user writing a Nix expression that modifies the build result of a legitimate Nix expression being built by another user. Therefore it is good to have as many Lix build user accounts as you can spare. (Remember: uids are cheap.)
The build users should have permission to create files in the Nix store, but not delete them. Therefore,
/nix/store
should be owned by the Nix account, its group should be the group specified here, and its mode should be1775
.If the build users group is empty, builds will be performed under the uid of the Lix process (that is, the uid of the caller if both
NIX_REMOTE
is either empty orauto
and the Nix store is owned by that user, or, alternatively, the uid under which the Nix daemon runs ifNIX_REMOTE
isdaemon
or if it isauto
and the store is not owned by the caller). Obviously, this should not be used with a nix daemon accessible to untrusted clients.For the avoidance of doubt, explicitly setting this to empty with a Lix daemon running as root means that builds will be executed as root with respect to the rest of the system. We intend to fix this: https://git.lix.systems/lix-project/lix/issues/242
Defaults to
nixbld
when running as root, empty otherwise.Default: machine-specific
-
A semicolon-separated list of build machines. For the exact format and examples, see the manual chapter on remote builds
Default:
@/dummy/machines
-
If set to
true
, Lix will instruct remote build machines to use their own binary substitutes if available. In practical terms, this means that remote hosts will fetch as many build dependencies as possible from their own substitutes (e.g, fromcache.nixos.org
), instead of waiting for this host to upload them all. This can drastically reduce build times if the network connection between this computer and the remote build host is slow.Default:
false
-
The commit summary to use when committing changed flake lock files. If empty, the summary is generated based on the action performed.
Warning This setting is part of an experimental feature.
To change this setting, you need to make sure the corresponding experimental feature,
flakes
, is enabled. For example, include the following innix.conf
:extra-experimental-features = flakes commit-lockfile-summary = ...
Default: empty
-
If set to
true
(the default), build logs written to/nix/var/log/nix/drvs
will be compressed on the fly using bzip2. Otherwise, they will not be compressed.Default:
true
Deprecated alias:
build-compress-log
-
The timeout (in seconds) for establishing connections in the binary cache substituter. It corresponds to
curl
’s--connect-timeout
option. A value of 0 means no limit.Default:
0
-
Sets the value of the
NIX_BUILD_CORES
environment variable in the invocation of builders. Builders can use this variable at their discretion to control the maximum amount of parallelism. For instance, in Nixpkgs, if the derivation attributeenableParallelBuilding
is set totrue
, the builder passes the-jN
flag to GNU Make. It can be overridden using the--cores
command line switch and defaults to1
. The value0
means that the builder should use all available CPU cores in the system.Default: machine-specific
Deprecated alias:
build-cores
-
If set to true and the
--debugger
flag is given,builtins.trace
will enter the debugger likebuiltins.break
.This is useful for debugging warnings in third-party Nix code.
Default:
false
-
Absolute path to an executable capable of diffing build results. The hook is executed if
run-diff-hook
is true, and the output of a build is known to not be the same. This program is not executed to determine if two results are the same.The diff hook is executed by the same user and group who ran the build. However, the diff hook does not have write access to the store path just built.
The diff hook program receives three parameters:
-
A path to the previous build's results
-
A path to the current build's results
-
The path to the build's derivation
-
The path to the build's scratch directory. This directory will exist only if the build was run with
--keep-failed
.
The stderr and stdout output from the diff hook will not be displayed to the user. Instead, it will print to the nix-daemon's log.
When using the Nix daemon,
diff-hook
must be set in thenix.conf
configuration file, and cannot be passed at the command line.Default: ``
-
-
How often Lix will attempt to download a file before giving up.
Default:
5
-
Specify the maximum transfer rate in kilobytes per second you want Lix to use for downloads.
Default:
0
-
If set to
false
(the default),RLIMIT_CORE
has a soft limit of zero. If set totrue
, the soft limit is infinite.The hard limit is always infinite.
Default:
false
-
Whether to use the flake evaluation cache.
Default:
true
-
This option defines
builtins.currentSystem
in the Nix language if it is set as a non-empty string. Otherwise, if it is defined as the empty string (the default), the value of thesystem
configuration setting is used instead.Unlike
system
, this setting does not change what kind of derivations can be built locally. This is useful for evaluating Nix code on one system to produce derivations to be built on another type of system.Default: empty
-
Experimental features that are enabled.
Example:
experimental-features = nix-command flakes
The following experimental features are available:
auto-allocate-uids
ca-derivations
cgroups
daemon-trust-override
dynamic-derivations
fetch-closure
flakes
impure-derivations
nix-command
no-url-literals
parse-toml-timestamps
read-only-local-store
recursive-nix
repl-automation
repl-flake
Experimental features are further documented in the manual.
Default: empty
-
System types of executables that can be run on this machine.
Lix will only build a given derivation locally when its
system
attribute equals any of the values specified here or in thesystem
option.Setting this can be useful to build derivations locally on compatible machines:
i686-linux
executables can be run onx86_64-linux
machines (set by default)x86_64-darwin
executables can be run on macOSaarch64-darwin
with Rosetta 2 (set by default where applicable)armv6
andarmv5tel
executables can be run onarmv7
- some
aarch64
machines can also natively run 32-bit ARM code qemu-user
may be used to support non-native platforms (though this may be slow and buggy)
Build systems will usually detect the target platform to be the current physical system and therefore produce machine code incompatible with what may be intended in the derivation. You should design your derivation's
builder
accordingly and cross-check the results when using this option against natively-built versions of your derivation.Default: machine-specific
-
If set to
true
, Lix will fall back to building from source if a binary substitute fails. This is equivalent to the--fallback
flag. The default isfalse
.Default:
false
Deprecated alias:
build-fallback
-
Path or URI of the global flake registry.
URIs are deprecated. When set to 'vendored', defaults to a vendored copy of https://channels.nixos.org/flake-registry.json.
When empty, disables the global flake registry.
Warning This setting is part of an experimental feature.
To change this setting, you need to make sure the corresponding experimental feature,
flakes
, is enabled. For example, include the following innix.conf
:extra-experimental-features = flakes flake-registry = ...
Default:
vendored
-
If set to
true
, changes to the Nix store metadata (in/nix/var/nix/db
) are synchronously flushed to disk. This improves robustness in case of system crashes, but reduces performance. The default istrue
.Default:
true
-
Amount of reserved disk space for the garbage collector.
Default:
8388608
-
A list of web servers used by
builtins.fetchurl
to obtain files by hash. Given a hash type ht and a base-16 hash h, Lix will try to download the file from hashed-mirror/ht/h. This allows files to be downloaded even if they have disappeared from their original URI. For example, given an example mirrorhttp://tarballs.nixos.org/
, when building the derivationbuiltins.fetchurl { url = "https://example.org/foo-1.2.3.tar.xz"; sha256 = "2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae"; }
Lix will attempt to download this file from
http://tarballs.nixos.org/sha256/2c26b46b68ffc68ff99b453c1d30413413422d706483bfa0f98a5e886266e7ae
first. If it is not available there, if will try the original URI.Default: empty
-
The maximum number of parallel TCP connections used to fetch files from binary caches and by other downloads. It defaults to 25. 0 means no limit.
Default:
25
Deprecated alias:
binary-caches-parallel-connections
-
Whether to enable HTTP/2 support.
Default:
true
-
The number of UIDs/GIDs to use for dynamic ID allocation.
Default:
8388608
-
If set to true, ignore exceptions inside 'tryEval' calls when evaluating nix expressions in debug mode (using the --debugger flag). By default the debugger will pause on all exceptions.
Default:
false
-
A list of ACLs that should be ignored, normally Lix attempts to remove all ACLs from files and directories in the Nix store, but some ACLs like
security.selinux
orsystem.nfs4_acl
can't be removed even by root. Therefore it's best to just ignore them.Default:
security.csm security.selinux system.nfs4_acl
-
Whether to impersonate a Linux 2.6 machine on newer kernels.
Default:
false
Deprecated alias:
build-impersonate-linux-26
-
If set to
true
(the default), Lix will write the build log of a derivation (i.e. the standard output and error of its builder) to the directory/nix/var/log/nix/drvs
. The build log can be retrieved using the commandnix-store -l path
.Default:
true
Deprecated alias:
build-keep-log
-
If
true
(default), the garbage collector will keep the derivations from which non-garbage store paths were built. Iffalse
, they will be deleted unless explicitly registered as a root (or reachable from other roots).Keeping derivation around is useful for querying and traceability (e.g., it allows you to ask with what dependencies or options a store path was built), so by default this option is on. Turn it off to save a bit of disk space (or a lot if
keep-outputs
is also turned on).Default:
true
Deprecated alias:
gc-keep-derivations
-
If
false
(default), derivations are not stored in Nix user environments. That is, the derivations of any build-time-only dependencies may be garbage-collected.If
true
, when you add a Nix derivation to a user environment, the path of the derivation is stored in the user environment. Thus, the derivation will not be garbage-collected until the user environment generation is deleted (nix-env --delete-generations
). To prevent build-time-only dependencies from being collected, you should also turn onkeep-outputs
.The difference between this option and
keep-derivations
is that this one is “sticky”: it applies to any user environment created while this option was enabled, whilekeep-derivations
only applies at the moment the garbage collector is run.Default:
false
Deprecated alias:
env-keep-derivations
-
Whether to keep temporary directories of failed builds.
Default:
false
-
Whether to keep building derivations when another build fails.
Default:
false
-
If
true
, the garbage collector will keep the outputs of non-garbage derivations. Iffalse
(default), outputs will be deleted unless they are GC roots themselves (or reachable from other roots).In general, outputs must be registered as roots separately. However, even if the output of a derivation is registered as a root, the collector will still delete store paths that are used only at build time (e.g., the C compiler, or source tarballs downloaded from the network). To prevent it from doing so, set this option to
true
.Default:
false
Deprecated alias:
gc-keep-outputs
-
The number of lines of the tail of the log to show if a build fails.
Default:
25
-
This option defines the maximum number of bytes that a builder can write to its stdout/stderr. If the builder exceeds this limit, it’s killed. A value of
0
(the default) means that there is no limit.Default:
0
Deprecated alias:
build-max-log-size
-
The maximum function call depth to allow before erroring.
Default:
10000
-
When a garbage collection is triggered by the
min-free
option, it stops as soon asmax-free
bytes are available. The default is infinity (i.e. delete all garbage).Default:
-1
-
This option defines the maximum number of jobs that Lix will try to build in parallel. The default is
1
. The special valueauto
causes Lix to use the number of CPUs in your system.0
is useful when using remote builders to prevent any local builds (except forpreferLocalBuild
derivation attribute which executes locally regardless). It can be overridden using the--max-jobs
(-j
) command line switch.Default:
1
Deprecated alias:
build-max-jobs
-
This option defines the maximum number of seconds that a builder can go without producing any data on standard output or standard error. This is useful (for instance in an automated build system) to catch builds that are stuck in an infinite loop, or to catch remote builds that are hanging due to network problems. It can be overridden using the
--max-silent-time
command line switch.The value
0
means that there is no timeout. This is also the default.Default:
0
Deprecated alias:
build-max-silent-time
-
This option defines the maximum number of substitution jobs that Nix will try to run in parallel. The default is
16
. The minimum value one can choose is1
and lower values will be interpreted as1
.Default:
16
Deprecated alias:
substitution-max-jobs
-
When free disk space in
/nix/store
drops belowmin-free
during a build, Lix performs a garbage-collection untilmax-free
bytes are available or there is no more garbage. A value of0
(the default) disables this feature.Default:
0
-
Number of seconds between checking free disk space.
Default:
5
-
Maximum size of NARs before spilling them to disk.
Default:
33554432
-
The TTL in seconds for negative lookups. If a store path is queried from a substituter but was not found, there will be a negative lookup cached in the local disk cache database for the specified duration.
Default:
3600
-
The TTL in seconds for positive lookups. If a store path is queried from a substituter, the result of the query will be cached in the local disk cache database including some of the NAR metadata. The default TTL is a month, setting a shorter TTL for positive lookups can be useful for binary caches that have frequent garbage collection, in which case having a more frequent cache invalidation would prevent trying to pull the path again and failing with a hash mismatch if the build isn't reproducible.
Default:
2592000
-
If set to an absolute path to a
netrc
file, Lix will use the HTTP authentication credentials in this file when trying to download from a remote host through HTTP or HTTPS. Defaults to$NIX_CONF_DIR/netrc
.The
netrc
file consists of a list of accounts in the following format:machine my-machine login my-username password my-password
For the exact syntax, see the
curl
documentation.Note
This must be an absolute path, and
~
is not resolved. For example,~/.netrc
won't resolve to your home directory's.netrc
.Default:
/dummy/netrc
-
List of directories to be searched for
<...>
file referencesIn particular, outside of pure evaluation mode, this determines the value of
builtins.nixPath
.Default: empty
-
A list of plugin files to be loaded by Nix. Each of these files will be dlopened by Nix, allowing them to affect execution through static initialization. In particular, these plugins may construct static instances of RegisterPrimOp to add new primops or constants to the expression language, RegisterStoreImplementation to add new store implementations, RegisterCommand to add new subcommands to the
nix
command, and RegisterSetting to add new nix config settings. See the constructors for those types for more details.Warning! These APIs are inherently unstable and may change from release to release.
Since these files are loaded into the same address space as Nix itself, they must be DSOs compatible with the instance of Nix running at the time (i.e. compiled against the same headers, not linked to any incompatible libraries). They should not be linked to any Lix libs directly, as those will be available already at load time.
If an entry in the list is a directory, all files in the directory are loaded as plugins (non-recursively).
Default: empty
-
Optional. The path to a program to execute after each build.
This option is only settable in the global
nix.conf
, or on the command line by trusted users.When using the nix-daemon, the daemon executes the hook as
root
. If the nix-daemon is not involved, the hook runs as the user executing the nix-build.-
The hook executes after an evaluation-time build.
-
The hook does not execute on substituted paths.
-
The hook's output always goes to the user's terminal.
-
If the hook fails, the build succeeds but no further builds execute.
-
The hook executes synchronously, and blocks other builds from progressing while it runs.
The program executes with no arguments. The program's environment contains the following environment variables:
-
DRV_PATH
The derivation for the built paths.Example:
/nix/store/5nihn1a7pa8b25l9zafqaqibznlvvp3f-bash-4.4-p23.drv
-
OUT_PATHS
Output paths of the built derivation, separated by a space character.Example:
/nix/store/zf5lbh336mnzf1nlswdn11g4n2m8zh3g-bash-4.4-p23-dev /nix/store/rjxwxwv1fpn9wa2x5ssk5phzwlcv4mna-bash-4.4-p23-doc /nix/store/6bqvbzjkcp9695dq0dpl5y43nvy37pq1-bash-4.4-p23-info /nix/store/r7fng3kk3vlpdlh2idnrbn37vh4imlj2-bash-4.4-p23-man /nix/store/xfghy8ixrhz3kyy6p724iv3cxji088dx-bash-4.4-p23
.
Default: empty
-
-
If set, the path to a program that can set extra derivation-specific settings for this system. This is used for settings that can't be captured by the derivation model itself and are too variable between different versions of the same system to be hard-coded into nix.
The hook is passed the derivation path and, if sandboxes are enabled, the sandbox directory. It can then modify the sandbox and send a series of commands to modify various settings to stdout. The currently recognized commands are:
extra-sandbox-paths
Pass a list of files and directories to be included in the sandbox for this build. One entry per line, terminated by an empty line. Entries have the same format assandbox-paths
.
Default: empty
-
Whether to preallocate files when writing objects with known size.
Default:
false
-
Whether to print what paths need to be built or downloaded.
Default:
true
-
Pure evaluation mode ensures that the result of Nix expressions is fully determined by explicitly declared inputs, and not influenced by external state:
- Restrict file system and network access to files specified by cryptographic hash
- Disable
builtins.currentSystem
andbuiltins.currentTime
Default:
false
-
A list of files containing Nix expressions that can be used to add default bindings to
nix repl
sessions.Each file is called with three arguments:
- An attribute set
containing at least a
currentSystem
attribute (this is identical tobuiltins.currentSystem
, except that it's available inpure-eval
mode). - The top-level bindings produced by the previous
repl-overlays
value (or the default top-level bindings). - The final top-level bindings produced by calling all
repl-overlays
.
For example, the following file would alias
pkgs
tolegacyPackages.${info.currentSystem}
(if that attribute is defined):info: final: prev: if prev ? legacyPackages && prev.legacyPackages ? ${info.currentSystem} then { pkgs = prev.legacyPackages.${info.currentSystem}; } else { }
Default: empty
- An attribute set
containing at least a
-
require-drop-supplementary-groups
Following the principle of least privilege, Lix will attempt to drop supplementary groups when building with sandboxing.
However this can fail under some circumstances. For example, if the user lacks the
CAP_SETGID
capability. Searchsetgroups(2)
forEPERM
to find more detailed information on this.If you encounter such a failure, setting this option to
false
will let you ignore it and continue. But before doing so, you should consider the security implications carefully. Not dropping supplementary groups means the build sandbox will be less restricted than intended.This option defaults to
true
when the user is root (sinceroot
usually has permissions to call setgroups) andfalse
otherwise.Default:
false
-
If set to
true
(the default), any non-content-addressed path added or copied to the Nix store (e.g. when substituting from a binary cache) must have a signature by a trusted key. A trusted key is one listed intrusted-public-keys
, or a public key counterpart to a private key stored in a file listed insecret-key-files
.Set to
false
to disable signature checking and trust all non-content-addressed paths unconditionally.(Content-addressed paths are inherently trustworthy and thus unaffected by this configuration option.)
Default:
true
-
If set to
true
, the Nix evaluator will not allow access to any files outside of the Nix search path (as set via theNIX_PATH
environment variable or the-I
option), or to URIs outside ofallowed-uris
. The default isfalse
.Default:
false
-
If true, enable the execution of the
diff-hook
program.When using the Nix daemon,
run-diff-hook
must be set in thenix.conf
configuration file, and cannot be passed at the command line.Default:
false
-
If set to
true
, builds will be performed in a sandboxed environment, i.e., they’re isolated from the normal file system hierarchy and will only see their dependencies in the Nix store, the temporary build directory, private versions of/proc
,/dev
,/dev/shm
and/dev/pts
(on Linux), and the paths configured with thesandbox-paths
option. This is useful to prevent undeclared dependencies on files in directories such as/usr/bin
. In addition, on Linux, builds run in private PID, mount, network, IPC and UTS namespaces to isolate them from other processes in the system (except that fixed-output derivations do not run in private network namespace to ensure they can access the network).Currently, sandboxing only work on Linux and macOS. The use of a sandbox requires that Lix is run as root (so you should use the “build users” feature to perform the actual builds under different users than root).
If this option is set to
relaxed
, then fixed-output derivations and derivations that have the__noChroot
attribute set totrue
do not run in sandboxes.The default is
true
on Linux andfalse
on all other platforms.Default:
true
Deprecated alias:
build-use-chroot
,build-use-sandbox
-
The build directory inside the sandbox.
Default:
/build
-
This option determines the maximum size of the
tmpfs
filesystem mounted on/dev/shm
in Linux sandboxes. For the format, see the description of thesize
option oftmpfs
in mount(8). The default is50%
.Default:
50%
-
Whether to disable sandboxing when the kernel doesn't allow it.
Default:
true
-
A list of paths bind-mounted into Nix sandbox environments. You can use the syntax
target=source
to mount a path in a different location in the sandbox; for instance,/bin=/nix-bin
will mount the path/nix-bin
as/bin
inside the sandbox. If source is followed by?
, then it is not an error if source does not exist; for example,/dev/nvidiactl?
specifies that/dev/nvidiactl
will only be mounted in the sandbox if it exists in the host filesystem.If the source is in the Nix store, then its closure will be added to the sandbox as well.
Depending on how Lix was built, the default value for this option may be empty or provide
/bin/sh
as a bind-mount ofbash
.Default: empty
Deprecated alias:
build-chroot-dirs
,build-sandbox-paths
-
A whitespace-separated list of files containing secret (private) keys. These are used to sign locally-built paths. They can be generated using
nix-store --generate-binary-cache-key
. The corresponding public key can be distributed to other users, who can add it totrusted-public-keys
in theirnix.conf
.Default: empty
-
Whether Lix should print out a stack trace in case of Nix expression evaluation errors.
Default:
false
-
The path of a file containing CA certificates used to authenticate
https://
downloads. Lix by default will use the first of the following files that exists:/etc/ssl/certs/ca-certificates.crt
/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt
The path can be overridden by the following environment variables, in order of precedence:
NIX_SSL_CERT_FILE
SSL_CERT_FILE
Default: empty
-
The timeout (in seconds) for receiving data from servers during download. Lix cancels idle downloads after this timeout's duration.
Default:
300
-
The first UID and GID to use for dynamic ID allocation.
Default:
872415232
-
The URL of the Nix store to use for most operations. See
nix help-stores
for supported store types and settings.Default:
auto
-
If set to
true
(default), Lix will use binary substitutes if available. This option can be disabled to force building from source.Default:
true
Deprecated alias:
build-use-substitutes
-
A list of URLs of Nix stores to be used as substituters, separated by whitespace. A substituter is an additional store from which Lix can obtain store objects instead of building them.
Substituters are tried based on their priority value, which each substituter can set independently. Lower value means higher priority. The default is
https://cache.nixos.org
, which has a priority of 40.At least one of the following conditions must be met for Lix to use a substituter:
- The substituter is in the
trusted-substituters
list - The user calling Lix is in the
trusted-users
list
In addition, each store path should be trusted as described in
trusted-public-keys
Default:
https://cache.nixos.org/
Deprecated alias:
binary-caches
- The substituter is in the
-
Whether to call
sync()
before registering a path as valid.Default:
false
-
The system type of the current Lix installation. Lix will only build a given derivation locally when its
system
attribute equals any of the values specified here or inextra-platforms
.The default value is set when Lix itself is compiled for the system it will run on. The following system types are widely used, as Lix is actively supported on these platforms:
x86_64-linux
x86_64-darwin
i686-linux
aarch64-linux
aarch64-darwin
armv6l-linux
armv7l-linux
In general, you do not have to modify this setting. While you can force Lix to run a Darwin-specific
builder
executable on a Linux machine, the result would obviously be wrong.This value is available in the Nix language as
builtins.currentSystem
if theeval-system
configuration option is set as the empty string.Default:
x86_64-linux
-
A set of system “features” supported by this machine, e.g.
kvm
. Derivations can express a dependency on such features through the derivation attributerequiredSystemFeatures
. For example, the attributerequiredSystemFeatures = [ "kvm" ];
ensures that the derivation can only be built on a machine with the
kvm
feature.This setting by default includes
kvm
if/dev/kvm
is accessible,apple-virt
if hardware virtualization is available on macOS, and the pseudo-featuresnixos-test
,benchmark
andbig-parallel
that are used in Nixpkgs to route builds to specific machines.Default: machine-specific
-
The number of seconds a downloaded tarball is considered fresh. If the cached tarball is stale, Lix will check whether it is still up to date using the ETag header. Lix will download a new version if the ETag header is unsupported, or the cached ETag doesn't match.
Setting the TTL to
0
forces Lix to always check if the tarball is up to date.Lix caches tarballs in
$XDG_CACHE_HOME/nix/tarballs
.Files fetched via
NIX_PATH
,fetchGit
,fetchMercurial
,fetchTarball
, andfetchurl
respect this TTL.Default:
3600
-
This option defines the maximum number of seconds that a builder can run. This is useful (for instance in an automated build system) to catch builds that are stuck in an infinite loop but keep writing to their standard output or standard error. It can be overridden using the
--timeout
command line switch.The value
0
means that there is no timeout. This is also the default.Default:
0
Deprecated alias:
build-timeout
-
If set to
true
, the Nix evaluator will trace every function call. Nix will print a log message at the "vomit" level for every function entrance and function exit.function-trace entered undefined position at 1565795816999559622 function-trace exited undefined position at 1565795816999581277 function-trace entered /nix/store/.../example.nix:226:41 at 1565795253249935150 function-trace exited /nix/store/.../example.nix:226:41 at 1565795253249941684
The
undefined position
means the function call is a builtin.Use the
contrib/stack-collapse.py
script distributed with the Nix source code to convert the trace logs in to a format suitable forflamegraph.pl
.Default:
false
-
Whether
builtins.traceVerbose
should trace its first argument when evaluated.Default:
false
-
A whitespace-separated list of public keys.
At least one of the following condition must be met for Lix to accept copying a store object from another Nix store (such as a substituter):
- the store object has been signed using a key in the trusted keys list
- the
require-sigs
option has been set tofalse
- the store object is output-addressed
Default:
cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
Deprecated alias:
binary-cache-public-keys
-
A list of Nix store URLs, separated by whitespace. These are not used by default, but users of the Nix daemon can enable them by specifying
substituters
.Unprivileged users (those set in only
allowed-users
but nottrusted-users
) can pass assubstituters
only those URLs listed intrusted-substituters
.Default: empty
Deprecated alias:
trusted-binary-caches
-
A list of user names, separated by whitespace. These users will have additional rights when connecting to the Nix daemon, such as the ability to specify additional substituters, or to import unsigned NARs.
You can also specify groups by prefixing names with
@
. For instance,@wheel
means all users in thewheel
group.Warning
Adding a user to
trusted-users
is essentially equivalent to giving that user root access to the system. For example, the user can access or replace store path contents that are critical for system security.Default:
root
-
Whether to enable a Darwin-specific hack for dealing with file name collisions.
Default:
false
-
Whether to execute builds inside cgroups. This is only supported on Linux.
Cgroups are required and enabled automatically for derivations that require the
uid-range
system feature.Default:
false
-
Whether to use flake registries to resolve flake references.
Warning This setting is part of an experimental feature.
To change this setting, you need to make sure the corresponding experimental feature,
flakes
, is enabled. For example, include the following innix.conf
:extra-experimental-features = flakes use-registries = ...
Default:
true
-
Whether SQLite should use WAL mode.
Default:
true
-
If set to
true
, Lix will conform to the XDG Base Directory Specification for files in$HOME
. The environment variables used to implement this are documented in the Environment Variables section.Warning This changes the location of some well-known symlinks that Lix creates, which might break tools that rely on the old, non-XDG-conformant locations.
In particular, the following locations change:
Old New ~/.nix-profile
$XDG_STATE_HOME/nix/profile
~/.nix-defexpr
$XDG_STATE_HOME/nix/defexpr
~/.nix-channels
$XDG_STATE_HOME/nix/channels
If you already have Lix installed and are using profiles or channels, you should migrate manually when you enable this option. If
$XDG_STATE_HOME
is not set, use$HOME/.local/state/nix
instead of$XDG_STATE_HOME/nix
. This can be achieved with the following shell commands:nix_state_home=${XDG_STATE_HOME-$HOME/.local/state}/nix mkdir -p $nix_state_home mv $HOME/.nix-profile $nix_state_home/profile mv $HOME/.nix-defexpr $nix_state_home/defexpr mv $HOME/.nix-channels $nix_state_home/channels
Default:
false
-
String appended to the user agent in HTTP requests.
Default: empty
-
Whether to warn about dirty Git/Mercurial trees.
Default:
true
Profiles
A directory that contains links to profiles managed by nix-env
and nix profile
:
$XDG_STATE_HOME/nix/profiles
for regular users$NIX_STATE_DIR/profiles/per-user/root
if the user isroot
A profile is a directory of symlinks to files in the Nix store.
Filesystem layout
Profiles are versioned as follows. When using a profile named path, path is a symlink to path-
N-link
, where N is the version of the profile.
In turn, path-
N-link
is a symlink to a path in the Nix store.
For example:
$ ls -l ~alice/.local/state/nix/profiles/profile*
lrwxrwxrwx 1 alice users 14 Nov 25 14:35 /home/alice/.local/state/nix/profiles/profile -> profile-7-link
lrwxrwxrwx 1 alice users 51 Oct 28 16:18 /home/alice/.local/state/nix/profiles/profile-5-link -> /nix/store/q69xad13ghpf7ir87h0b2gd28lafjj1j-profile
lrwxrwxrwx 1 alice users 51 Oct 29 13:20 /home/alice/.local/state/nix/profiles/profile-6-link -> /nix/store/6bvhpysd7vwz7k3b0pndn7ifi5xr32dg-profile
lrwxrwxrwx 1 alice users 51 Nov 25 14:35 /home/alice/.local/state/nix/profiles/profile-7-link -> /nix/store/mp0x6xnsg0b8qhswy6riqvimai4gm677-profile
Each of these symlinks is a root for the Lix garbage collector.
The contents of the store path corresponding to each version of the profile is a tree of symlinks to the files of the installed packages, e.g.
$ ll -R ~eelco/.local/state/nix/profiles/profile-7-link/
/home/eelco/.local/state/nix/profiles/profile-7-link/:
total 20
dr-xr-xr-x 2 root root 4096 Jan 1 1970 bin
-r--r--r-- 2 root root 1402 Jan 1 1970 manifest.nix
dr-xr-xr-x 4 root root 4096 Jan 1 1970 share
/home/eelco/.local/state/nix/profiles/profile-7-link/bin:
total 20
lrwxrwxrwx 5 root root 79 Jan 1 1970 chromium -> /nix/store/ijm5k0zqisvkdwjkc77mb9qzb35xfi4m-chromium-86.0.4240.111/bin/chromium
lrwxrwxrwx 7 root root 87 Jan 1 1970 spotify -> /nix/store/w9182874m1bl56smps3m5zjj36jhp3rn-spotify-1.1.26.501.gbe11e53b-15/bin/spotify
lrwxrwxrwx 3 root root 79 Jan 1 1970 zoom-us -> /nix/store/wbhg2ga8f3h87s9h5k0slxk0m81m4cxl-zoom-us-5.3.469451.0927/bin/zoom-us
/home/eelco/.local/state/nix/profiles/profile-7-link/share/applications:
total 12
lrwxrwxrwx 4 root root 120 Jan 1 1970 chromium-browser.desktop -> /nix/store/4cf803y4vzfm3gyk3vzhzb2327v0kl8a-chromium-unwrapped-86.0.4240.111/share/applications/chromium-browser.desktop
lrwxrwxrwx 7 root root 110 Jan 1 1970 spotify.desktop -> /nix/store/w9182874m1bl56smps3m5zjj36jhp3rn-spotify-1.1.26.501.gbe11e53b-15/share/applications/spotify.desktop
lrwxrwxrwx 3 root root 107 Jan 1 1970 us.zoom.Zoom.desktop -> /nix/store/wbhg2ga8f3h87s9h5k0slxk0m81m4cxl-zoom-us-5.3.469451.0927/share/applications/us.zoom.Zoom.desktop
…
Each profile version contains a manifest file:
manifest.nix
used bynix-env
.manifest.json
used bynix profile
(experimental).
User profile link
A symbolic link to the user's current profile:
~/.nix-profile
$XDG_STATE_HOME/nix/profile
ifuse-xdg-base-directories
is set totrue
.
By default, this symlink points to:
$XDG_STATE_HOME/nix/profiles/profile
for regular users$NIX_STATE_DIR/profiles/per-user/root/profile
forroot
The PATH
environment variable should include /bin
subdirectory of the profile link (e.g. ~/.nix-profile/bin
) for the user environment to be visible to the user.
The installer sets this up by default, unless you enable use-xdg-base-directories
.
manifest.nix
The manifest file records the provenance of the packages that are installed in a profile managed by nix-env
.
Here is an example of how this file might look like after installing hello
from Nixpkgs:
[{
meta = {
available = true;
broken = false;
changelog =
"https://git.savannah.gnu.org/cgit/hello.git/plain/NEWS?h=v2.12.1";
description = "A program that produces a familiar, friendly greeting";
homepage = "https://www.gnu.org/software/hello/manual/";
insecure = false;
license = {
deprecated = false;
free = true;
fullName = "GNU General Public License v3.0 or later";
redistributable = true;
shortName = "gpl3Plus";
spdxId = "GPL-3.0-or-later";
url = "https://spdx.org/licenses/GPL-3.0-or-later.html";
};
longDescription = ''
GNU Hello is a program that prints "Hello, world!" when you run it.
It is fully customizable.
'';
maintainers = [{
email = "edolstra+nixpkgs@gmail.com";
github = "edolstra";
githubId = 1148549;
name = "Eelco Dolstra";
}];
name = "hello-2.12.1";
outputsToInstall = [ "out" ];
platforms = [
"i686-cygwin"
"x86_64-cygwin"
"x86_64-darwin"
"i686-darwin"
"aarch64-darwin"
"armv7a-darwin"
"i686-freebsd13"
"x86_64-freebsd13"
"aarch64-genode"
"i686-genode"
"x86_64-genode"
"x86_64-solaris"
"js-ghcjs"
"aarch64-linux"
"armv5tel-linux"
"armv6l-linux"
"armv7a-linux"
"armv7l-linux"
"i686-linux"
"m68k-linux"
"microblaze-linux"
"microblazeel-linux"
"mipsel-linux"
"mips64el-linux"
"powerpc64-linux"
"powerpc64le-linux"
"riscv32-linux"
"riscv64-linux"
"s390-linux"
"s390x-linux"
"x86_64-linux"
"mmix-mmixware"
"aarch64-netbsd"
"armv6l-netbsd"
"armv7a-netbsd"
"armv7l-netbsd"
"i686-netbsd"
"m68k-netbsd"
"mipsel-netbsd"
"powerpc-netbsd"
"riscv32-netbsd"
"riscv64-netbsd"
"x86_64-netbsd"
"aarch64_be-none"
"aarch64-none"
"arm-none"
"armv6l-none"
"avr-none"
"i686-none"
"microblaze-none"
"microblazeel-none"
"msp430-none"
"or1k-none"
"m68k-none"
"powerpc-none"
"powerpcle-none"
"riscv32-none"
"riscv64-none"
"rx-none"
"s390-none"
"s390x-none"
"vc4-none"
"x86_64-none"
"i686-openbsd"
"x86_64-openbsd"
"x86_64-redox"
"wasm64-wasi"
"wasm32-wasi"
"x86_64-windows"
"i686-windows"
];
position =
"/nix/store/7niq32w715567hbph0q13m5lqna64c1s-nixos-unstable.tar.gz/nixos-unstable.tar.gz/pkgs/applications/misc/hello/default.nix:34";
unfree = false;
unsupported = false;
};
name = "hello-2.12.1";
out = {
outPath = "/nix/store/260q5867crm1xjs4khgqpl6vr9kywql1-hello-2.12.1";
};
outPath = "/nix/store/260q5867crm1xjs4khgqpl6vr9kywql1-hello-2.12.1";
outputs = [ "out" ];
system = "x86_64-linux";
type = "derivation";
}]
Each element in this list corresponds to an installed package.
It incorporates some attributes of the original derivation, including meta
, name
, out
, outPath
, outputs
, system
.
This information is used by Nix for querying and updating the package.
manifest.json
The manifest file records the provenance of the packages that are installed in a profile managed by nix profile
(experimental).
Here is an example of what the file might look like after installing zoom-us
from Nixpkgs:
{
"version": 1,
"elements": [
{
"active": true,
"attrPath": "legacyPackages.x86_64-linux.zoom-us",
"originalUrl": "flake:nixpkgs",
"storePaths": [
"/nix/store/wbhg2ga8f3h87s9h5k0slxk0m81m4cxl-zoom-us-5.3.469451.0927"
],
"uri": "github:NixOS/nixpkgs/13d0c311e3ae923a00f734b43fd1d35b47d8943a"
},
…
]
}
Each object in the array elements
denotes an installed package and
has the following fields:
-
originalUrl
: The flake reference specified by the user at the time of installation (e.g.nixpkgs
). This is also the flake reference that will be used bynix profile upgrade
. -
uri
: The locked flake reference to whichoriginalUrl
resolved. -
attrPath
: The flake output attribute that provided this package. Note that this is not necessarily the attribute that the user specified, but the one resulting from applying the default attribute paths and prefixes; for instance,hello
might resolve topackages.x86_64-linux.hello
and the empty string topackages.x86_64-linux.default
. -
storePath
: The paths in the Nix store containing the package. -
active
: Whether the profile contains symlinks to the files of this package. If set to false, the package is kept in the Nix store, but is not "visible" in the profile's symlink tree.
Channels
A directory containing symlinks to Nix channels, managed by nix-channel
:
$XDG_STATE_HOME/nix/profiles/channels
for regular users$NIX_STATE_DIR/profiles/per-user/root/channels
forroot
nix-channel
uses a profile to store channels.
This profile contains symlinks to the contents of those channels.
Subscribed channels
The list of subscribed channels is stored in
~/.nix-channels
$XDG_STATE_HOME/nix/channels
ifuse-xdg-base-directories
is set totrue
in the following format:
<url> <name>
...
Default Nix expression
The source for the default Nix expressions used by nix-env
:
~/.nix-defexpr
$XDG_STATE_HOME/nix/defexpr
ifuse-xdg-base-directories
is set totrue
.
It is loaded as follows:
- If the default expression is a file, it is loaded as a Nix expression.
- If the default expression is a directory containing a
default.nix
file, thatdefault.nix
file is loaded as a Nix expression. - If the default expression is a directory without a
default.nix
file, then its contents (both files and subdirectories) are loaded as Nix expressions. The expressions are combined into a single attribute set, each expression under an attribute with the same name as the original file or subdirectory. Subdirectories without adefault.nix
file are traversed recursively in search of more Nix expressions, but the names of these intermediate directories are not added to the attribute paths of the default Nix expression.
Then, the resulting expression is interpreted like this:
- If the expression is an attribute set, it is used as the default Nix expression.
- If the expression is a function, an empty set is passed as argument and the return value is used as the default Nix expression.
For example, if the default expression contains two files, foo.nix
and bar.nix
, then the default Nix expression will be equivalent to
{
foo = import ~/.nix-defexpr/foo.nix;
bar = import ~/.nix-defexpr/bar.nix;
}
The file manifest.nix
is always ignored.
The command nix-channel
places a symlink to the user's current channels profile in this directory.
This makes all subscribed channels available as attributes in the default expression.
User channel link
A symlink that ensures that nix-env
can find your channels:
~/.nix-defexpr/channels
$XDG_STATE_HOME/defexpr/channels
ifuse-xdg-base-directories
is set totrue
.
This symlink points to:
$XDG_STATE_HOME/profiles/channels
for regular users$NIX_STATE_DIR/profiles/per-user/root/channels
forroot
In a multi-user installation, you may also have ~/.nix-defexpr/channels_root
, which links to the channels of the root user.nix-env
: ../nix-env.md
Architecture
This chapter describes how Nix works. It should help users understand why Lix behaves as it does, and it should help developers understand how to modify Lix and how to write similar tools.
Overview
Nix consists of hierarchical layers.
The following concept map shows its main components (rectangles), the objects they operate on (rounded rectangles), and their interactions (connecting phrases):
.----------------.
| Nix expression |----------.
'----------------' |
| passed to
| |
+----------|-------------------|--------------------------------+
| Nix impl.| V |
| (Lix) | +-------------------------+ |
| | | commmand line interface |------. |
| | +-------------------------+ | |
| | | | |
| evaluated by calls manages |
| | | | |
| | V | |
| | +--------------------+ | |
| '-------->| language evaluator | | |
| +--------------------+ | |
| | | |
| produces | |
| | V |
| +----------------------------|------------------------------+ |
| | store | | |
| | referenced by V builds | |
| | .-------------. .------------. .--------------. | |
| | | build input |----->| build plan |----->| build result | | |
| | '-------------' '------------' '--------------' | |
| +-------------------------------------------------|---------+ |
+---------------------------------------------------|-----------+
|
represented as
|
V
.---------------.
| file |
'---------------'
At the top is the command line interface that drives the underlying layers.
The Nix language evaluator transforms Nix expressions into self-contained build plans, which are used to derive build results from referenced build inputs.
The command line interface and Nix expressions are what users deal with most.
Note The Nix language itself does not have a notion of packages or configurations. As far as we are concerned here, the inputs and results of a build plan are just data.
Underlying the command line interface and the Nix language evaluator is the Nix store, a mechanism to keep track of build plans, data, and references between them. It can also execute build plans to produce new data, which are made available to the operating system as files.
A build plan itself is a series of build tasks, together with their build inputs.
Important A build task in Nix is called derivation.
Each build task has a special build input executed as build instructions in order to perform the build. The result of a build task can be input to another build task.
The following data flow diagram shows a build plan for illustration. Build inputs used as instructions to a build task are marked accordingly:
+--------------------------------------------------------------------+
| build plan |
| |
| .-------------. |
| | build input |---------. |
| '-------------' | |
| instructions |
| | |
| v |
| .-------------. .----------. |
| | build input |-->( build task )-------. |
| '-------------' '----------' | |
| instructions |
| | |
| v |
| .-------------. .----------. .--------------. |
| | build input |---------. ( build task )--->| build result | |
| '-------------' | '----------' '--------------' |
| instructions ^ |
| | | |
| v | |
| .-------------. .----------. | |
| | build input |-->( build task )-------' |
| '-------------' '----------' |
| ^ |
| | |
| | |
| .-------------. | |
| | build input |---------' |
| '-------------' |
| |
+--------------------------------------------------------------------+
File System Object
Nix implementations use a simplified model of the file system, which consists of file system objects. Every file system object is one of the following:
-
File
- A possibly empty sequence of bytes for contents
- A single boolean representing the executable permission
-
Directory
Mapping of names to child file system objects
-
An arbitrary string. Nix implementations do not assign any semantics to symbolic links.
File system objects and their children form a tree. A bare file or symlink can be a root file system object.
Nix does not encode any other file system notions such as hard links, permissions, timestamps, or other metadata.
Examples of file system objects
A plain file:
50 B, executable: false
An executable file:
122 KB, executable: true
A symlink:
-> /usr/bin/sh
A directory with contents:
├── bin
│ └── hello: 35 KB, executable: true
└── share
├── info
│ └── hello.info: 36 KB, executable: false
└── man
└── man1
└── hello.1.gz: 790 B, executable: false
A directory that contains a symlink and other directories:
├── bin -> share/go/bin
├── nix-support/
└── share/
Protocols
This chapter documents various developer-facing interfaces provided by Lix.
Lockable HTTP Tarball Protocol
Tarball flakes can be served as regular tarballs via HTTP or the file
system (for file://
URLs). Unless the server implements the Lockable
HTTP Tarball protocol, it is the responsibility of the user to make sure that
the URL always produces the same tarball contents.
An HTTP server can return an "immutable" HTTP URL appropriate for lock
files. This allows users to specify a tarball flake input in
flake.nix
that requests the latest version of a flake
(e.g. https://example.org/hello/latest.tar.gz
), while flake.lock
will record a URL whose contents will not change
(e.g. https://example.org/hello/<revision>.tar.gz
). To do so, the
server must return an HTTP Link
header with the rel
attribute set to
immutable
, as follows:
Link: <flakeref>; rel="immutable"
(Note the required <
and >
characters around flakeref.)
flakeref must be a tarball flakeref. It can contain the tarball flake attributes
narHash
, rev
, revCount
and lastModified
. If narHash
is included, its
value must be the NAR hash of the unpacked tarball (as computed via
nix hash path
). Lix checks the contents of the returned tarball
against the narHash
attribute. The rev
and revCount
attributes
are useful when the tarball flake is a mirror of a fetcher type that
has those attributes, such as Git or GitHub. They are not checked by
Lix.
Link: <https://example.org/hello/442793d9ec0584f6a6e82fa253850c8085bb150a.tar.gz
?rev=442793d9ec0584f6a6e82fa253850c8085bb150a
&revCount=835
&narHash=sha256-GUm8Uh/U74zFCwkvt9Mri4DSM%2BmHj3tYhXUkYpiv31M%3D>; rel="immutable"
(The linebreaks in this example are for clarity and must not be included in the actual response.)
For tarball flakes, the value of the lastModified
flake attribute is
defined as the timestamp of the newest file inside the tarball.
Derivation "ATerm" file format
For historical reasons, derivations are stored on-disk in ATerm format.
Derivations are serialised in one of the following formats:
-
Derive(...)
For all stable derivations.
-
DrvWithVersion(<version-string>, ...)
The only
version-string
s that are in use today are for experimental features:"xp-dyn-drv"
for thedynamic-derivations
experimental feature.
Glossary
-
A description of a build task. The result of a derivation is a store object. Derivations are typically specified in Nix expressions using the
derivation
primitive. These are translated into low-level store derivations (implicitly bynix-env
andnix-build
, or explicitly bynix-instantiate
). -
A derivation represented as a
.drv
file in the store. It has a store path, like any store object.Example:
/nix/store/g946hcz4c8mdvq2g8vxx42z51qb71rvp-git-2.38.1.drv
See
nix derivation show
(experimental) for displaying the contents of store derivations. -
instantiate, instantiation
Translate a derivation into a store derivation.
See
nix-instantiate
. -
realise, realisation
Ensure a store path is valid.
This means either running the
builder
executable as specified in the corresponding derivation, or fetching a pre-built store object from a substituter, or delegating to a remote builder and retrieving the outputs.See
nix-build
andnix-store --realise
.See
nix build
(experimental). -
A derivation which has the
__contentAddressed
attribute set totrue
. -
A derivation which includes the
outputHash
attribute. -
The location in the file system where store objects live. Typically
/nix/store
.From the perspective of the location where Lix is invoked, the Nix store can be referred to as a "local" or a "remote" one:
-
A local store exists on the filesystem of the machine where Lix is invoked. You can use other local stores by passing the
--store
flag to thenix
command. Local stores can be used for building derivations. -
A remote store exists anywhere other than the local filesystem. One example is the
/nix/store
directory on another machine, accessed viassh
or served by thenix-serve
Perl script.
-
-
A local store whose canonical path is anything other than
/nix/store
. -
A binary cache is a Nix store which uses a different format: its metadata and signatures are kept in
.narinfo
files rather than in a Nix database. This different format simplifies serving store objects over the network, but cannot host builds. Examples of binary caches include S3 buckets and the NixOS binary cache. -
The location of a store object in the file system, i.e., an immediate child of the Nix store directory.
Example:
/nix/store/a040m110amc4h71lds2jmr8qrkj2jhxd-git-2.38.1
-
The Nix data model for representing simplified file system data.
See File System Object for details.
-
A store object consists of a file system object, references to other store objects, and other metadata. It can be referred to by a store path.
-
A store object produced by building a non-content-addressed, non-fixed-output derivation.
-
A store object whose store path is determined by its contents. This includes derivations, the outputs of content-addressed derivations, and the outputs of fixed-output derivations.
-
A substitute is a command invocation stored in the Nix database that describes how to build a store object, bypassing the normal build mechanism (i.e., derivations). Typically, the substitute builds the store object by downloading a pre-built version of the store object from some server.
-
An additional store from which Lix can obtain store objects instead of building them. Often the substituter is a binary cache, but any store can serve as substituter.
See the
substituters
configuration option for details. -
The assumption that equal Nix derivations when run always produce the same output. This cannot be guaranteed in general (e.g., a builder can rely on external inputs such as the network or the system time) but the Nix model assumes it.
-
An SQlite database to track references between store objects. This is an implementation detail of the local store.
Default location:
/nix/var/nix/db
. -
A high-level description of software packages and compositions thereof. Deploying software using Lix entails writing Nix expressions for your packages. Nix expressions are translated to derivations that are stored in the Nix store. These derivations can then be built.
-
A store object
O
is said to have a reference to a store objectP
if a store path toP
appears in the contents ofO
.Store objects can refer to both other store objects and themselves. References from a store object to itself are called self-references. References other than a self-reference must not form a cycle.
-
A store path
Q
is reachable from another store pathP
ifQ
is in the closure of the references relation. -
The closure of a store path is the set of store paths that are directly or indirectly “reachable” from that store path; that is, it’s the closure of the path under the references relation. For a package, the closure of its derivation is equivalent to the build-time dependencies, while the closure of its output path is equivalent to its runtime dependencies. For correct deployment it is necessary to deploy whole closures, since otherwise at runtime files could be missing. The command
nix-store --query --requisites
prints out closures of store paths.As an example, if the store object at path
P
contains a reference to a store object at pathQ
, thenQ
is in the closure ofP
. Further, ifQ
referencesR
thenR
is also in the closure ofP
. -
A store object produced by a derivation.
-
The store path to the output of a derivation.
-
The store derivation that produced an output path.
-
A store path is valid if all store objects in its closure can be read from the store.
For a local store, this means:
- The store path leads to an existing store object in that store.
- The store path is listed in the Nix database as being valid.
- All paths in the store path's closure are valid.
-
An automatically generated store object that consists of a set of symlinks to “active” applications, i.e., other store paths. These are generated automatically by
nix-env
. See profiles. -
A symlink to the current user environment of a user, e.g.,
/nix/var/nix/profiles/default
. -
Something that can be realised in the Nix store.
See installables for
nix
commands (experimental) for details. -
A Nix ARchive. This is a serialisation of a path in the Nix store. It can contain regular files, directories and symbolic links. NARs are generated and unpacked using
nix-store --dump
andnix-store --restore
. -
The empty set symbol. In the context of profile history, this denotes a package is not present in a particular version of the profile.
-
The epsilon symbol. In the context of a package, this means the version is empty. More precisely, the derivation does not have a version attribute.
-
Expanding expressions enclosed in
${ }
within a string, path, or attribute name.See String interpolation for details.
-
Not yet stabilized functionality guarded by named experimental feature flags. These flags are enabled or disabled with the
experimental-features
setting.See the contribution guide on the purpose and lifecycle of experimental feaures.
Contributing
Hacking
This section provides some notes on how to hack on Lix. To get the latest version of Lix from Forgejo:
$ git clone https://git.lix.systems/lix-project/lix
$ cd lix
The following instructions assume you already have some version of Nix or Lix installed locally, so that you can use it to set up the development environment. If you don't have it installed, follow the installation instructions.
Building Lix in a development shell
Setting up the development shell
If you are using Lix or Nix with the flakes
and nix-command
experimental features enabled, the following command will build all dependencies and start a shell in which all environment variables are setup for those dependencies to be found:
$ nix develop
That will use the default stdenv for your system. To get a shell with one of the other supported compilation environments, specify its attribute name after a hash (which you may need to quote, depending on your shell):
$ nix develop ".#native-clangStdenvPackages"
For classic Nix, use:
$ nix-shell -A native-clangStdenvPackages
Building from the development shell
As always you may run stdenv's phases by name, e.g.:
$ configurePhase
$ buildPhase
$ checkPhase
$ installPhase
$ installCheckPhase
To build manually, however, use the following:
$ meson setup ./build "--prefix=$out" $mesonFlags
(A simple meson setup ./build
will also build, but will do a different thing, not having the settings from package.nix applied).
$ meson compile -C build
$ meson test -C build --suite=check
$ meson install -C build
$ meson test -C build --suite=installcheck
(Check and installcheck may both be done after install, allowing you to omit the --suite argument entirely, but this is the order package.nix runs them in.)
This will install Lix to $PWD/outputs
, the /bin
of which is prepended to PATH in the development shells.
If the tests fail and Meson helpfully has no output for why, use the --print-error-logs
option to meson test
.
If you change a setting in the buildsystem (i.e., any of the meson.build
files), most cases will automatically regenerate the Meson configuration just before compiling.
Some cases, however, like trying to build a specific target whose name is new to the buildsystem (e.g. meson compile -C build src/libmelt/libmelt.dylib
, when libmelt.dylib
did not exist as a target the last time the buildsystem was generated), then you can reconfigure using new settings but existing options, and only recompiling stuff affected by the changes:
$ meson setup --reconfigure build
Note that changes to the default values in meson.options
or in the default_options :
argument to project()
are not propagated with --reconfigure
.
If you want a totally clean build, you can use:
$ meson setup --wipe build
That will work regardless of if ./build
exists or not.
Specific, named targets may be addressed in meson build -C build <target>
, with the "target ID", if there is one, which is the first string argument passed to target functions that have one, and unrelated to the variable name, e.g.:
libexpr_dylib = library('nixexpr', …)
can be addressed with:
$ meson compile -C build nixexpr
All targets may be addressed as their output, relative to the build directory, e.g.:
$ meson compile -C build src/libexpr/liblixexpr.so
But Meson does not consider intermediate files like object files targets. To build a specific object file, use Ninja directly and specify the output file relative to the build directory:
$ ninja -C build src/libexpr/liblixexpr.so.p/nixexpr.cc.o
To inspect the canonical source of truth on what the state of the buildsystem configuration is, use:
$ meson introspect
Building Lix outside of development shells
To build a release version of Lix for the current operating system and CPU architecture:
$ nix build
You can also build Lix for one of the supported platforms.
Note
You can use
native-ccacheStdenvPackages
to drastically improve rebuild time. By default, ccache keeps artifacts in~/.cache/ccache/
.
Platforms
Lix can be built for various platforms, as specified in flake.nix
:
x86_64-linux
x86_64-darwin
i686-linux
aarch64-linux
aarch64-darwin
armv6l-linux
armv7l-linux
In order to build Lix for a different platform than the one you're currently on, you need a way for your current Nix installation to build code for that platform. Common solutions include remote builders and binary format emulation (only supported on NixOS).
Given such a setup, executing the build only requires selecting the respective attribute.
For example, to compile for aarch64-linux
:
$ nix-build --attr packages.aarch64-linux.default
or for Nix with the flakes
and nix-command
experimental features enabled:
$ nix build .#packages.aarch64-linux.default
Cross-compiled builds are available for ARMv6 (armv6l-linux
) and ARMv7 (armv7l-linux
).
Add more system types to crossSystems
in flake.nix
to bootstrap Nix on unsupported platforms.
Building for multiple platforms at once
It is useful to perform multiple cross and native builds on the same source tree, for example to ensure that better support for one platform doesn't break the build for another. As Lix now uses Meson, out-of-tree builds are supported first class. In the invocation
$ meson setup build
the argument after setup
specifies the directory for this build, conventionally simply called "build", but it may be called anything, and you may run meson setup <somedir>
for as many different directories as you want.
To compile the configuration for a given build directory, pass that build directory to the -C
argument of meson compile
:
$ meson setup some-custom-build
$ meson compile -C some-custom-build
System type
Lix uses a string with the following format to identify the system type or platform it runs on:
<cpu>-<os>[-<abi>]
It is set when Lix is compiled for the given system, and determined by Meson's host_machine.cpu_family()
and host_machine.system()
values.
For historic reasons and backward-compatibility, some CPU and OS identifiers are translated from the GNU Autotools naming convention in meson.build
as follows:
host_machine.cpu_family() | Nix |
---|---|
x86 | i686 |
i686 | i686 |
i686 | i686 |
arm6 | arm6l |
arm7 | arm7l |
linux-gnu* | linux |
linux-musl* | linux |
Compilation environments
Lix can be compiled using multiple environments:
stdenv
: default;gccStdenv
: force the use ofgcc
compiler;clangStdenv
: force the use ofclang
compiler;ccacheStdenv
: enable [ccache], a compiler cache to speed up compilation.
To build with one of those environments, you can use
$ nix build .#nix-ccacheStdenv
for flake-enabled Nix, or
$ nix-build --attr nix-ccacheStdenv
for classic Nix.
You can use any of the other supported environments in place of nix-ccacheStdenv
.
Editor integration
The clangd
LSP server is installed by default in each development shell.
See supported compilation environments and instructions how to set up a shell with flakes or in classic Nix.
Clangd requires a compilation database, which Meson generates by default. After running meson setup
, there will already be a compile_commands.json
file in the build directory.
Some editor configurations may prefer that file to be in the root directory, which you can accomplish with a simple:
$ ln -sf ./build/compile_commands.json ./compile_commands.json
Configure your editor to use the clangd
from the shell, either by running it inside the development shell, or by using nix-direnv and the appropriate editor plugin.
Note
For some editors (e.g. Visual Studio Code), you may need to install a special extension for the editor to interact with
clangd
. Some other editors (e.g. Emacs, Vim) need a plugin to support LSP servers in general (e.g. lsp-mode for Emacs and vim-lsp for vim). Editor-specific setup is typically opinionated, so we will not cover it here in more detail.
Checking links in the manual
The build checks for broken internal links.
This happens late in the process, so nix build
is not suitable for iterating.
To build the manual incrementally, run:
meson compile -C build manual
mdbook-linkcheck
does not implement checking URI fragments yet.
..
variable
..
provides a base path for links that occur in reusable snippets or other documentation that doesn't have a base path of its own.
If a broken link occurs in a snippet that was inserted into multiple generated files in different directories, use ..
to reference the doc/manual/src
directory.
If the ..
literal appears in an error message from the mdbook-linkcheck
tool, the ..
replacement needs to be applied to the generated source file that mentions it.
See existing ..
logic in the [Makefile].
Regular markdown files used for the manual have a base path of their own and they can use relative paths instead of ..
.
API documentation
Doxygen API documentation is available online. You can also build and view it yourself:
# nix build .#hydraJobs.internal-api-docs
# xdg-open ./result/share/doc/nix/internal-api/html/index.html
or inside a nix develop
shell by running:
$ meson compile -C build internal-api-docs
$ xdg-open ./outputs/doc/share/doc/nix/internal-api/html/index.html
Coverage analysis
A coverage analysis report is available online. You can build it yourself:
# nix build .#hydraJobs.coverage
# xdg-open ./result/coverage/index.html
Metrics about the change in line/function coverage over time are also available.
Add a release note
doc/manual/rl-next
contains release notes entries for all unreleased changes.
User-visible changes should come with a release note.
Add an entry
Here's what a complete entry looks like. The file name is not incorporated in the document.
---
synopsis: Basically a title
# 1234 or gh#1234 will refer to CppNix GitHub, fj#1234 will refer to a Lix forgejo issue.
issues: [1234, fj#1234]
# Use this *only* if there is a CppNix pull request associated with this change
prs: 1238
# List of Lix Gerrit changelist numbers; if there is an associated Lix GitHub
# PR, just put in the Gerrit CL number.
cls: [123]
---
Here's one or more paragraphs that describe the change.
- It's markdown
- Add references to the manual using ..
Significant changes should add the following header, which moves them to the top.
significance: significant
Build process
Releases have a precomputed rl-MAJOR.MINOR.md
, and no rl-next.md
.
Set buildUnreleasedNotes = true;
in flake.nix
to build the release notes on the fly.
Running tests
Unit-tests
The unit tests are defined using the googletest and rapidcheck frameworks.
Source and header layout
An example of some files, demonstrating much of what is described below
… ├── src │ ├── libexpr │ │ ├── … │ │ ├── value │ │ │ ├── context.cc │ │ │ └── context.hh │ … … ├── tests │ … │ └── unit │ ├── libcmd │ │ └── args.cc │ ├── libexpr │ │ ├── … │ │ └── value │ │ ├── context.cc │ │ └── print.cc │ ├── libexpr-support │ │ └── tests │ │ ├── libexpr.hh │ │ └── value │ │ ├── context.cc │ │ └── context.hh │ ├── libstore │ │ ├── common-protocol.cc │ │ ├── data │ │ │ ├── libstore │ │ │ │ ├── common-protocol │ │ │ │ │ ├── content-address.bin │ │ │ │ │ ├── drv-output.bin … … … … … …
The unit tests for each Lix library (liblixexpr
, liblixstore
, etc..) live inside a directory src/${library_shortname}/tests
within the directory for the library (src/${library_shortname}
).
The data is in tests/unit/LIBNAME/data/LIBNAME
, with one subdir per library, with the same name as where the code goes.
For example, liblixstore
code is in src/libstore
, and its test data is in tests/unit/libstore/data/libstore
.
The path to the unit test data directory is passed to the unit test executable with the environment variable _NIX_TEST_UNIT_DATA
.
Running tests
You can run the whole testsuite with just test
(see justfile for exact invocation of meson), and if you want to run just one test suite, use just test --suite installcheck functional-init
where installcheck
is the name of the test suite in this case and functional-init
is the name of the test.
To get a list of tests, use meson test -C build --list
(or just test --list
for short).
For installcheck
specifically, first run just install
before running the test suite (this is due to meson limitations that don't let us put a dependency on installing before doing the test).
Finer-grained filtering within a test suite is also possible using the --gtest_filter command-line option to a test suite executable, or the GTEST_FILTER
environment variable.
Unit test support libraries
There are headers and code which are not just used to test the library in question, but also downstream libraries.
For example, we do [property testing] with the rapidcheck library.
This requires writing Arbitrary
"instances", which are used to describe how to generate values of a given type for the sake of running property tests.
Because types contain other types, Arbitrary
"instances" for some type are not just useful for testing that type, but also any other type that contains it.
Downstream types frequently contain upstream types, so it is very important that we share arbitrary instances so that downstream libraries' property tests can also use them.
It is important that these testing libraries don't contain any actual tests themselves. On some platforms they would be run as part of every test executable that uses them, which is redundant. On other platforms they wouldn't be run at all.
Characterization testing
See below for a broader discussion of characterization testing.
Like with the functional characterization, _NIX_TEST_ACCEPT=1
is also used.
For example:
$ _NIX_TEST_ACCEPT=1 just test --suite check libstore-unit-tests
...
../tests/unit/libstore/common-protocol.cc:27: Skipped
Cannot read golden master because another test is also updating it
../tests/unit/libstore/common-protocol.cc:62: Skipped
Updating golden master
../tests/unit/libstore/common-protocol.cc:27: Skipped
Cannot read golden master because another test is also updating it
../tests/unit/libstore/common-protocol.cc:62: Skipped
Updating golden master
...
will regenerate the "golden master" expected result for the liblixstore
characterization tests.
The characterization tests will mark themselves "skipped" since they regenerated the expected result instead of actually testing anything.
Functional tests
The functional tests reside under the tests/functional
directory and are listed in tests/functional/meson.build
.
Each test is a bash script.
Running the whole test suite
Debugging failing functional tests
When a functional test fails, it usually does so somewhere in the middle of the script.
To figure out what's wrong, it is convenient to run the test regularly up to the failing nix
command, and then run that command with a debugger like GDB.
For example, if the script looks like:
foo
nix blah blub
bar
edit it like so:
foo
-nix blah blub
+gdb --args nix blah blub
bar
Then, running the test with ./mk/debug-test.sh
will drop you into GDB once the script reaches that point:
$ ./mk/debug-test.sh tests/functional/${testName}.sh
...
+ gdb blash blub
GNU gdb (GDB) 12.1
...
(gdb)
One can debug the Nix invocation in all the usual ways.
For example, enter run
to start the Nix invocation.
Characterization testing
Occasionally, Lix utilizes a technique called Characterization Testing as part of the functional tests. This technique is to include the exact output/behavior of a former version of Nix in a test in order to check that Lix continues to produce the same behavior going forward.
For example, this technique is used for the language tests, to check both the printed final value if evaluation was successful, and any errors and warnings encountered.
It is frequently useful to regenerate the expected output.
To do that, rerun the failed test(s) with _NIX_TEST_ACCEPT=1
.
For example:
_NIX_TEST_ACCEPT=1 just test --suite installcheck -v functional-lang
An interesting situation to document is the case when these tests are "overfitted". The language tests are, again, an example of this. The expected successful output of evaluation is supposed to be highly stable – we do not intend to make breaking changes to (the stable parts of) the Nix language. However, the errors and warnings during evaluation (successful or not) are not stable in this way. We are free to change how they are displayed at any time.
It may be surprising that we would test non-normative behavior like diagnostic outputs. Diagnostic outputs are indeed not a stable interface, but they still are important to users. By recording the expected output, the test suite guards against accidental changes, and ensure the result (not just the code that implements it) of the diagnostic code paths are under code review. Regressions are caught, and improvements always show up in code review.
To ensure that characterization testing doesn't make it harder to intentionally change these interfaces, there always must be an easy way to regenerate the expected output, as we do with _NIX_TEST_ACCEPT=1
.
Integration tests
The integration tests are defined in the Nix flake under the hydraJobs.tests
attribute.
These tests include everything that needs to interact with external services or run Lix in a non-trivial distributed setup.
Because these tests are expensive and require more than what the standard github-actions setup provides, they only run on the master branch (on https://hydra.nixos.org/jobset/nix/master).
You can run them manually with nix build .#hydraJobs.tests.{testName}
or nix-build -A hydraJobs.tests.{testName}
Installer tests section is outdated and commented out, see https://git.lix.systems/lix-project/lix/issues/33
Magic environment variables
FIXME: maybe this section should be moved elsewhere or turned partially into user docs, but I just need a complete index for now. I actually want to ban people calling getenv without writing documentation, and produce a comprehensive list of env-vars used by Lix and enforce it.
This is a non-exhaustive list of almost all environment variables, magic or not, accepted or used by various parts of the test suite as well as Lix itself. Please add more if you find them.
I looked for these in the testsuite with the following bad regexes:
rg '(?:[^A-Za-z]|^)(_[A-Z][^-\[ }/:");$(]+)' -r '$1' --no-filename --only-matching tests | sort -u > vars.txt
rg '\$\{?([A-Z][^-\[ }/:");]+)' -r '$1' --no-filename --only-matching tests | sort -u > vars.txt
I grepped src/
for get[eE]nv\("
to find the mentions in Lix code.
Used by Lix testing support code
-
_NIX_TEST_ACCEPT
(optional) - Writes out the result of a characterization test as the new expected value. Expected value: 1 -
_NIX_TEST_UNIT_DATA
- The path to the directory for the data for a given unit test suite.Expected value:
tests/unit/libstore/data/libstore
or similar
Used by Lix
-
_NIX_FORCE_HTTP
- Forces file URIs to be treated as remote ones.Used by
src/libfetchers/git.cc
,src/libstore/http-binary-cache-store.cc
,src/libstore/local-binary-cache-store.cc
. Seems to be for forcing Git clones ofgit+file://
URLs, making the HTTP binary cache store acceptfile://
URLs (presumably passing them to curl?), and unknown reasons for the local binary cache.FIXME(jade): is this obscuring a bug in https://git.lix.systems/lix-project/lix/issues/200?
Expected value: 1
-
NIX_ATTRS_SH_FILE
,NIX_ATTRS_JSON_FILE
(output) - Set by Lix builders; seestructuredAttrs
documentation. -
NIX_BIN_DIR
,NIX_STORE_DIR
(or its inconsistently-used old aliasNIX_STORE
),NIX_DATA_DIR
,NIX_LOG_DIR
,NIX_LOG_DIR
,NIX_STATE_DIR
,NIX_CONF_DIR
- Overrides compile-time configuration of various locations used by Lix. Seesrc/libstore/globals.cc
.Expected value: a directory
-
NIX_DAEMON_SOCKET_PATH
(optional) - Overrides the daemon socket path from$NIX_STATE_DIR/daemon-socket/socket
.Expected value: path to a socket
-
NIX_LOG_FD
(output) - An FD number for logs ininternal-json
format to be sent to. Used for, mostly, "setPhase" in nixpkgs setup.sh, but can also be creatively used to print verbose log messages from derivations.Provided value: number corresponding to an FD in the builder
-
NIX_PATH
- Search path for<whatever>
. Documented elsewhere in the manual.Expected value:
:
separated list of things that are not necessarily pointing to filesystem paths -
NIX_REMOTE
- The default value of the Lix settingstore
.Expected value: "daemon", usually. Could be "auto" or any other value acceptable in
store
. -
NIX_BUILD_SHELL
- Documented elsewhere; the shell to invoke withnix-shell
but notnix develop
/nix shell
. The latter ignoring it altogether seems like a bug.Expected value: the path to an executable shell
-
PRINT_PATH
- Undocumented. Used bynix-prefetch-url
as an alternative form of--print-path
. Why??? -
_NIX_IN_TEST
- If present with any value, makesfetchClosure
accept file URLs in addition to HTTP ones. Why is this not_NIX_FORCE_HTTP
??Not used anywhere else.
-
NIX_ALLOW_EVAL
- Used by eval-cache tests to block evaluation if set to0
.Expected value: 1 or 0
-
EDITOR
- Used byeditorFor()
, which has some extremely sketchy editor-detection code for jumping to line numbers. -
LISTEN_FDS
andLISTEN_PID
- Used for systemd socket activation using the systemd socket activation protocol. -
NIX_PAGER
(alternatively,PAGER
) - Used to select a pager for Lix output. Why does this not use libutilgetEnv()
? -
LESS
(output) - Sets the pager settings forless
when invoked by Lix. -
NIX_IGNORE_SYMLINK_STORE
- When set, Lix allows the store to be a symlink. Why do we support this?Apparently someone was using it enough to fix it.
-
NIX_SSL_CERT_FILE
(alternatively,SSL_CERT_FILE
) - Used to set CA certificates for libcurl.Expected value: "/etc/ssl/certs/ca-certificates.crt" or similar
-
NIX_REMOTE_SYSTEMS
- Used to setbuilders
. Can we please deprecate this? -
NIX_USER_CONF_FILES
-:
separated list of config files to load before/nix/nix.conf
under each ofXDG_CONFIG_DIRS
. -
NIX_CONFIG
- Newline separated configuration to load into Lix. -
NIX_GET_COMPLETIONS
- Returns completions. Unsure of the exact format, someone should document it; either way my shell never had any completions.Expected value: number of completions to return.
-
IN_SYSTEMD
- Used to switch the logging format so that systemd gets the correct log levels. I think. -
NIX_HELD_LOCKS
- Not used, what is this for?? We should surely remove it right after searching github? -
GC_INITIAL_HEAP_SIZE
- Used to set the initial heap size, processed by boehmgc. -
NIX_COUNT_CALLS
- Documented elsewhere; prints call counts for profiling purposes. -
NIX_SHOW_STATS
- Documented elsewhere; prints various evaluation statistics like function calls, gc info, and similar. -
NIX_SHOW_STATS_PATH
- Writes those statistics into a file at the given path instead of stdout. Undocumented. -
NIX_SHOW_SYMBOLS
- Dumps the symbol table into the show-stats json output. -
TERM
- Ifdumb
or unset, disables ANSI colour output. -
NO_COLOR
,NOCOLOR
- Disables ANSI colour output. -
_NIX_DEVELOPER_SHOW_UNKNOWN_LOCATIONS
- Highlights unknown locations in errors. -
NIX_PROFILE
- Selects which profilenix-env
will operate on. Documented elsewhere. -
NIX_SSHOPTS
- Options passed tossh(1)
when using a ssh remote store. Incorrectly documented onnix-copy-closure
which is surely not the only place they are used?? -
_NIX_TEST_NO_LSOF
- Used on non-Linux, non-macOS platforms to disable usinglsof
when finding gc roots.Since https://git.lix.systems/lix-project/lix/issues/156 was fixed, this should probably just be removed as it was a bad workaround for a macOS issue.
-
_NIX_TEST_GC_SYNC_1
- Path to a pipe that is used to block the GC briefly to validate invariants from the test suite. -
_NIX_TEST_GC_SYNC_2
- Path to a pipe that is used to block the GC briefly to validate invariants from the test suite. -
_NIX_TEST_FREE_SPACE_FILE
- Path to a file containing a decimal number with the free space that the GC is to believe it has. -
Various XDG vars
-
NIX_DEBUG_SQLITE_TRACES
- Dump all sqlite queries to the log atnotice
level. -
_NIX_TEST_NO_SANDBOX
- Disables actually setting up the sandbox on macOS while leaving other logic the same. Unused on other platforms. -
_NIX_TRACE_BUILT_OUTPUTS
- Dumps all the derivation paths alongside their outputs as lines into a file of the given name.
Used by the functional test framework
-
NIX_DAEMON_PACKAGE
- Runs the test suite against an alternate Nix daemon with the current client.Expected value: something like
/nix/store/...-nix-2.18.2
-
NIX_CLIENT_PACKAGE
- Runs the test suite against an alternate Nix client with the current daemon.Expected value: something like
/nix/store/...-nix-2.18.2
-
NIX_TESTS_CA_BY_DEFAULT
- Pass__contentAddressed
,outputHashMode
andoutputHashAlgo
to builds of some input-addressed derivations in the test suite.Expected value: 1
-
TEST_DATA
- Not an environment variable! This is used in repl characterization tests to refer totests/functional/repl_characterization/data
. More specifically, that path is replaced with the string$TEST_DATA
in output for reproducibility. -
TEST_HOME
(output) - Set to the temporary directory that is set as$HOME
inside the tests, underneath$TEST_ROOT
. -
TEST_ROOT
(output) - Set to the temporary directory that is created for each test to mess with. -
_NIX_TEST_DAEMON_PID
(output) - Used to track the daemon pid to be able to kill it.Provided value: Daemon pid as a base-10 integer, e.g. 2345
This section describes the notion of experimental features, and how it fits into the big picture of the development of Lix.
This section has not been updated for Lix development practices and should not be considered authoritative with respect to those; see the Lix wiki for more up-to-date information as it gets written https://wiki.lix.systems/books/lix-contributors. The technical content on this page is correct.
What are experimental features?
Experimental features are considered unstable, which means that they can be changed or removed at any time. Users must explicitly enable them by toggling the associated experimental feature flags. This allows accessing unstable functionality without unwittingly relying on it.
Experimental feature flags were first introduced in Nix 2.4. Before that, Nix did have experimental features, but they were not guarded by flags and were merely documented as unstable. This was a source of confusion and controversy.
When should a new feature be marked experimental?
A change in the Lix codebase should be guarded by an experimental feature flag if it is considered likely to be reverted or adapted in a backwards-incompatible manner after gathering more experience with it in practice.
Examples:
- Changes to the Nix language, such as new built-ins, syntactic or semantic changes, etc.
- Changes to the command-line interface
Lifecycle of an experimental feature
Experimental features have to be treated on a case-by-case basis. However, the standard workflow for an experimental feature is as follows:
- A new feature is implemented in a pull request
- It is guarded by an experimental feature flag that is disabled by default
- The pull request is merged, the experimental feature ends up in a release
- Using the feature requires explicitly enabling it, signifying awareness of the potential risks
- Being experimental, the feature can still be changed arbitrarily
- The feature can be removed
- The associated experimental feature flag is also removed
- The feature can be declared stable
- The associated experimental feature flag is removed
- There should be enough evidence of users having tried the feature, such as feedback, fixed bugs, demonstrations of how it is put to use
- Maintainers must feel confident that:
- The feature is designed and implemented sensibly, that it is fit for purpose
- Potential interactions are well-understood
- Stabilising the feature will not incur an outsized maintenance burden in the future
The following diagram illustrates the process:
.------.
| idea |
'------'
|
discussion, design, implementation
|
| .-------.
| | |
v v |
.--------------. review
| pull request | |
'--------------' |
| ^ | |
| | '-------'
.---' '----.
| |
merge user feedback,
| (breaking) changes
| |
'---. .----'
| |
v |
+--------------+
.---| experimental |----.
| +--------------+ |
| |
decision to stabilise decision against
| keeping the feature
| |
v v
+--------+ +---------+
| stable | | removed |
+--------+ +---------+
Relation to the RFC process
Experimental features and RFCs both allow approaching substantial changes while minimizing the risk. However they serve different purposes:
- An experimental feature enables developers to iterate on and deliver a new idea without committing to it or requiring a costly long-running fork. It is primarily an issue of implementation, targeting Nix developers and early testers.
- The goal of an RFC is to make explicit all the implications of a change: Explain why it is wanted, which new use-cases it enables, which interface changes it requires, etc. It is primarily an issue of design and communication, targeting the broader community.
This means that experimental features and RFCs are orthogonal mechanisms, and can be used independently or together as needed.
Currently available experimental features
auto-allocate-uids
Allows Nix to automatically pick UIDs for builds, rather than creating
nixbld*
user accounts. See the auto-allocate-uids
setting for details.
ca-derivations
Allow derivations to be content-addressed in order to prevent rebuilds when changes to the derivation do not result in changes to the derivation's output. See __contentAddressed for details.
cgroups
Allows Nix to execute builds inside cgroups. See
the use-cgroups
setting for details.
daemon-trust-override
Allow forcing trusting or not trusting clients with
nix-daemon
. This is useful for testing, but possibly also
useful for various experiments with nix-daemon --stdio
networking.
dynamic-derivations
Allow the use of a few things related to dynamic derivations:
-
"text hashing" derivation outputs, so we can build .drv files.
-
dependencies in derivations on the outputs of derivations that are themselves derivations outputs.
fetch-closure
Enable the use of the fetchClosure
built-in function in the Nix language.
flakes
Enable flakes. See the manual entry for nix flake
for details.
impure-derivations
Allow derivations to produce non-fixed outputs by setting the
__impure
derivation attribute to true
. An impure derivation can
have differing outputs each time it is built.
Example:
derivation {
name = "impure";
builder = /bin/sh;
__impure = true; # mark this derivation as impure
args = [ "-c" "read -n 10 random < /dev/random; echo $random > $out" ];
system = builtins.currentSystem;
}
Each time this derivation is built, it can produce a different
output (as the builder outputs random bytes to $out
). Impure
derivations also have access to the network, and only fixed-output
or other impure derivations can rely on impure derivations. Finally,
an impure derivation cannot also be
content-addressed.
This is a more explicit alternative to using builtins.currentTime
.
nix-command
Enable the new nix
subcommands. See the manual on
nix
for details.
no-url-literals
Disallow unquoted URLs as part of the Nix language syntax. The Nix language allows for URL literals, like so:
$ nix repl
Welcome to Nix 2.15.0. Type :? for help.
nix-repl> http://foo
"http://foo"
But enabling this experimental feature will cause the Nix parser to throw an error when encountering a URL literal:
$ nix repl --extra-experimental-features 'no-url-literals'
Welcome to Nix 2.15.0. Type :? for help.
nix-repl> http://foo
error: URL literals are disabled
at «string»:1:1:
1| http://foo
| ^
While this is currently an experimental feature, unquoted URLs are being deprecated and their usage is discouraged.
The reason is that, as opposed to path literals, URLs have no special properties that distinguish them from regular strings, URLs containing parameters have to be quoted anyway, and unquoted URLs may confuse external tooling.
parse-toml-timestamps
Allow parsing of timestamps in builtins.fromTOML.
read-only-local-store
Allow the use of the read-only
parameter in local store URIs.
recursive-nix
Allow derivation builders to call Nix, and thus build derivations recursively.
Example:
with import <nixpkgs> {};
runCommand "foo"
{
buildInputs = [ nix jq ];
NIX_PATH = "nixpkgs=${<nixpkgs>}";
}
''
hello=$(nix-build -E '(import <nixpkgs> {}).hello.overrideDerivation (args: { name = "recursive-hello"; })')
mkdir -p $out/bin
ln -s $hello/bin/hello $out/bin/hello
''
An important restriction on recursive builders is disallowing arbitrary substitutions. For example, running
nix-store -r /nix/store/kmwd1hq55akdb9sc7l3finr175dajlby-hello-2.10
in the above runCommand
script would be disallowed, as this could
lead to derivations with hidden dependencies or breaking
reproducibility by relying on the current state of the Nix store. An
exception would be if
/nix/store/kmwd1hq55akdb9sc7l3finr175dajlby-hello-2.10
were
already in the build inputs or built by a previous recursive Nix
call.
repl-automation
Makes the repl not use readline/editline, print ENQ (U+0005) when ready for a command, and take commands followed by newline.
repl-flake
Allow passing installables to nix repl
, making its interface consistent with the other experimental commands.
CLI guideline
Goals
Purpose of this document is to provide a clear direction to help design delightful command line experience. This document contains guidelines to follow to ensure a consistent and approachable user experience.
Overview
nix
command provides a single entry to a number of sub-commands that help
developers and system administrators in the life-cycle of a software
project. We particularly need to pay special attention to help and assist new
users of Lix.
Naming the COMMANDS
Words matter. Naming is an important part of the usability. Users will be interacting with Lix on a regular basis so we should name things for ease of understanding.
We recommend following the Principle of Least
Astonishment.
This means that you should never use acronyms or abbreviations unless they
are commonly used in other tools (e.g. nix init
). And if the command name is
too long (> 10-12 characters) then shortening it makes sense (e.g.
“prioritization” → “priority”).
Commands should follow a noun-verb dialogue. Although noun-verb formatting
seems backwards from a speaking perspective (i.e. nix store copy
vs. nix copy store
) it allows us to organize commands the same way users think about
completing an action (the group first, then the command).
Naming rules
Rules are there to guide you by limiting your options. But not everything can
fit the rules all the time. In those cases document the exceptions in Appendix
1: Commands naming exceptions and
provide reason. The rules want to force a Nix developer to look, not just at
the command at hand, but also the command in a full context alongside other
nix
commands.
$ nix [<GROUP>] <COMMAND> [<ARGUMENTS>] [<OPTIONS>]
GROUP
,COMMAND
,ARGUMENTS
andOPTIONS
should be lowercase and in a singular form.GROUP
should be a NOUN.COMMAND
should be a VERB.ARGUMENTS
andOPTIONS
are discussed in Input section.
Classification
Some commands are more important, some less. While we want all of our commands to be perfect we can only spend limited amount of time testing and improving them.
This classification tries to separate commands in 3 categories in terms of their importance in regards to the new users. Users who are likely to be impacted the most by bad user experience.
-
Main commands
Commands used for our main use cases and most likely used by new users. We expect attention to details, such as:
- Proper use of colors, emojis and aligning of text.
- Autocomplete of options.
- Show next possible steps.
- Showing some “tips” when running logs running tasks (eg. building / downloading) in order to teach users interesting bits of Nix ecosystem.
- Help pages to be as good as we can write them pointing to external documentation and tutorials for more.
Examples of such commands:
nix init
,nix develop
,nix build
,nix run
, ... -
Infrequently used commands
From infrequently used commands we expect less attention to details, but still some:
- Proper use of colors, emojis and aligning of text.
- Autocomplete of options.
Examples of such commands:
nix doctor
,nix edit
,nix eval
, ... -
Utility and scripting commands
Commands that expose certain internal functionality of
nix
, mostly used by other scripts.- Autocomplete of options.
Examples of such commands:
nix store copy
,nix hash base16
,nix store ping
, ...
Help is essential
Help should be built into your command line so that new users can gradually discover new features when they need them.
Looking for help
Since there is no standard way how user will look for help we rely on ways help
is provided by commonly used tools. As a guide for this we took git
and
whenever in doubt look at it as a preferred direction.
The rules are:
- Help is shown by using
--help
orhelp
command (egnix
--``help
ornix help
). - For non-COMMANDs (eg.
nix
--``help
andnix store
--``help
) we show a summary of most common use cases. Summary is presented on the STDOUT without any use of PAGER. - For COMMANDs (eg.
nix init
--``help
ornix help init
) we display the man page of that command. By default the PAGER is used (as ingit
). - At the end of either summary or man page there should be an URL pointing to an online version of more detailed documentation.
- The structure of summaries and man pages should be the same as in
git
.
Anticipate where help is needed
Even better then requiring the user to search for help is to anticipate and predict when user might need it. Either because the lack of discoverability, typo in the input or simply taking the opportunity to teach the user of interesting - but less visible - details.
Shell completion
This type of help is most common and almost expected by users. We need to
provide the best shell completion for bash
, zsh
and fish
.
Completion needs to be context aware, this mean when a user types:
$ nix build n<TAB>
we need to display a list of flakes starting with n
.
Wrong input
As we all know we humans make mistakes, all the time. When a typo - intentional or unintentional - is made, we should prompt for closest possible options or point to the documentation which would educate user to not make the same errors. Here are few examples:
In first example we prompt the user for typing wrong command name:
$ nix int
------------------------------------------------------------------------
Error! Command `int` not found.
------------------------------------------------------------------------
Did you mean:
|> nix init
|> nix input
Sometimes users will make mistake either because of a typo or simply because of lack of discoverability. Our handling of this cases needs to be context sensitive.
$ nix init --template=template#pyton
------------------------------------------------------------------------
Error! Template `template#pyton` not found.
------------------------------------------------------------------------
Initializing Nix project at `/path/to/here`.
Select a template for you new project:
|> template#python
template#python-pip
template#python-poetry
Next steps
It can be invaluable to newcomers to show what a possible next steps and what is the usual development workflow with Lix. For example:
$ nix init --template=template#python
Initializing project `template#python`
in `/home/USER/dev/new-project`
Next steps
|> nix develop -- to enter development environment
|> nix build -- to build your project
Educate the user
We should take any opportunity to educate users, but at the same time we must be very very careful to not annoy users. There is a thin line between being helpful and being annoying.
An example of educating users might be to provide Tips in places where they are waiting.
$ nix build
Started building my-project 1.2.3
Downloaded python3.8-poetry 1.2.3 in 5.3 seconds
Downloaded python3.8-requests 1.2.3 in 5.3 seconds
------------------------------------------------------------------------
Press `v` to increase logs verbosity
|> `?` to see other options
------------------------------------------------------------------------
Learn something new with every build...
|> See last logs of a build with `nix log --last` command.
------------------------------------------------------------------------
Evaluated my-project 1.2.3 in 14.43 seconds
Downloading [12 / 200]
|> firefox 1.2.3 [#########> ] 10Mb/s | 2min left
Building [2 / 20]
|> glibc 1.2.3 -> buildPhase: <last log line>
------------------------------------------------------------------------
Now Learn part of the output is where you educate users. You should only show it when you know that a build will take some time and not annoy users of the builds that take only few seconds.
Every feature like this should go through an intensive review and testing to collect as much feedback as possible and to fine tune every little detail. If done right this can be an awesome features beginners and advance users will love, but if not done perfectly it will annoy users and leave bad impression.
Input
Input to a command is provided via ARGUMENTS
and OPTIONS
.
ARGUMENTS
represent a required input for a function. When choosing to use
ARGUMENTS
over OPTIONS
please be aware of the downsides that come with it:
- User will need to remember the order of
ARGUMENTS
. This is not a problem if there is only oneARGUMENT
. - With
OPTIONS
it is possible to provide much better auto completion. - With
OPTIONS
it is possible to provide much better error message. - Using
OPTIONS
it will mean there is a little bit more typing.
We don’t discourage the use of ARGUMENTS
, but simply want to make every
developer consider the downsides and choose wisely.
Naming the OPTIONS
The only naming convention - apart from the ones mentioned in Naming the
COMMANDS
section is how flags are named.
Flags are a type of OPTION
that represent an option that can be turned ON of
OFF. We can say flags are boolean type of **OPTION**
.
Here are few examples of flag OPTIONS
:
--colors
vs.--no-colors
(showing colors in the output)--emojis
vs.--no-emojis
(showing emojis in the output)
Prompt when input not provided
For main commands (as per classification) we want command
to improve the discoverability of possible input. A new user will most likely
not know which ARGUMENTS
and OPTIONS
are required or which values are
possible for those options.
In case the user does not provide the input or they provide wrong input, rather than show the error, prompt a user with an option to find and select correct input (see examples).
Prompting is of course not required when TTY is not attached to STDIN. This would mean that scripts won't need to handle prompt, but rather handle errors.
A place to use prompt and provide user with interactive select
$ nix init
Initializing Nix project at `/path/to/here`.
Select a template for you new project:
|> py
template#python-pip
template#python-poetry
[ Showing 2 templates from 1345 templates ]
Another great place to add prompts are confirmation dialogues for dangerous
actions. For example when adding new substitutor via OPTIONS
or via
flake.nix
we should prompt - for the first time - and let user review what is
going to happen.
$ nix build --option substitutors https://cache.example.org
------------------------------------------------------------------------
Warning! A security related question needs to be answered.
------------------------------------------------------------------------
The following substitutors will be used to in `my-project`:
- https://cache.example.org
Do you allow `my-project` to use above mentioned substitutors?
[y/N] |> y
Output
Terminal output can be quite limiting in many ways. Which should force us to think about the experience even more. As with every design the output is a compromise between being terse and being verbose, between showing help to beginners and annoying advance users. For this it is important that we know what are the priorities.
Lix command line should be first and foremost written with beginners in mind. But users won't stay beginners for long and what was once useful might quickly become annoying. There is no golden rule that we can give in this guideline that would make it easier how to draw a line and find best compromise.
What we would encourage is to build prototypes, do some user testing and collect feedback. Then repeat the cycle few times.
First design the happy path and only after your iron it out, continue to work
on edge cases (handling and displaying errors, changes of the output by
certain OPTIONS
, etc…)
Follow best practices
Needless to say we Lix must be a good citizen and follow best practices in command line.
In short: STDOUT is for output, STDERR is for (human) messaging.
STDOUT and STDERR provide a way for you to output messages to the user while also allowing them to redirect content to a file. For example:
$ nix build > build.txt
------------------------------------------------------------------------
Error! Attribute `bin` missing at (1:94) from string.
------------------------------------------------------------------------
1| with import <nixpkgs> { }; (pkgs.runCommandCC or pkgs.runCommand) "shell" { buildInputs = [ (surge.bin) ]; } ""
Because this warning is on STDERR, it doesn’t end up in the file.
But not everything on STDERR is an error though. For example, you can run nix build
and collect logs in a file while still seeing the progress.
$ nix build > build.txt
Evaluated 1234 files in 1.2 seconds
Downloaded python3.8-poetry 1.2.3 in 5.3 seconds
Downloaded python3.8-requests 1.2.3 in 5.3 seconds
------------------------------------------------------------------------
Press `v` to increase logs verbosity
|> `?` to see other options
------------------------------------------------------------------------
Learn something new with every build...
|> See last logs of a build with `nix log --last` command.
------------------------------------------------------------------------
Evaluated my-project 1.2.3 in 14.43 seconds
Downloading [12 / 200]
|> firefox 1.2.3 [#########> ] 10Mb/s | 2min left
Building [2 / 20]
|> glibc 1.2.3 -> buildPhase: <last log line>
------------------------------------------------------------------------
Errors (WIP)
TODO: Once we have implementation for the happy path then we will think how to present errors.
Not only for humans
Terse, machine-readable output formats can also be useful but shouldn’t get in
the way of making beautiful CLI output. When needed, commands should offer a
--json
flag to allow users to easily parse and script the CLI.
When TTY is not detected on STDOUT we should remove all design elements (no colors, no emojis and using ASCII instead of Unicode symbols). The same should happen when TTY is not detected on STDERR. We should not display progress / status section, but only print warnings and errors.
Returning future proof JSON
The schema of JSON output should allow for backwards compatible extension. This section explains how to achieve this.
Two definitions are helpful here, because while JSON only defines one "key-value" object type, we use it to cover two use cases:
- dictionary: a map from names to value that all have the same type. In
C++ this would be a
std::map
with string keys. - record: a fixed set of attributes each with their own type. In C++, this
would be represented by a
struct
.
It is best not to mix these use cases, as that may lead to incompatibilities when the schema changes. For example, adding a record field to a dictionary breaks consumers that assume all JSON object fields to have the same meaning and type.
This leads to the following guidelines:
-
The top-level (root) value must be a record.
Otherwise, one can not change the structure of a command's output.
-
The value of a dictionary item must be a record.
Otherwise, the item type can not be extended.
-
List items should be records.
Otherwise, one can not change the structure of the list items.
If the order of the items does not matter, and each item has a unique key that is a string, consider representing the list as a dictionary instead. If the order of the items needs to be preserved, return a list of records.
-
Streaming JSON should return records.
An example of a streaming JSON format is JSON lines, where each line represents a JSON value. These JSON values can be considered top-level values or list items, and they must be records.
Examples
This is bad, because all keys must be assumed to be store implementations:
{
"local": { ... },
"remote": { ... },
"http": { ... }
}
This is good, because the it is extensible at the root, and is somewhat self-documenting:
{
"storeTypes": { "local": { ... }, ... },
"pluginSupport": true
}
While the dictionary of store types seems like a very complete response at first, a use case may arise that warrants returning additional information. For example, the presence of plugin support may be crucial information for a client to proceed when their desired store type is missing.
The following representation is bad because it is not extensible:
{ "outputs": [ "out" "bin" ] }
However, simply converting everything to records is not enough, because the order of outputs must be preserved:
{ "outputs": { "bin": {}, "out": {} } }
The first item is the default output. Deriving this information from the outputs ordering is not great, but this is how Lix currently happens to work. While it is possible for a JSON parser to preserve the order of fields, we can not rely on this capability to be present in all JSON libraries.
This representation is extensible and preserves the ordering:
{ "outputs": [ { "outputName": "out" }, { "outputName": "bin" } ] }
Dialog with the user
CLIs don't always make it clear when an action has taken place. For every action a user performs, your CLI should provide an equal and appropriate reaction, clearly highlighting the what just happened. For example:
$ nix build
Downloaded python3.8-poetry 1.2.3 in 5.3 seconds
Downloaded python3.8-requests 1.2.3 in 5.3 seconds
...
Success! You have successfully built my-project.
$
Above command clearly states that command successfully completed. And in case
of nix build
, which is a command that might take some time to complete, it is
equally important to also show that a command started.
Text alignment
Text alignment is the number one design element that will present all of the Nix commands as a family and not as separate tools glued together.
The format we should follow is:
$ nix COMMAND
VERB_1 NOUN and other words
VERB__1 NOUN and other words
|> Some details
Few rules that we can extract from above example:
- Each line should start at least with one space.
- First word should be a VERB and must be aligned to the right.
- Second word should be a NOUN and must be aligned to the left.
- If you can not find a good VERB / NOUN pair, don’t worry make it as understandable to the user as possible.
- More details of each line can be provided by
|>
character which is serving as the first word when aligning the text
Don’t forget you should also test your terminal output with colors and emojis
off (--no-colors --no-emojis
).
Dim / Bright
After comparing few terminals with different color schemes we would recommend to avoid using dimmed text. The difference from the rest of the text is very little in many terminal and color scheme combinations. Sometimes the difference is not even notable, therefore relying on it wouldn’t make much sense.
The bright text is much better supported across terminals and color schemes. Most of the time the difference is perceived as if the bright text would be bold.
Colors
Humans are already conditioned by society to attach certain meaning to certain colors. While the meaning is not universal, a simple collection of colors is used to represent basic emotions.
Colors that can be used in output
- Red = error, danger, stop
- Green = success, good
- Yellow/Orange = proceed with caution, warning, in progress
- Blue/Magenta = stability, calm
While colors are nice, when command line is used by machines (in automation
scripts) you want to remove the colors. There should be a global --no-colors
option that would remove the colors.
Special (Unicode) characters
Most of the terminal have good support for Unicode characters and you should
use them in your output by default. But always have a backup solution that is
implemented only with ASCII characters and will be used when --ascii
option
is going to be passed in. Please make sure that you test your output also
without Unicode characters
More they showing all the different Unicode characters it is important to establish common set of characters that we use for certain situations.
Emojis
Emojis help channel emotions even better than text, colors and special characters.
We recommend keeping the set of emojis to a minimum. This will enable each emoji to stand out more.
As not everybody is happy about emojis we should provide an --no-emojis
option to disable them. Please make sure that you test your output also without
emojis.
Tables
All commands that are listing certain data can be implemented in some sort of a
table. It’s important that each row of your output is a single ‘entry’ of data.
Never output table borders. It’s noisy and a huge pain for parsing using other
tools such as grep
.
Be mindful of the screen width. Only show a few columns by default with the table header, for more the table can be manipulated by the following options:
--no-headers
: Show column headers by default but allow to hide them.--columns
: Comma-separated list of column names to add.--sort
: Allow sorting by column. Allow inverse and multi-column sort as well.
Interactive output
Interactive output was selected to be able to strike the balance between beginners and advance users. While the default output will target beginners it can, with a few key strokes, be changed into and advance introspection tool.
Progress
For longer running commands we should provide and overview the progress.
This is shown best in nix build
example:
$ nix build
Started building my-project 1.2.3
Downloaded python3.8-poetry 1.2.3 in 5.3 seconds
Downloaded python3.8-requests 1.2.3 in 5.3 seconds
------------------------------------------------------------------------
Press `v` to increase logs verbosity
|> `?` to see other options
------------------------------------------------------------------------
Learn something new with every build...
|> See last logs of a build with `nix log --last` command.
------------------------------------------------------------------------
Evaluated my-project 1.2.3 in 14.43 seconds
Downloading [12 / 200]
|> firefox 1.2.3 [#########> ] 10Mb/s | 2min left
Building [2 / 20]
|> glibc 1.2.3 -> buildPhase: <last log line>
------------------------------------------------------------------------
Search
Use a fzf
like fuzzy search when there are multiple options to choose from.
$ nix init
Initializing Nix project at `/path/to/here`.
Select a template for you new project:
|> py
template#python-pip
template#python-poetry
[ Showing 2 templates from 1345 templates ]
Prompt
In some situations we need to prompt the user and inform the user about what is going to happen.
$ nix build --option substitutors https://cache.example.org
------------------------------------------------------------------------
Warning! A security related question needs to be answered.
------------------------------------------------------------------------
The following substitutors will be used to in `my-project`:
- https://cache.example.org
Do you allow `my-project` to use above mentioned substitutors?
[y/N] |> y
Verbosity
There are many ways that you can control verbosity.
Verbosity levels are:
ERROR
(level 0)WARN
(level 1)NOTICE
(level 2)INFO
(level 3)TALKATIVE
(level 4)CHATTY
(level 5)DEBUG
(level 6)VOMIT
(level 7)
The default level that the command starts is ERROR
. The simplest way to
increase the verbosity by stacking -v
option (eg: -vvv == level 3 == INFO
).
There are also two shortcuts, --debug
to run in DEBUG
verbosity level and
--quiet
to run in ERROR
verbosity level.
Appendix 1: Commands naming exceptions
nix init
and nix repl
are well established
C++ style guide
Some miscellaneous notes on how we write C++. Formatting we hope to eventually normalize automatically, so this section is free to just discuss higher-level concerns.
The *-impl.hh
pattern
Let's start with some background info first. Headers, are supposed to contain declarations, not definitions. This allows us to change a definition without changing the declaration, and have a very small rebuild during development. Templates, however, need to be specialized to use-sites. Absent fancier techniques, templates require that the definition, not just mere declaration, must be available at use-sites in order to make that specialization on the fly as part of compiling those use-sites. Making definitions available like that means putting them in headers, but that is unfortunately means we get all the extra rebuilds we want to avoid by just putting declarations there as described above.
The *-impl.hh
pattern is a ham-fisted partial solution to this problem.
It constitutes:
-
Declaring items only in the main
foo.hh
, including templates. -
Putting template definitions in a companion
foo-impl.hh
header.
Most C++ developers would accompany this by having foo.hh
include foo-impl.hh
, to ensure any file getting the template declarations also got the template definitions.
But we've found not doing this has some benefits and fewer than imagined downsides.
The fact remains that headers are rarely as minimal as they could be;
there is often code that needs declarations from the headers but not the templates within them.
With our pattern where foo.hh
doesn't include foo-impl.hh
, that means they can just include foo.hh
Code that needs both just includes foo.hh
and foo-impl.hh
.
This does make linking error possible where something forgets to include foo-impl.hh
that needs it, but those are build-time only as easy to fix.
Lix Release Notes
Lix 2.90 "Vanilla Ice Cream" (2024-07-10)
Lix 2.90.0 (2024-07-10)
Breaking Changes
-
Deprecate the online flake registries and vendor the default registry fj#183 fj#110 fj#116 #8953 #9087 cl/1127
The online flake registry https://channels.nixos.org/flake-registry.json is not pinned in any way, and the targets of the indirections can both update or change entirely at any point. Furthermore, it is refetched on every use of a flake reference, even if there is a local flake reference, and even if you are offline (which breaks).
For now, we deprecate the (any) online flake registry, and vendor a copy of the current online flake registry. This makes it work offline, and ensures that it won't change in the future.
Many thanks to julia for this.
-
Enforce syscall filtering and no-new-privileges on Linux cl/1063
In order to improve consistency of the build environment, system call filtering and no-new-privileges are now unconditionally enabled on Linux. The
filter-syscalls
andallow-new-privileges
options which could be used to disable these features under some circumstances have been removed.In order to support building on architectures without libseccomp support, the option to disable syscall filtering at build time remains. However, other uses of this option are heavily discouraged, since it would reduce the security of the sandbox substantially.
Many thanks to alois31 for this.
-
Overhaul
nix flake update
andnix flake lock
UX #8817The interface for creating and updating lock files has been overhauled:
-
nix flake lock
only creates lock files and adds missing inputs now. It will never update existing inputs. -
nix flake update
does the same, but will update inputs. -
Passing no arguments will update all inputs of the current flake, just like it already did.
-
Passing input names as arguments will ensure only those are updated. This replaces the functionality of
nix flake lock --update-input
-
To operate on a flake outside the current directory, you must now pass
--flake path/to/flake
. -
The flake-specific flags
--recreate-lock-file
and--update-input
have been removed from all commands operating on installables. They are superceded bynix flake update
.
Many thanks to iFreilicht, Lunaphied, and Théophane Hufschmitt for this.
-
-
nix profile
now allows referring to elements by human-readable name, and no longer accepts indices #8678 cl/978 cl/980nix profile
now uses names to refer to installed packages when runninglist
,remove
orupgrade
as opposed to indices. Indices have been removed. Profile element names are generated when a package is installed and remain the same until the package is removed.Warning: The
manifest.nix
file used to record the contents of profiles has changed. Lix will automatically upgrade profiles to the new version when you modify the profile. After that, the profile can no longer be used by older versions of Lix.Many thanks to iFreilicht, Qyriad, and Eelco Dolstra for this.
-
builtins.nixVersion
andbuiltins.langVersion
return fixed values cl/558 cl/1144builtins.nixVersion
now returns a fixed value"2.18.3-lix"
.builtins.langVersion
returns a fixed value6
, matching CppNix 2.18.This prevents feature detection assuming that features that exist in Nix post-Lix-branch-off might exist, even though the Lix version is greater than the Nix version.
In the future, check for builtins for feature detection. If a feature cannot be detected by those means, please file a Lix bug.
Many thanks to jade for this.
-
Rename all the libraries nixexpr, nixstore, etc to lixexpr, lixstore, etc
The Lix C++ API libraries have had the following changes:
- Includes moved from
include/nix/
toinclude/lix/
pkg-config
files renamed fromnix-expr
tolix-expr
and so on.- Libraries renamed from
libnixexpr.so
toliblixexpr.so
and so on.
There are other changes between Nix 2.18 and Lix, since these APIs are not stable. However, this change in particular is a deliberate compatibility break to force downstreams linking to Lix to specifically handle Lix and avoid Lix accidentally getting ensnared in compatibility code for newer CppNix.
Migration path:
- expr.hh -> lix/libexpr/expr.hh
- nix/config.h -> lix/config.h
To apply this migration automatically, remove all
<nix/>
from includes, so#include <nix/expr.hh>
->#include <expr.hh>
. Then, the correct paths will be resolved from the tangled mess, and the clang-tidy automated fix will work.Then run the following for out of tree projects (header filter is set to only fix instances in headers in
../src
relative to the compiler's working directory, as would be the case in nix-eval-jobs or other things built with meson, e.g.):lix_root=$HOME/lix (cd $lix_root/clang-tidy && nix develop -c 'meson setup build && ninja -C build') run-clang-tidy -checks='-*,lix-fixincludes' -load=$lix_root/clang-tidy/build/liblix-clang-tidy.so -p build/ -header-filter '\.\./src/.*\.h' -fix src
Many thanks to jade for this.
- Includes moved from
Features
-
Experimental REPL support for documentation comments using
:doc
cl/564Using
:doc
in the REPL now supports showing documentation comments when defined on a function.Previously this was only able to document builtins, however it now will show comments defined on a lambda as well.
This support is experimental and relies on an embedded version of nix-doc.
The logic also supports limited Markdown formatting of doccomments and should easily support any RFC 145 compatible documentation comments in addition to simple commented documentation.
-
Add
repl-overlays
option #10203 cl/504A
repl-overlays
option has been added, which specifies files that can overlay and modify the top-level bindings innix repl
. For example, with the following contents in~/.config/nix/repl.nix
:info: final: prev: let optionalAttrs = predicate: attrs: if predicate then attrs else {}; in optionalAttrs (prev ? legacyPackages && prev.legacyPackages ? ${info.currentSystem}) { pkgs = prev.legacyPackages.${info.currentSystem}; }
We can run
nix repl
and usepkgs
to refer tolegacyPackages.${currentSystem}
:$ nix repl --repl-overlays ~/.config/nix/repl.nix nixpkgs Lix 2.90.0 Type :? for help. Loading installable 'flake:nixpkgs#'... Added 5 variables. Loading 'repl-overlays'... Added 6 variables. nix-repl> pkgs.bash «derivation /nix/store/g08b5vkwwh0j8ic9rkmd8mpj878rk62z-bash-5.2p26.drv»
Many thanks to wiggles for this.
-
Add a builtin
addDrvOutputDependencies
#7910 #9216This builtin allows taking a
drvPath
-like string and turning it into a string with context such that, when it lands in a derivation, it will create dependencies on all the outputs in its closure (!). AlthoughdrvPath
does this today, this builtin starts forming a path to migrate to makingdrvPath
have a more normal and less surprising string context behaviour (see linked issue and PR for more details).Many thanks to John Ericson and eldritch horrors for this.
-
Enter the
--debugger
whenbuiltins.trace
is called ifdebugger-on-trace
is set #9914If the
debugger-on-trace
option is set and--debugger
is given,builtins.trace
calls will behave similarly tobuiltins.break
and will enter the debug REPL. This is useful for determining where warnings are being emitted from.Many thanks to wiggles for this.
-
Add an option
enable-core-dumps
that enables core dumps from builds cl/1088In the past, Lix disabled core dumps by setting the soft
RLIMIT_CORE
to 0 unconditionally. Although this rlimit could be altered from the builder since it is just the soft limit, this was kind of annoying to do. By passing--option enable-core-dumps true
to an offending build, one can now cause the core dumps to be handled by the system in the normal way (winding up incoredumpctl
, say, on Linux).Many thanks to julia for this.
-
Add new
eval-system
setting #4093Add a new
eval-system
option. Unlikesystem
, it just overrides the value ofbuiltins.currentSystem
. This is more useful than overridingsystem
, because you can build these derivations on remote builders which can work on the given system. In contrast,system
also effects scheduling which will cause Lix to build those derivations locally even if that doesn't make sense.eval-system
only takes effect if it is non-empty. If empty (the default)system
is used as before, so there is no breakage.Many thanks to matthewbauer and eldritch horrors for this.
-
add
--store-path
argument tonix upgrade-nix
, to manually specify the Nix to upgrade to cl/953nix upgrade-nix
by default downloads a manifest to find the new Nix version to upgrade to, but now you can specify--store-path
to upgrade Nix to an arbitrary version from the Nix store.Many thanks to Qyriad for this.
Improvements
-
nix flake check
logs the checks #8882 #8893 cl/259 cl/260 cl/261 cl/262nix flake check
now logs the checks it runs and the derivations it evaluates:$ nix flake check -v evaluating flake... checking flake output 'checks'... checking derivation 'checks.aarch64-darwin.ghciwatch-tests'... derivation evaluated to /nix/store/nh7dlvsrhds4cxl91mvgj4h5cbq6skmq-ghciwatch-test-0.3.0.drv checking derivation 'checks.aarch64-darwin.ghciwatch-clippy'... derivation evaluated to /nix/store/9cb5a6wmp6kf6hidqw9wphidvb8bshym-ghciwatch-clippy-0.3.0.drv checking derivation 'checks.aarch64-darwin.ghciwatch-doc'... derivation evaluated to /nix/store/8brdd3jbawfszpbs7vdpsrhy80as1il8-ghciwatch-doc-0.3.0.drv checking derivation 'checks.aarch64-darwin.ghciwatch-fmt'... derivation evaluated to /nix/store/wjhs0l1njl5pyji53xlmfjrlya0wmz8p-ghciwatch-fmt-0.3.0.drv checking derivation 'checks.aarch64-darwin.ghciwatch-audit'... derivation evaluated to /nix/store/z0mps8dyj2ds7c0fn0819y5h5611033z-ghciwatch-audit-0.3.0.drv checking flake output 'packages'... checking derivation 'packages.aarch64-darwin.default'... derivation evaluated to /nix/store/41abbdyglw5x9vcsvd89xan3ydjf8d7r-ghciwatch-0.3.0.drv checking flake output 'apps'... checking flake output 'devShells'... checking derivation 'devShells.aarch64-darwin.default'... derivation evaluated to /nix/store/bc935gz7dylzmcpdb5cczr8gngv8pmdb-nix-shell.drv running 5 flake checks... warning: The check omitted these incompatible systems: aarch64-linux, x86_64-darwin, x86_64-linux Use '--all-systems' to check all.
Many thanks to wiggles, Raito Bezarius, and eldritch horrors for this.
-
Add an option
always-allow-substitutes
to ignoreallowSubstitutes
in derivations #8047You can set this setting to force a system to always allow substituting even trivial derivations like
pkgs.writeText
. This is useful fornix-fast-build --skip-cached
and similar to be able to also ignore trivial derivations.Many thanks to lovesegfault and eldritch horrors for this.
-
Concise error printing in
nix repl
#9928 cl/811Previously, if an element of a list or attribute set threw an error while evaluating,
nix repl
would print the entire error (including source location information) inline. This output was clumsy and difficult to parse:nix-repl> { err = builtins.throw "uh oh!"; } { err = «error: … while calling the 'throw' builtin at «string»:1:9: 1| { err = builtins.throw "uh oh!"; } | ^ error: uh oh!»; }
Now, only the error message is displayed, making the output much more readable.
nix-repl> { err = builtins.throw "uh oh!"; } { err = «error: uh oh!»; }
However, if the whole expression being evaluated throws an error, source locations and (if applicable) a stack trace are printed, just like you'd expect:
nix-repl> builtins.throw "uh oh!" error: … while calling the 'throw' builtin at «string»:1:1: 1| builtins.throw "uh oh!" | ^ error: uh oh!
Many thanks to wiggles for this.
-
Show all FOD errors with
nix build --keep-going
cl/1108nix build --keep-going
now behaves consistently withnix-build --keep-going
. This means that if e.g. multiple FODs fail to build, all hash mismatches are displayed.Many thanks to ma27 for this.
-
Duplicate attribute reports are more accurate cl/557
Duplicate attribute errors are now more accurate, showing the path at which an error was detected rather than the full, possibly longer, path that caused the error. Error reports are now
$ nix eval --expr '{ a.b = 1; a.b.c.d = 1; }' error: attribute 'a.b' already defined at «string»:1:3 at «string»:1:12: 1| { a.b = 1; a.b.c.d = 1; | ^
instead of
$ nix eval --expr '{ a.b = 1; a.b.c.d = 1; }' error: attribute 'a.b.c.d' already defined at «string»:1:3 at «string»:1:12: 1| { a.b = 1; a.b.c.d = 1; | ^
Many thanks to eldritch horrors for this.
-
Reduce eval memory usage and wall time #9658 cl/207
Reduce the size of the
Env
struct used in the evaluator by a pointer, or 8 bytes on most modern machines. This reduces memory usage during eval by around 2% and wall time by around 3%.Many thanks to eldritch horrors for this.
-
Warn on unknown settings anywhere in the command line #10701
All
nix
commands will now properly warn when an unknown option is specified anywhere in the command line.Before:
$ nix-instantiate --option foobar baz --expr '{}' warning: unknown setting 'foobar' $ nix-instantiate '{}' --option foobar baz --expr $ nix eval --expr '{}' --option foobar baz { }
After:
$ nix-instantiate --option foobar baz --expr '{}' warning: unknown setting 'foobar' $ nix-instantiate '{}' --option foobar baz --expr warning: unknown setting 'foobar' $ nix eval --expr '{}' --option foobar baz warning: unknown setting 'foobar' { }
Many thanks to Cole Helbling for this.
-
Nested debuggers are no longer supported #9920
Previously, evaluating an expression that throws an error in the debugger would enter a second, nested debugger:
nix-repl> builtins.throw "what" error: what Starting REPL to allow you to inspect the current state of the evaluator. Welcome to Nix 2.18.1. Type :? for help. nix-repl>
Now, it just prints the error message like
nix repl
:nix-repl> builtins.throw "what" error: … while calling the 'throw' builtin at «string»:1:1: 1| builtins.throw "what" | ^ error: what
Many thanks to wiggles for this.
-
Find GC roots using libproc on Darwin cl/723
Previously, the garbage collector found runtime roots on Darwin by shelling out to
lsof -n -w -F n
then parsing the result. The version oflsof
packaged in Nixpkgs is very slow on Darwin, so Lix now useslibproc
directly to speed up GC root discovery, in some tests taking 250ms now instead of 40s.Many thanks to Artemis Tosini for this.
-
Increase default stack size on macOS #9860
Increase the default stack size on macOS to the same value as on Linux, subject to system restrictions to maximum stack size. This should reduce the number of stack overflow crashes on macOS when evaluating Nix code with deep call stacks.
Many thanks to wiggles for this.
-
Show more log context for failed builds #9670
Show 25 lines of log tail instead of 10 for failed builds. This increases the chances of having useful information in the shown logs.
Many thanks to DavHau for this.
-
rename 'nix show-config' to 'nix config show' #7672 #9477 cl/993
nix show-config
was renamed tonix config show
to be more consistent with the rest of the command-line interface.Running
nix show-config
will now print a deprecation warning saying to usenix config show
instead.Many thanks to Théophane Hufschmitt and ma27 for this.
-
Print derivation paths in
nix eval
cl/446nix eval
previously printed derivations as attribute sets, so commands that print derivations (e.g.nix eval nixpkgs#bash
) would infinitely loop and segfault. It now prints the.drv
path the derivation generates instead.Many thanks to wiggles for this.
-
Add an option
--unpack
to unpack archives innix store prefetch-file
#9805 cl/224It is now possible to fetch an archive then NAR-hash it (as in, hash it in the same manner as
builtins.fetchTarball
or fixed-output derivations with recursive hash type) in one command.Example:
~ » nix store prefetch-file --name source --unpack https://git.lix.systems/lix-project/lix/archive/2.90-beta.1.tar.gz Downloaded 'https://git.lix.systems/lix-project/lix/archive/2.90-beta.1.tar.gz' to '/nix/store/yvfqnq52ryjc3janw02ziv7kr6gd0cs1-source' (hash 'sha256-REWlo2RYHfJkxnmZTEJu3Cd/2VM+wjjpPy7Xi4BdDTQ=').
Many thanks to yshui and eldritch horrors for this.
-
REPL printing improvements #9931 #10208 cl/375 cl/492
The REPL printer has been improved to do the following:
- If a string is passed to
:print
, it is printed literally to the screen - Structures will be printed as multiple lines when necessary
Before:
nix-repl> { attrs = { a = { b = { c = { }; }; }; }; list = [ 1 ]; list' = [ 1 2 3 ]; } { attrs = { ... }; list = [ ... ]; list' = [ ... ]; } nix-repl> :p { attrs = { a = { b = { c = { }; }; }; }; list = [ 1 ]; list' = [ 1 2 3 ]; } { attrs = { a = { b = { c = { }; }; }; }; list = [ 1 ]; list' = [ 1 2 3 ]; } nix-repl> :p "meow" "meow"
After:
nix-repl> { attrs = { a = { b = { c = { }; }; }; }; list = [ 1 ]; list' = [ 1 2 3 ]; } { attrs = { ... }; list = [ ... ]; list' = [ ... ]; } nix-repl> :p { attrs = { a = { b = { c = { }; }; }; }; list = [ 1 ]; list' = [ 1 2 3 ]; } { attrs = { a = { b = { c = { }; }; }; }; list = [ 1 ]; list' = [ 1 2 3 ]; } nix-repl> :p "meow" meow
Many thanks to wiggles and eldritch horrors for this.
- If a string is passed to
-
Coercion errors include the failing value #561 #9754
The
error: cannot coerce a <TYPE> to a string
message now includes the value which caused the error.Before:
error: cannot coerce a set to a string
After:
error: cannot coerce a set to a string: { aesSupport = «thunk»; avx2Support = «thunk»; avx512Support = «thunk»; avxSupport = «thunk»; canExecute = «thunk»; config = «thunk»; darwinArch = «thunk»; darwinMinVersion = «thunk»; darwinMinVersionVariable = «thunk»; darwinPlatform = «thunk»; «84 attributes elided»}
Many thanks to wiggles and eldritch horrors for this.
-
New-cli flake commands that expect derivations now print the failing value and its type cl/1177
In errors like
flake output attribute 'legacyPackages.x86_64-linux.lib' is not a derivation or path
, the message now includes the failing value and type.Before:
error: flake output attribute 'nixosConfigurations.yuki.config' is not a derivation or path
After:
error: expected flake output attribute 'nixosConfigurations.yuki.config' to be a derivation or path but found a set: { appstream = «thunk»; assertions = «thunk»; boot = { bcache = «thunk»; binfmt = «thunk»; binfmtMiscRegistrations = «thunk»; blacklistedKernelModules = «thunk»; bootMount = «thunk»; bootspec = «thunk»; cleanTmpDir = «thunk»; consoleLogLevel = «thunk»; «43 attributes elided» }; «48 attributes elided» }
Many thanks to Qyriad for this.
-
Type errors include the failing value #561 #9753
In errors like
value is an integer while a list was expected
, the message now includes the failing value.Before:
error: value is a set while a string was expected
After:
error: expected a string but found a set: { ghc810 = «thunk»; ghc8102Binary = «thunk»; ghc8107 = «thunk»; ghc8107Binary = «thunk»; ghc865Binary = «thunk»; ghc90 = «thunk»; ghc902 = «thunk»; ghc92 = «thunk»; ghc924Binary = «thunk»; ghc925 = «thunk»; «17 attributes elided»}
Many thanks to wiggles and eldritch horrors for this.
-
Visual clutter in
--debugger
is reduced #9919Before:
info: breakpoint reached Starting REPL to allow you to inspect the current state of the evaluator. Welcome to Nix 2.20.0pre20231222_dirty. Type :? for help. nix-repl> :continue error: uh oh Starting REPL to allow you to inspect the current state of the evaluator. Welcome to Nix 2.20.0pre20231222_dirty. Type :? for help. nix-repl>
After:
info: breakpoint reached Nix 2.20.0pre20231222_dirty debugger Type :? for help. nix-repl> :continue error: uh oh nix-repl>
Many thanks to wiggles and eldritch horrors for this.
-
REPL now supports CTRL+Z to suspend
Editline is now built with SIGTSTP support, so now typing CTRL+Z in the REPL will suspend the REPL and allow it to be resumed later or backgrounded.
Many thanks to Qyriad for this.
-
Allow single quotes in nix-shell shebangs #8470
Example:
#! /usr/bin/env nix-shell #! nix-shell -i bash --packages 'terraform.withPlugins (plugins: [ plugins.openstack ])'
Many thanks to ncfavier and eldritch horrors for this.
-
reintroduce shortened
-E
form for--expr
to new CLI cl/605In the old CLI, it was possible to supply a shorter
-E
flag instead of fully specifying--expr
every time you wished to provide an expression that would be evaluated to produce the given command's input. This was retained for the--file
flag when the new CLI utilities were written with-f
, but-E
was dropped.We now restore the
-E
short form for better UX. This is most useful fornix eval
but most any command that takes an Installable argument should benefit from it as well.Many thanks to Lunaphied for this.
-
Source locations are printed more consistently in errors #561 #9555
Source location information is now included in error messages more consistently. Given this code:
let attr = {foo = "bar";}; key = {}; in attr.${key}
Previously, Nix would show this unhelpful message when attempting to evaluate it:
error: … while evaluating an attribute name error: value is a set while a string was expected
Now, the error message displays where the problematic value was found:
error: … while evaluating an attribute name at bad.nix:4:11: 3| key = {}; 4| in attr.${key} | ^ 5| error: expected a string but found a set: { }
Many thanks to wiggles and eldritch horrors for this.
-
Some stack overflow segfaults are fixed #9616 #9617 cl/205
The number of nested function calls has been restricted, to detect and report infinite function call recursions. The default maximum call depth is 10,000 and can be set with the
max-call-depth
option.This fixes segfaults or the following unhelpful error message in many cases:
error: stack overflow (possible infinite recursion)
Before:
$ nix-instantiate --eval --expr '(x: x x) (x: x x)' Segmentation fault: 11
After:
$ nix-instantiate --eval --expr '(x: x x) (x: x x)' error: stack overflow at «string»:1:14: 1| (x: x x) (x: x x) | ^
Many thanks to wiggles and eldritch horrors for this.
-
Warn about ignored client settings cl/1026
Emit a warning for every client-provided setting the daemon ignores because the requesting client is not run by a trusted user. Previously this was only a debug message.
Many thanks to jade for this.
-
Better error reporting for
with
expressions #9658 cl/207with
expressions using non-attrset values to resolve variables are now reported with proper positions.Previously an incorrect
with
expression would report no position at all, making it hard to determine where the error originated:nix-repl> with 1; a error: … <borked> at «none»:0: (source not available) error: value is an integer while a set was expected
Now position information is preserved and reported as with most other errors:
nix-repl> with 1; a error: … while evaluating the first subexpression of a with expression at «string»:1:1: 1| with 1; a | ^ error: expected a set but found an integer: 1
Many thanks to eldritch horrors for this.
Fixes
-
Fix nested flake input
follows
#6621 cl/994Previously nested-input overrides were ignored; that is, the following did not override anything, in spite of the
nix3-flake
manual documenting it working:{ inputs = { foo.url = "github:bar/foo"; foo.inputs.bar.inputs.nixpkgs = "nixpkgs"; }; }
This is useful to avoid the 1000 instances of nixpkgs problem without having each flake in the dependency tree to expose all of its transitive dependencies for modification.
-
Fix CVE-2024-27297 (GHSA-2ffj-w4mj-pg37) cl/266
Since Lix fixed-output derivations run in the host network namespace (which we wish to change in the future, see lix#285), they may open abstract-namespace Unix sockets to each other and to programs on the host. Lix contained a now-fixed time-of-check/time-of-use vulnerability where one derivation could send writable handles to files in their final location in the store to another over an abstract-namespace Unix socket, exit, then the other derivation could wait for Lix to hash the paths and overwrite them.
The impact of this vulnerability is that two malicious fixed-output derivations could create a poisoned path for the sources to Bash or similarly important software containing a backdoor, leading to local privilege execution.
CppNix advisory: https://github.com/NixOS/nix/security/advisories/GHSA-2ffj-w4mj-pg37
Many thanks to puck, jade, Théophane Hufschmitt, Tom Bereknyei, and Valentin Gagarin for this.
-
--debugger
can now access bindings fromlet
expressions #8827 #9918Breakpoints and errors in the bindings of a
let
expression can now access those bindings in the debugger. Previously, only the body oflet
expressions could access those bindings.Many thanks to wiggles for this.
-
Fix handling of truncated
.drv
files. #9673Previously a
.drv
that was truncated in the middle of a string would case nix to enter an infinite loop, eventually exhausting all memory and crashing.Many thanks to eldritch horrors for this.
-
The
--debugger
will start more reliably inlet
expressions and function calls #6649 #9917Previously, if you attempted to evaluate this file with the debugger:
let a = builtins.trace "before inner break" ( builtins.break "hello" ); b = builtins.trace "before outer break" ( builtins.break a ); in b
Lix would correctly enter the debugger at
builtins.break a
, but if you asked it to:continue
, it would skip over thebuiltins.break "hello"
expression entirely.Now, Lix will correctly enter the debugger at both breakpoints.
Many thanks to wiggles and eldritch horrors for this.
-
Creating setuid/setgid binaries with fchmodat2 is now prohibited by the build sandbox #10501
The build sandbox blocks any attempt to create setuid/setgid binaries, but didn't check for the use of the
fchmodat2
syscall which was introduced in Linux 6.6 and is used by glibc >=2.39. This is fixed now.Many thanks to ma27 for this.
-
consistent order of lambda formals in printed expressions #9874
Always print lambda formals in lexicographic order rather than the internal, creation-time based symbol order. This makes printed formals independent of the context they appear in.
Many thanks to eldritch horrors for this.
-
fix duplicate attribute error positions for
inherit
#9874When an inherit caused a duplicate attribute error, the position of the error was not reported correctly, placing the error with the inherit itself or at the start of the bindings block instead of the offending attribute name.
Many thanks to eldritch horrors for this.
-
inherit (x) ...
evaluatesx
only once #9847inherit (x) a b ...
now evaluates the expressionx
only once for all inherited attributes rather than once for each inherited attribute. This does not usually have a measurable impact, but side-effects (such asbuiltins.trace
) would be duplicated and expensive expressions (such as derivations) could cause a measurable slowdown.Many thanks to eldritch horrors for this.
-
Store paths are allowed to start with
.
#912 #9867 #9091 #9095 #9120 #9121 #9122 #9130 #9219 #9224Leading periods were allowed by accident in Nix 2.4. The Nix team has considered this to be a bug, but this behavior has since been relied on by users, leading to unnecessary difficulties. From now on, leading periods are officially, definitively supported. The names
.
and..
are disallowed, as well as those starting with.-
or..-
.Nix versions that denied leading periods are documented in the issue.
Many thanks to Robert Hensing and eldritch horrors for this.
-
Fix
nix-env --query --drv-path --json
#9257Fixed a bug where
nix-env --query
ignored--drv-path
when--json
was set.Many thanks to Artturin and eldritch horrors for this.
-
re-evaluate cached evaluation errors cl/771
"cached failure of [expr]" errors have been removed: expressions already in the eval cache as a failure will now simply be re-evaluated, removing the need to set
--no-eval-cache
or similar to see the error.Many thanks to Qyriad for this.
-
Interrupting builds in the REPL works more than once cl/1097
Builds in the REPL can be interrupted by pressing Ctrl+C. Previously, this only worked once per REPL session; further attempts would be ignored. This issue is now fixed, so that builds can be canceled consistently.
Many thanks to alois31 for this.
-
In the debugger,
while evaluating the attribute
errors now include position information #9915Before:
0: while evaluating the attribute 'python311.pythonForBuild.pkgs' 0x600001522598
After:
0: while evaluating the attribute 'python311.pythonForBuild.pkgs' /nix/store/hg65h51xnp74ikahns9hyf3py5mlbbqq-source/overrides/default.nix:132:27 131| 132| bootstrappingBase = pkgs.${self.python.pythonAttr}.pythonForBuild.pkgs; | ^ 133| in
Many thanks to wiggles for this.
-
Include phase reporting in log file for ssh-ng builds #9280
Store phase information of remote builds run via
ssh-ng
remotes in the local log file, matching logging behavior of local builds.Many thanks to r-vdp for this.
-
Fix
ssh-ng://
remotes not respecting--substitute-on-destination
#9600nix copy ssh-ng://
now respects--substitute-on-destination
, as doesnix-copy-closure
and other commands that operate on remotessh-ng
stores. Previously this was always set bybuilders-use-substitutes
setting.Many thanks to SharzyL for this.
-
using
nix profile
on/nix/var/nix/profiles/default
no longer breaksnix upgrade-nix
cl/952On non-NixOS, Nix is conventionally installed into a
nix-env
style profile at /nix/var/nix/profiles/default. Like anynix-env
profile, usingnix profile
on it automatically migrates it to anix profile
style profile, which is incompatible withnix-env
.nix upgrade-nix
previously relied solely onnix-env
to do the upgrade, but now will work fine with either kind of profile.Many thanks to Qyriad for this.
Packaging
-
Lix turns more internal bugs into crashes cl/797 cl/626
Lix now enables build options such as trapping on signed overflow and enabling libstdc++ assertions by default. These may find new bugs in Lix, which will present themselves as Lix processes aborting, potentially without an error message.
If Lix processes abort on your machine, this is a bug. Please file a bug, ideally with the core dump (or information from it).
On Linux, run
coredumpctl list
, find the crashed process's PID at the bottom of the list, then runcoredumpctl info THE-PID
. You can then paste the output into a bug report.On macOS, open the Console app from Applications/Utilities, select Crash Reports, select the crash report in question. Right click on it, select Open In Finder, then include that file in your bug report. See the Apple documentation for more details.
Many thanks to jade for this.
-
Stop vendoring toml11 cl/675
We don't apply any patches to it, and vendoring it locks users into bugs (it hasn't been updated since its introduction in late 2021).
Many thanks to winter for this.
-
Lix is built with meson cl/580 cl/627 cl/628 cl/707 cl/711 cl/712 cl/719
Lix is built exclusively with the meson build system thanks to a huge team-wide effort, and the legacy
make
/autoconf
based build system has been removed altogether. This improves maintainability of Lix, enables things like saving 20% of compile times with precompiled headers, and generally makes the build less able to produce obscure incremental compilation bugs.Non-Nix-based downstream packaging needs rewriting accordingly.
Many thanks to Qyriad, eldritch horrors, jade, wiggles, and winter for this.
-
Upstart scripts removed cl/574
Upstart scripts have been removed from Lix, since Upstart is obsolete and has not been shipped by any major distributions for many years. If these are necessary to your use case, please back port them to your packaging.
Many thanks to jade for this.
Development
-
Clang build timing analysis cl/587
We now have Clang build profiling available, which generates Chrome tracing files for each compilation unit. To enable it, run
meson configure build -Dprofile-build=enabled
in a Clang stdenv (nix develop .#native-clangStdenvPackages
) then rerun the compilation.If you want to make the build go faster, do a clang build with meson, then run
maintainers/buildtime_report.sh build
, then contemplate how to improve the build time.You can also look at individual object files' traces in https://ui.perfetto.dev.
See the wiki page for more details on how to do this.
Miscellany
-
Disallow empty search regex in
nix search
#9481nix search
now requires a search regex to be passed. To show all packages, use^
.Many thanks to iFreilicht and eldritch horrors for this.
-
nix repl
history is saved more reliably cl/1164nix repl
now saves its history file after each line, rather than at the end of the session; ensuring that it will remember what you typed even after it crashes.Many thanks to puck for this.
Release 2.18 (2023-09-20)
-
Two new builtin functions,
builtins.parseFlakeRef
andbuiltins.flakeRefToString
, have been added. These functions are useful for converting between flake references encoded as attribute sets and URLs. -
builtins.toJSON
now prints --show-trace items for the path in which it finds an evaluation error. -
Error messages regarding malformed input to
nix derivation add
are now clearer and more detailed. -
The
discard-references
feature has been stabilized. This means that the unsafeDiscardReferences attribute is no longer guarded by an experimental flag and can be used freely. -
The JSON output for derived paths which are store paths is now a string, not an object with a single
path
field. This only affectsnix-build --json
when "building" non-derivation things like fetched sources, which is a no-op. -
A new builtin
outputOf
has been added. It is part of thedynamic-derivations
experimental feature. -
Flake follow paths at depths greater than 2 are now handled correctly, preventing "follows a non-existent input" errors.
-
nix-store --query
gained a new type of query:--valid-derivers
. It returns all.drv
files in the local store that can be used to build the output passed in argument. This is in contrast to--deriver
, which returns the single.drv
file that was actually used to build the output passed in argument. In case the output was substituted from a binary cache, this.drv
file may only exist on said binary cache and not locally.
Release 2.17 (2023-07-24)
-
nix-channel
now supports a--list-generations
subcommand. -
The function
builtins.fetchClosure
can now fetch input-addressed paths in pure evaluation mode, as those are not impure. -
Nix now allows unprivileged/
allowed-users
to sign paths. Previously, onlytrusted-users
users could sign paths. -
Nested dynamic attributes are now merged correctly by the parser. For example:
{ nested = { foo = 1; }; nested = { ${"ba" + "r"} = 2; }; }
This used to silently discard
nested.bar
, but now behaves as one would expect and evaluates to:{ nested = { bar = 2; foo = 1; }; }
Note that the feature of merging multiple full declarations of attribute sets like
nested
in the example is of questionable value. It allows writing expressions that are very hard to read, for instance when there are many lines of code between two declarations of the same attribute. This has been around for a long time and is therefore supported for backwards compatibility, but should not be relied upon.Instead, consider using the nested attribute path syntax:
{ nested.foo = 1; nested.${"ba" + "r"} = 2; }
-
Tarball flakes can now redirect to an "immutable" URL that will be recorded in lock files. This allows the use of "mutable" tarball URLs like
https://example.org/hello/latest.tar.gz
in flakes. See the tarball fetcher for details.
Release 2.16 (2023-05-31)
-
Speed-up of downloads from binary caches. The number of parallel downloads (also known as substitutions) has been separated from the
--max-jobs
setting. The new setting is calledmax-substitution-jobs
. The number of parallel downloads is now set to 16 by default (previously, the default was 1 due to the coupling to build jobs). -
The function
builtins.replaceStrings
is now lazy in the value of its second argumentto
. That is,to
is only evaluated when its corresponding pattern infrom
is matched in the strings
.
Release 2.15 (2023-04-11)
-
Commands which take installables on the command line can now read them from the standard input if passed the
--stdin
flag. This is primarily useful when you have a large amount of paths which exceed the OS argument limit. -
The
nix-hash
command now supports Base64 and SRI. Use the flags--base64
or--sri
to specify the format of output hash as Base64 or SRI, and--to-base64
or--to-sri
to convert a hash to Base64 or SRI format, respectively.As the choice of hash formats is no longer binary, the
--base16
flag is also added to explicitly specify the Base16 format, which is still the default. -
The special handling of an installable with
.drv
suffix being interpreted as all of the given store derivation's output paths is removed, and instead taken as the literal store path that it represents.The new
^
syntax for store paths introduced in Nix 2.13 allows explicitly referencing output paths of a derivation. Using this is better and more clear than relying on the now-removed.drv
special handling.For example,
$ nix path-info /nix/store/gzaflydcr6sb3567hap9q6srzx8ggdgg-glibc-2.33-78.drv
now gives info about the derivation itself, while
$ nix path-info /nix/store/gzaflydcr6sb3567hap9q6srzx8ggdgg-glibc-2.33-78.drv^*
provides information about each of its outputs.
-
The experimental command
nix describe-stores
has been removed. -
Nix stores and their settings are now documented in
nix help-stores
. -
Documentation for operations of
nix-store
andnix-env
are now available on separate pages of the manual. They include all common options that can be specified and common environment variables that affect these commands.These pages can be viewed offline with
man
usingman nix-store-<operation>
andman nix-env-<operation>
nix-store --help --<operation>
andnix-env --help --<operation>
.
-
Nix when used as a client now checks whether the store (the server) trusts the client. (The store always had to check whether it trusts the client, but now the client is informed of the store's decision.) This is useful for scripting interactions with (non-legacy-ssh) remote Nix stores.
nix store ping
andnix doctor
now display this information. -
The new command
nix derivation add
allows adding derivations to the store without involving the Nix language. It exists to round out our collection of basic utility/plumbing commands, and allow for a low barrier-to-entry way of experimenting with alternative front-ends to the Nix Store. It uses the same JSON layout asnix derivation show
, and is its inverse. -
nix show-derivation
has been renamed tonix derivation show
. This matchesnix derivation add
, and avoids bloating the top-level namespace. The old name is still kept as an alias for compatibility, however. -
The
nix derivation {add,show}
JSON format now includes the derivation name as a top-level field. This is useful in general, but especially necessary for theadd
direction, as otherwise we would need to pass in the name out of band for certain cases.
Release 2.14 (2023-02-28)
-
A new function
builtins.readFileType
is available. It is similar tobuiltins.readDir
but acts on a single file or directory. -
In flakes, the
.outPath
attribute of a flake now always refers to the directory containing theflake.nix
. This was not the case for whenflake.nix
was in a subdirectory of e.g. a Git repository. The root of the source of a flake in a subdirectory is still available in.sourceInfo.outPath
. -
In derivations that use structured attributes, you can now use
unsafeDiscardReferences
to disable scanning a given output for runtime dependencies:__structuredAttrs = true; unsafeDiscardReferences.out = true;
This is useful e.g. when generating self-contained filesystem images with their own embedded Nix store: hashes found inside such an image refer to the embedded store and not to the host's Nix store.
This requires the
discard-references
experimental feature.
Release 2.13 (2023-01-17)
-
The
repeat
andenforce-determinism
options have been removed since they had been broken under many circumstances for a long time. -
You can now use flake references in the old command line interface, e.g.
# nix-build flake:nixpkgs -A hello # nix-build -I nixpkgs=flake:github:NixOS/nixpkgs/nixos-22.05 \ '<nixpkgs>' -A hello # NIX_PATH=nixpkgs=flake:nixpkgs nix-build '<nixpkgs>' -A hello
-
Instead of "antiquotation", the more common term string interpolation is now used consistently. Historical release notes were not changed.
-
Error traces have been reworked to provide detailed explanations and more accurate error locations. A short excerpt of the trace is now shown by default when an error occurs.
-
Allow explicitly selecting outputs in a store derivation installable, just like we can do with other sorts of installables. For example,
# nix build /nix/store/gzaflydcr6sb3567hap9q6srzx8ggdgg-glibc-2.33-78.drv^dev
now works just as
# nix build nixpkgs#glibc^dev
does already.
-
On Linux,
nix develop
now sets the personality for the development shell in the same way as the actual build of the derivation. This makes shells fori686-linux
derivations work correctly onx86_64-linux
. -
You can now disable the global flake registry by setting the
flake-registry
configuration option to an empty string. The same can be achieved at runtime with--flake-registry ""
.
Release 2.12 (2022-12-06)
-
On Linux, Nix can now run builds in a user namespace where they run as root (UID 0) and have 65,536 UIDs available.
This is primarily useful for running containers such as
systemd-nspawn
inside a Nix build. For an example, seetests/systemd-nspawn/nix
.A build can enable this by setting the derivation attribute:
requiredSystemFeatures = [ "uid-range" ];
The
uid-range
system feature requires theauto-allocate-uids
setting to be enabled. -
Nix can now automatically pick UIDs for builds, removing the need to create
nixbld*
user accounts. Seeauto-allocate-uids
. -
On Linux, Nix has experimental support for running builds inside a cgroup. See
use-cgroups
. -
<nix/fetchurl.nix>
now accepts an additional argumentimpure
which defaults tofalse
. If it is set totrue
, thehash
andsha256
arguments will be ignored and the resulting derivation will have__impure
set totrue
, making it an impure derivation. -
If
builtins.readFile
is called on a file with context, then only the parts of the context that appear in the content of the file are retained. This avoids a lot of spurious errors where strings end up having a context just because they are read from a store path (#7260). -
nix build --json
now prints some statistics about top-level derivations, such as CPU statistics when cgroups are enabled.
Release 2.11 (2022-08-24)
nix copy
now copies the store paths in parallel as much as possible (again). This doesn't apply for thedaemon
andssh-ng
stores which copy everything in one batch to avoid latencies issues.
Release 2.10 (2022-07-11)
-
nix repl
now takes installables on the command line, unifying the usage with other commands that use--file
and--expr
. Primary breaking change is for the common usage ofnix repl '<nixpkgs>'
which can be recovered withnix repl --file '<nixpkgs>'
ornix repl --expr 'import <nixpkgs>{}'
.This is currently guarded by the
repl-flake
experimental feature. -
A new function
builtins.traceVerbose
is available. It is similar tobuiltins.trace
if thetrace-verbose
setting is set to true, and it is a no-op otherwise. -
nix search
has a new flag--exclude
to filter out packages. -
On Linux, if
/nix
doesn't exist and cannot be created and you're not running as root, Nix will automatically use~/.local/share/nix/root
as a chroot store. This enables non-root users to download the statically linked Nix binary and have it work out of the box, e.g.# ~/nix run nixpkgs#hello warning: '/nix' does not exists, so Nix will use '/home/ubuntu/.local/share/nix/root' as a chroot store Hello, world!
-
flake-registry.json
is now fetched fromchannels.nixos.org
. -
Nix can now be built with LTO by passing
--enable-lto
toconfigure
. LTO is currently only supported when building with GCC.
Release 2.9 (2022-05-30)
-
Running Nix with the new
--debugger
flag will cause it to start a repl session if an exception is thrown during evaluation, or ifbuiltins.break
is called. From there you can inspect the values of variables and evaluate Nix expressions. In debug mode, the following new repl commands are available::env Show env stack :bt Show trace stack :st Show current trace :st <idx> Change to another trace in the stack :c Go until end of program, exception, or builtins.break(). :s Go one step
Read more about the debugger here.
-
Nix now provides better integration with zsh's
run-help
feature. It is now included in the Nix installation in the form of an autoloadable shell function,run-help-nix
. It picks up Nix subcommands from the currently typed in command and directs the user to the associated man pages. -
nix repl
has a new build-and-link (:bl
) command that builds a derivation while creating GC root symlinks. -
The path produced by
builtins.toFile
is now allowed to be imported or read even with restricted evaluation. Note that this will not work with a read-only store. -
nix build
has a new--print-out-paths
flag to print the resulting output paths. This matches the default behaviour ofnix-build
. -
You can now specify which outputs of a derivation
nix
should operate on using the syntaxinstallable^outputs
, e.g.nixpkgs#glibc^dev,static
ornixpkgs#glibc^*
. By default,nix
will use the outputs specified by the derivation'smeta.outputsToInstall
attribute if it exists, or all outputs otherwise. -
builtins.fetchTree
(and flake inputs) can now be used to fetch plain files over thehttp(s)
andfile
protocols in addition to directory tarballs.
Release 2.8 (2022-04-19)
-
New experimental command:
nix fmt
, which applies a formatter defined by theformatter.<system>
flake output to the Nix expressions in a flake. -
Various Nix commands can now read expressions from standard input using
--file -
. -
New experimental builtin function
builtins.fetchClosure
that copies a closure from a binary cache at evaluation time and rewrites it to content-addressed form (if it isn't already). Likebuiltins.storePath
, this allows importing pre-built store paths; the difference is that it doesn't require the user to configure binary caches and trusted public keys.This function is only available if you enable the experimental feature
fetch-closure
. -
New experimental feature: impure derivations. These are derivations that can produce a different result every time they're built. Here is an example:
stdenv.mkDerivation { name = "impure"; __impure = true; # marks this derivation as impure buildCommand = "date > $out"; }
Running
nix build
twice on this expression will build the derivation twice, producing two different content-addressed store paths. Like fixed-output derivations, impure derivations have access to the network. Only fixed-output derivations and impure derivations can depend on an impure derivation. -
nix store make-content-addressable
has been renamed tonix store make-content-addressed
. -
The
nixosModule
flake output attribute has been renamed consistent with the.default
renames in Nix 2.7.nixosModule
→nixosModules.default
As before, the old output will continue to work, but
nix flake check
will issue a warning about it. -
nix run
is now stricter in what it accepts: members of theapps
flake output are now required to be apps (as defined in the manual), and members ofpackages
orlegacyPackages
must be derivations (not apps).
Release 2.7 (2022-03-07)
-
Nix will now make some helpful suggestions when you mistype something on the command line. For instance, if you type
nix build nixpkgs#thunderbrd
, it will suggestthunderbird
. -
A number of "default" flake output attributes have been renamed. These are:
defaultPackage.<system>
→packages.<system>.default
defaultApps.<system>
→apps.<system>.default
defaultTemplate
→templates.default
defaultBundler.<system>
→bundlers.<system>.default
overlay
→overlays.default
devShell.<system>
→devShells.<system>.default
The old flake output attributes still work, but
nix flake check
will warn about them. -
Breaking API change:
nix bundle
now supports bundlers of the formbundler.<system>.<name>= derivation: another-derivation;
. This supports additional functionality to inspect evaluation information during bundling. A new repository has various bundlers implemented. -
nix store ping
now reports the version of the remote Nix daemon. -
nix flake {init,new}
now display information about which files have been created. -
Templates can now define a
welcomeText
attribute, which is printed out bynix flake {init,new} --template <template>
.
Release 2.6 (2022-01-24)
- The Nix CLI now searches for a
flake.nix
up until the root of the current Git repository or a filesystem boundary rather than just in the current directory. - The TOML parser used by
builtins.fromTOML
has been replaced by a more compliant one. - Added
:st
/:show-trace
commands tonix repl
, which are used to set or toggle display of error traces. - New builtin function
builtins.zipAttrsWith
with the same functionality aslib.zipAttrsWith
from Nixpkgs, but much more efficient. - New command
nix store copy-log
to copy build logs from one store to another. - The
commit-lockfile-summary
option can be set to a non-empty string to override the commit summary used when commiting an updated lockfile. This may be used in conjunction with thenixConfig
attribute inflake.nix
to better conform to repository conventions. docker run -ti nixos/nix:master
will place you in the Docker container with the latest version of Nix from themaster
branch.
Release 2.5 (2021-12-13)
-
The garbage collector no longer blocks new builds, so the message
waiting for the big garbage collector lock...
is a thing of the past. -
Binary cache stores now have a setting
compression-level
. -
nix develop
now has a flag--unpack
to rununpackPhase
. -
Lists can now be compared lexicographically using the
<
operator. -
New built-in function:
builtins.groupBy
, with the same functionality as Nixpkgs'lib.groupBy
, but faster. -
nix repl
now has a:log
command.
Release 2.4 (2021-11-01)
This is the first release in more than two years and is the result of more than 2800 commits from 195 contributors since release 2.3.
Highlights
-
Nix's error messages have been improved a lot. For instance, evaluation errors now point out the location of the error:
$ nix build error: undefined variable 'bzip3' at /nix/store/449lv242z0zsgwv95a8124xi11sp419f-source/flake.nix:88:13: 87| [ curl 88| bzip3 xz brotli editline | ^ 89| openssl sqlite
-
The
nix
command has seen a lot of work and is now almost at feature parity with the old command-line interface (thenix-*
commands). It aims to be more modern, consistent and pleasant to use than the old CLI. It is still marked as experimental but its interface should not change much anymore in future releases. -
Flakes are a new format to package Nix-based projects in a more discoverable, composable, consistent and reproducible way. A flake is just a repository or tarball containing a file named
flake.nix
that specifies dependencies on other flakes and returns any Nix assets such as packages, Nixpkgs overlays, NixOS modules or CI tests. The newnix
CLI is primarily based around flakes; for example, a command likenix run nixpkgs#hello
runs thehello
application from thenixpkgs
flake.Flakes are currently marked as experimental. For an introduction, see this blog post. For detailed information about flake syntax and semantics, see the
nix flake
manual page. -
Nix's store can now be content-addressed, meaning that the hash component of a store path is the hash of the path's contents. Previously Nix could only build input-addressed store paths, where the hash is computed from the derivation dependency graph. Content-addressing allows deduplication, early cutoff in build systems, and unprivileged closure copying. This is still an experimental feature.
-
The Nix manual has been converted into Markdown, making it easier to contribute. In addition, every
nix
subcommand now has a manual page, documenting every option. -
A new setting that allows experimental features to be enabled selectively. This allows us to merge unstable features into Nix more quickly and do more frequent releases.
Other features
-
There are many new
nix
subcommands:-
nix develop
is intended to replacenix-shell
. It has a number of new features:-
It automatically sets the output environment variables (such as
$out
) to writable locations (such as./outputs/out
). -
It can store the environment in a profile. This is useful for offline work.
-
It can run specific phases directly. For instance,
nix develop --build
runsbuildPhase
.
- It allows dependencies in the Nix store to be "redirected" to
arbitrary directories using the
--redirect
flag. This is useful if you want to hack on a package and some of its dependencies at the same time.
-
-
nix print-dev-env
prints the environment variables and bash functions defined by a derivation. This is useful for users of other shells than bash (especially with--json
). -
nix shell
was previously namednix run
and is intended to replacenix-shell -p
, but without thestdenv
overhead. It simply starts a shell where some packages have been added to$PATH
. -
nix run
(not to be confused with the old subcommand that has been renamed tonix shell
) runs an "app", a flake output that specifies a command to run, or an eponymous program from a package. For example,nix run nixpkgs#hello
runs thehello
program from thehello
package innixpkgs
. -
nix flake
is the container for flake-related operations, such as creating a new flake, querying the contents of a flake or updating flake lock files. -
nix registry
allows you to query and update the flake registry, which maps identifiers such asnixpkgs
to concrete flake URLs. -
nix profile
is intended to replacenix-env
. Its main advantage is that it keeps track of the provenance of installed packages (e.g. exactly which flake version a package came from). It also has some helpful subcommands:-
nix profile history
shows what packages were added, upgraded or removed between each version of a profile. -
nix profile diff-closures
shows the changes between the closures of each version of a profile. This allows you to discover the addition or removal of dependencies or size changes.
Warning: after a profile has been updated using
nix profile
, it is no longer usable withnix-env
. -
-
nix store diff-closures
shows the differences between the closures of two store paths in terms of the versions and sizes of dependencies in the closures. -
nix store make-content-addressable
rewrites an arbitrary closure to make it content-addressed. Such paths can be copied into other stores without requiring signatures. -
nix bundle
uses thenix-bundle
program to convert a closure into a self-extracting executable. -
Various other replacements for the old CLI, e.g.
nix store gc
,nix store delete
,nix store repair
,nix nar dump-path
,nix store prefetch-file
,nix store prefetch-tarball
,nix key
andnix daemon
.
-
-
Nix now has an evaluation cache for flake outputs. For example, a second invocation of the command
nix run nixpkgs#firefox
will not need to evaluate thefirefox
attribute because it's already in the evaluation cache. This is made possible by the hermetic evaluation model of flakes. -
The new
--offline
flag disables substituters and causes all locally cached tarballs and repositories to be considered up-to-date. -
The new
--refresh
flag causes all locally cached tarballs and repositories to be considered out-of-date. -
Many
nix
subcommands now have a--json
option to produce machine-readable output. -
nix repl
has a new:doc
command to show documentation about builtin functions (e.g.:doc builtins.map
). -
Binary cache stores now have an option
index-debug-info
to create an index of DWARF debuginfo files for use bydwarffs
. -
To support flakes, Nix now has an extensible mechanism for fetching source trees. Currently it has the following backends:
-
Git repositories
-
Mercurial repositories
-
GitHub and GitLab repositories (an optimisation for faster fetching than Git)
-
Tarballs
-
Arbitrary directories
The fetcher infrastructure is exposed via flake input specifications and via the
fetchTree
built-in. -
-
Languages changes: the only new language feature is that you can now have antiquotations in paths, e.g.
./${foo}
instead of./. + foo
. -
New built-in functions:
-
builtins.fetchTree
allows fetching a source tree using any backends supported by the fetcher infrastructure. It subsumes the functionality of existing built-ins likefetchGit
,fetchMercurial
andfetchTarball
. -
builtins.getFlake
fetches a flake and returns its output attributes. This function should not be used inside flakes! Use flake inputs instead. -
builtins.floor
andbuiltins.ceil
round a floating-point number down and up, respectively.
-
-
Experimental support for recursive Nix. This means that Nix derivations can now call Nix to build other derivations. This is not in a stable state yet and not well documented.
-
The new experimental feature
no-url-literals
disables URL literals. This helps to implement RFC 45. -
Nix now uses
libarchive
to decompress and unpack tarballs and zip files, sotar
is no longer required. -
The priority of substituters can now be overridden using the
priority
substituter setting (e.g.--substituters 'http://cache.nixos.org?priority=100 daemon?priority=10'
). -
nix edit
now supports non-derivation attributes, e.g.nix edit .#nixosConfigurations.bla
. -
The
nix
command now provides command line completion forbash
,zsh
andfish
. Since the support for getting completions is built intonix
, it's easy to add support for other shells. -
The new
--log-format
flag selects what Nix's output looks like. It defaults to a terse progress indicator. There is a newinternal-json
output format for use by other programs. -
nix eval
has a new--apply
flag that applies a function to the evaluation result. -
nix eval
has a new--write-to
flag that allows it to write a nested attribute set of string leaves to a corresponding directory tree. -
Memory improvements: many operations that add paths to the store or copy paths between stores now run in constant memory.
-
Many
nix
commands now support the flag--derivation
to operate on a.drv
file itself instead of its outputs. -
There is a new store called
dummy://
that does not support building or adding paths. This is useful if you want to use the Nix evaluator but don't have a Nix store. -
The
ssh-ng://
store now allows substituting paths on the remote, asssh://
already did. -
When auto-calling a function with an ellipsis, all arguments are now passed.
-
New
nix-shell
features:-
It preserves the
PS1
environment variable ifNIX_SHELL_PRESERVE_PROMPT
is set. -
With
-p
, it passes any--arg
s as Nixpkgs arguments. -
Support for structured attributes.
-
-
nix-prefetch-url
has a new--executable
flag. -
On
x86_64
systems,x86_64
microarchitecture levels are mapped to additional system types (e.g.x86_64-v1-linux
). -
The new
--eval-store
flag allows you to use a different store for evaluation than for building or storing the build result. This is primarily useful when you want to query whether something exists in a read-only store, such as a binary cache:# nix path-info --json --store https://cache.nixos.org \ --eval-store auto nixpkgs#hello
(Here
auto
indicates the local store.) -
The Nix daemon has a new low-latency mechanism for copying closures. This is useful when building on remote stores such as
ssh-ng://
. -
Plugins can now register
nix
subcommands. -
The
--indirect
flag tonix-store --add-root
has become a no-op.--add-root
will always generate indirect GC roots from now on.
Incompatible changes
-
The
nix
command is now marked as an experimental feature. This means that you need to addexperimental-features = nix-command
to your
nix.conf
if you want to use it, or pass--extra-experimental-features nix-command
on the command line. -
The
nix
command no longer has a syntax for referring to packages in a channel. This means that the following no longer works:nix build nixpkgs.hello # Nix 2.3
Instead, you can either use the
#
syntax to select a package from a flake, e.g.nix build nixpkgs#hello
Or, if you want to use the
nixpkgs
channel in theNIX_PATH
environment variable:nix build -f '<nixpkgs>' hello
-
The old
nix run
has been renamed tonix shell
, while there is a newnix run
that runs a default command. So instead ofnix run nixpkgs.hello -c hello # Nix 2.3
you should use
nix shell nixpkgs#hello -c hello
or just
nix run nixpkgs#hello
if the command you want to run has the same name as the package.
-
It is now an error to modify the
plugin-files
setting via a command-line flag that appears after the first non-flag argument to any command, including a subcommand tonix
. For example,nix-instantiate default.nix --plugin-files ""
must now becomenix-instantiate --plugin-files "" default.nix
. -
We no longer release source tarballs. If you want to build from source, please build from the tags in the Git repository.
Contributors
This release has contributions from Adam Höse, Albert Safin, Alex Kovar, Alex Zero, Alexander Bantyev, Alexandre Esteves, Alyssa Ross, Anatole Lucet, Anders Kaseorg, Andreas Rammhold, Antoine Eiche, Antoine Martin, Arnout Engelen, Arthur Gautier, aszlig, Ben Burdette, Benjamin Hipple, Bernardo Meurer, Björn Gohla, Bjørn Forsman, Bob van der Linden, Brian Leung, Brian McKenna, Brian Wignall, Bruce Toll, Bryan Richter, Calle Rosenquist, Calvin Loncaric, Carlo Nucera, Carlos D'Agostino, Chaz Schlarp, Christian Höppner, Christian Kampka, Chua Hou, Chuck, Cole Helbling, Daiderd Jordan, Dan Callahan, Dani, Daniel Fitzpatrick, Danila Fedorin, Daniël de Kok, Danny Bautista, DavHau, David McFarland, Dima, Domen Kožar, Dominik Schrempf, Dominique Martinet, dramforever, Dustin DeWeese, edef, Eelco Dolstra, Ellie Hermaszewska, Emilio Karakey, Emily, Eric Culp, Ersin Akinci, Fabian Möller, Farid Zakaria, Federico Pellegrin, Finn Behrens, Florian Franzen, Félix Baylac-Jacqué, Gabriella Gonzalez, Geoff Reedy, Georges Dubus, Graham Christensen, Greg Hale, Greg Price, Gregor Kleen, Gregory Hale, Griffin Smith, Guillaume Bouchard, Harald van Dijk, illustris, Ivan Zvonimir Horvat, Jade, Jake Waksbaum, jakobrs, James Ottaway, Jan Tojnar, Janne Heß, Jaroslavas Pocepko, Jarrett Keifer, Jeremy Schlatter, Joachim Breitner, Joe Pea, John Ericson, Jonathan Ringer, Josef Kemetmüller, Joseph Lucas, Jude Taylor, Julian Stecklina, Julien Tanguy, Jörg Thalheim, Kai Wohlfahrt, keke, Keshav Kini, Kevin Quick, Kevin Stock, Kjetil Orbekk, Krzysztof Gogolewski, kvtb, Lars Mühmel, Leonhard Markert, Lily Ballard, Linus Heckemann, Lorenzo Manacorda, Lucas Desgouilles, Lucas Franceschino, Lucas Hoffmann, Luke Granger-Brown, Madeline Haraj, Marwan Aljubeh, Mat Marini, Mateusz Piotrowski, Matthew Bauer, Matthew Kenigsberg, Mauricio Scheffer, Maximilian Bosch, Michael Adler, Michael Bishop, Michael Fellinger, Michael Forney, Michael Reilly, mlatus, Mykola Orliuk, Nathan van Doorn, Naïm Favier, ng0, Nick Van den Broeck, Nicolas Stig124 Formichella, Niels Egberts, Niklas Hambüchen, Nikola Knezevic, oxalica, p01arst0rm, Pamplemousse, Patrick Hilhorst, Paul Opiyo, Pavol Rusnak, Peter Kolloch, Philipp Bartsch, Philipp Middendorf, Piotr Szubiakowski, Profpatsch, Puck Meerburg, Ricardo M. Correia, Rickard Nilsson, Robert Hensing, Robin Gloster, Rodrigo, Rok Garbas, Ronnie Ebrin, Rovanion Luckey, Ryan Burns, Ryan Mulligan, Ryne Everett, Sam Doshi, Sam Lidder, Samir Talwar, Samuel Dionne-Riel, Sebastian Ullrich, Sergei Trofimovich, Sevan Janiyan, Shao Cheng, Shea Levy, Silvan Mosberger, Stefan Frijters, Stefan Jaax, sternenseemann, Steven Shaw, Stéphan Kochen, SuperSandro2000, Suraj Barkale, Taeer Bar-Yam, Thomas Churchman, Théophane Hufschmitt, Timothy DeHerrera, Timothy Klim, Tobias Möst, Tobias Pflug, Tom Bereknyei, Travis A. Everett, Ujjwal Jain, Vladimír Čunát, Wil Taylor, Will Dietz, Yaroslav Bolyukin, Yestin L. Harrison, YI, Yorick van Pelt, Yuriy Taraday and zimbatm.
Release 2.3 (2019-09-04)
This is primarily a bug fix release. However, it makes some incompatible changes:
- Nix now uses BSD file locks instead of POSIX file locks. Because of this, you should not use Nix 2.3 and previous releases at the same time on a Nix store.
It also has the following changes:
-
builtins.fetchGit
'sref
argument now allows specifying an absolute remote ref. Nix will automatically prefixref
withrefs/heads
only ifref
doesn't already begin withrefs/
. -
The installer now enables sandboxing by default on Linux when the system has the necessary kernel support.
-
The
max-jobs
setting now defaults to 1. -
New builtin functions:
builtins.isPath
,builtins.hashFile
. -
The
nix
command has a new--print-build-logs
(-L
) flag to print build log output to stderr, rather than showing the last log line in the progress bar. To distinguish between concurrent builds, log lines are prefixed by the name of the package. -
Builds are now executed in a pseudo-terminal, and the
TERM
environment variable is set toxterm-256color
. This allows many programs (e.g.gcc
,clang
,cmake
) to print colorized log output. -
Add
--no-net
convenience flag. This flag disables substituters; sets thetarball-ttl
setting to infinity (ensuring that any previously downloaded files are considered current); and disables retrying downloads and sets the connection timeout to the minimum. This flag is enabled automatically if there are no configured non-loopback network interfaces. -
Add a
post-build-hook
setting to run a program after a build has succeeded. -
Add a
trace-function-calls
setting to log the duration of Nix function calls to stderr.
Release 2.2 (2019-01-11)
This is primarily a bug fix release. It also has the following changes:
-
In derivations that use structured attributes (i.e. that specify set the
__structuredAttrs
attribute totrue
to cause all attributes to be passed to the builder in JSON format), you can now specify closure checks per output, e.g.:outputChecks."out" = { # The closure of 'out' must not be larger than 256 MiB. maxClosureSize = 256 * 1024 * 1024; # It must not refer to C compiler or to the 'dev' output. disallowedRequisites = [ stdenv.cc "dev" ]; }; outputChecks."dev" = { # The 'dev' output must not be larger than 128 KiB. maxSize = 128 * 1024; };
-
The derivation attribute
requiredSystemFeatures
is now enforced for local builds, and not just to route builds to remote builders. The supported features of a machine can be specified through the configuration settingsystem-features
.By default,
system-features
includeskvm
if/dev/kvm
exists. For compatibility, it also includes the pseudo-featuresnixos-test
,benchmark
andbig-parallel
which are used by Nixpkgs to route builds to particular Hydra build machines. -
Sandbox builds are now enabled by default on Linux.
-
The new command
nix doctor
shows potential issues with your Nix installation. -
The
fetchGit
builtin function now uses a caching scheme that puts different remote repositories in distinct local repositories, rather than a single shared repository. This may require more disk space but is faster. -
The
dirOf
builtin function now works on relative paths. -
Nix now supports SRI hashes, allowing the hash algorithm and hash to be specified in a single string. For example, you can write:
import <nix/fetchurl.nix> { url = https://nixos.org/releases/nix/nix-2.1.3/nix-2.1.3.tar.xz; hash = "sha256-XSLa0FjVyADWWhFfkZ2iKTjFDda6mMXjoYMXLRSYQKQ="; };
instead of
import <nix/fetchurl.nix> { url = https://nixos.org/releases/nix/nix-2.1.3/nix-2.1.3.tar.xz; sha256 = "5d22dad058d5c800d65a115f919da22938c50dd6ba98c5e3a183172d149840a4"; };
In fixed-output derivations, the
outputHashAlgo
attribute is no longer mandatory ifoutputHash
specifies the hash.nix hash-file
andnix hash-path
now print hashes in SRI format by default. They also use SHA-256 by default instead of SHA-512 because that's what we use most of the time in Nixpkgs. -
Integers are now 64 bits on all platforms.
-
The evaluator now prints profiling statistics (enabled via the
NIX_SHOW_STATS
andNIX_COUNT_CALLS
environment variables) in JSON format. -
The option
--xml
innix-store --query
has been removed. Instead, there now is an option--graphml
to output the dependency graph in GraphML format. -
All
nix-*
commands are now symlinks tonix
. This saves a bit of disk space. -
nix repl
now useslibeditline
orlibreadline
.
Release 2.1 (2018-09-02)
This is primarily a bug fix release. It also reduces memory consumption in certain situations. In addition, it has the following new features:
-
The Nix installer will no longer default to the Multi-User installation for macOS. You can still instruct the installer to run in multi-user mode.
-
The Nix installer now supports performing a Multi-User installation for Linux computers which are running systemd. You can select a Multi-User installation by passing the
--daemon
flag to the installer:sh <(curl -L https://nixos.org/nix/install) --daemon
.The multi-user installer cannot handle systems with SELinux. If your system has SELinux enabled, you can force the installer to run in single-user mode.
-
New builtin functions:
builtins.bitAnd
,builtins.bitOr
,builtins.bitXor
,builtins.fromTOML
,builtins.concatMap
,builtins.mapAttrs
. -
The S3 binary cache store now supports uploading NARs larger than 5 GiB.
-
The S3 binary cache store now supports uploading to S3-compatible services with the
endpoint
option. -
The flag
--fallback
is no longer required to recover from disappeared NARs in binary caches. -
nix-daemon
now respects--store
. -
nix run
now respectsnix-support/propagated-user-env-packages
.
This release has contributions from Adrien Devresse, Aleksandr Pashkov, Alexandre Esteves, Amine Chikhaoui, Andrew Dunham, Asad Saeeduddin, aszlig, Ben Challenor, Ben Gamari, Benjamin Hipple, Bogdan Seniuc, Corey O'Connor, Daiderd Jordan, Daniel Peebles, Daniel Poelzleithner, Danylo Hlynskyi, Dmitry Kalinkin, Domen Kožar, Doug Beardsley, Eelco Dolstra, Erik Arvstedt, Félix Baylac-Jacqué, Gleb Peregud, Graham Christensen, Guillaume Maudoux, Ivan Kozik, John Arnold, Justin Humm, Linus Heckemann, Lorenzo Manacorda, Matthew Justin Bauer, Matthew O'Gorman, Maximilian Bosch, Michael Bishop, Michael Fiano, Michael Mercier, Michael Raskin, Michael Weiss, Nicolas Dudebout, Peter Simons, Ryan Trinkle, Samuel Dionne-Riel, Sean Seefried, Shea Levy, Symphorien Gibol, Tim Engler, Tim Sears, Tuomas Tynkkynen, volth, Will Dietz, Yorick van Pelt and zimbatm.
Release 2.0 (2018-02-22)
The following incompatible changes have been made:
-
The manifest-based substituter mechanism (
download-using-manifests
) has been removed. It has been superseded by the binary cache substituter mechanism since several years. As a result, the following programs have been removed:-
nix-pull
-
nix-generate-patches
-
bsdiff
-
bspatch
-
-
The “copy from other stores” substituter mechanism (
copy-from-other-stores
and theNIX_OTHER_STORES
environment variable) has been removed. It was primarily used by the NixOS installer to copy available paths from the installation medium. The replacement is to use a chroot store as a substituter (e.g.--substituters /mnt
), or to build into a chroot store (e.g.--store /mnt --substituters /
). -
The command
nix-push
has been removed as part of the effort to eliminate Nix's dependency on Perl. You can usenix copy
instead, e.g.nix copy --to file:///tmp/my-binary-cache paths…
-
The “nested” log output feature (
--log-type pretty
) has been removed. As a result,nix-log2xml
was also removed. -
OpenSSL-based signing has been removed. This feature was never well-supported. A better alternative is provided by the
secret-key-files
andtrusted-public-keys
options. -
Failed build caching has been removed. This feature was introduced to support the Hydra continuous build system, but Hydra no longer uses it.
-
nix-mode.el
has been removed from Nix. It is now a separate repository and can be installed through the MELPA package repository.
This release has the following new features:
-
It introduces a new command named
nix
, which is intended to eventually replace allnix-*
commands with a more consistent and better designed user interface. It currently provides replacements for some (but not all) of the functionality provided bynix-store
,nix-build
,nix-shell -p
,nix-env -qa
,nix-instantiate --eval
,nix-push
andnix-copy-closure
. It has the following major features:-
Unlike the legacy commands, it has a consistent way to refer to packages and package-like arguments (like store paths). For example, the following commands all copy the GNU Hello package to a remote machine:
nix copy --to ssh://machine nixpkgs.hello nix copy --to ssh://machine /nix/store/0i2jd68mp5g6h2sa5k9c85rb80sn8hi9-hello-2.10 nix copy --to ssh://machine '(with import <nixpkgs> {}; hello)'
By contrast,
nix-copy-closure
only accepted store paths as arguments. -
It is self-documenting:
--help
shows all available command-line arguments. If--help
is given after a subcommand, it shows examples for that subcommand.nix --help-config
shows all configuration options. -
It is much less verbose. By default, it displays a single-line progress indicator that shows how many packages are left to be built or downloaded, and (if there are running builds) the most recent line of builder output. If a build fails, it shows the last few lines of builder output. The full build log can be retrieved using
nix log
. -
It provides all
nix.conf
configuration options as command line flags. For example, instead of--option http-connections 100
you can write--http-connections 100
. Boolean options can be written as--foo
or--no-foo
(e.g.--no-auto-optimise-store
). -
Many subcommands have a
--json
flag to write results to stdout in JSON format.
Warning
Please note that the
nix
command is a work in progress and the interface is subject to change.It provides the following high-level (“porcelain”) subcommands:
-
nix build
is a replacement fornix-build
. -
nix run
executes a command in an environment in which the specified packages are available. It is (roughly) a replacement fornix-shell -p
. Unlike that command, it does not execute the command in a shell, and has a flag (-c
) that specifies the unquoted command line to be executed.It is particularly useful in conjunction with chroot stores, allowing Linux users who do not have permission to install Nix in
/nix/store
to still use binary substitutes that assume/nix/store
. For example,nix run --store ~/my-nix nixpkgs.hello -c hello --greeting 'Hi everybody!'
downloads (or if not substitutes are available, builds) the GNU Hello package into
~/my-nix/nix/store
, then runshello
in a mount namespace where~/my-nix/nix/store
is mounted onto/nix/store
. -
nix search
replacesnix-env -qa
. It searches the available packages for occurrences of a search string in the attribute name, package name or description. Unlikenix-env -qa
, it has a cache to speed up subsequent searches. -
nix copy
copies paths between arbitrary Nix stores, generalisingnix-copy-closure
andnix-push
. -
nix repl
replaces the external programnix-repl
. It provides an interactive environment for evaluating and building Nix expressions. Note that it useslinenoise-ng
instead of GNU Readline. -
nix upgrade-nix
upgrades Nix to the latest stable version. This requires that Nix is installed in a profile. (Thus it won’t work on NixOS, or if it’s installed outside of the Nix store.) -
nix verify
checks whether store paths are unmodified and/or “trusted” (see below). It replacesnix-store --verify
andnix-store --verify-path
. -
nix log
shows the build log of a package or path. If the build log is not available locally, it will try to obtain it from the configured substituters (such as cache.nixos.org, which now provides build logs). -
nix edit
opens the source code of a package in your editor. -
nix eval
replacesnix-instantiate --eval
. -
nix why-depends
shows why one store path has another in its closure. This is primarily useful to finding the causes of closure bloat. For example,nix why-depends nixpkgs.vlc nixpkgs.libdrm.dev
shows a chain of files and fragments of file contents that cause the VLC package to have the “dev” output of
libdrm
in its closure — an undesirable situation. -
nix path-info
shows information about store paths, replacingnix-store -q
. A useful feature is the option--closure-size
(-S
). For example, the following command show the closure sizes of every path in the current NixOS system closure, sorted by size:nix path-info -rS /run/current-system | sort -nk2
-
nix optimise-store
replacesnix-store --optimise
. The main difference is that it has a progress indicator.
A number of low-level (“plumbing”) commands are also available:
-
nix ls-store
andnix ls-nar
list the contents of a store path or NAR file. The former is primarily useful in conjunction with remote stores, e.g.nix ls-store --store https://cache.nixos.org/ -lR /nix/store/0i2jd68mp5g6h2sa5k9c85rb80sn8hi9-hello-2.10
lists the contents of path in a binary cache.
-
nix cat-store
andnix cat-nar
allow extracting a file from a store path or NAR file. -
nix dump-path
writes the contents of a store path to stdout in NAR format. This replacesnix-store --dump
. -
nix show-derivation
displays a store derivation in JSON format. This is an alternative topp-aterm
. -
nix add-to-store
replacesnix-store --add
. -
nix sign-paths
signs store paths. -
nix copy-sigs
copies signatures from one store to another. -
nix show-config
shows all configuration options and their current values.
-
-
The store abstraction that Nix has had for a long time to support store access via the Nix daemon has been extended significantly. In particular, substituters (which used to be external programs such as
download-from-binary-cache
) are now subclasses of the abstractStore
class. This allows many Nix commands to operate on such store types. For example,nix path-info
shows information about paths in your local Nix store, whilenix path-info --store https://cache.nixos.org/
shows information about paths in the specified binary cache. Similarly,nix-copy-closure
,nix-push
and substitution are all instances of the general notion of copying paths between different kinds of Nix stores.Stores are specified using an URI-like syntax, e.g. https://cache.nixos.org/ or ssh://machine. The following store types are supported:
-
LocalStore
(store URIlocal
or an absolute path) and the misnamedRemoteStore
(daemon
) provide access to a local Nix store, the latter via the Nix daemon. You can useauto
or the empty string to auto-select a local or daemon store depending on whether you have write permission to the Nix store. It is no longer necessary to set theNIX_REMOTE
environment variable to use the Nix daemon.As noted above,
LocalStore
now supports chroot builds, allowing the “physical” location of the Nix store (e.g./home/alice/nix/store
) to differ from its “logical” location (typically/nix/store
). This allows non-root users to use Nix while still getting the benefits from prebuilt binaries from cache.nixos.org. -
BinaryCacheStore
is the abstract superclass of all binary cache stores. It supports writing build logs and NAR content listings in JSON format. -
HttpBinaryCacheStore
(http://
,https://
) supports binary caches via HTTP or HTTPS. If the server supportsPUT
requests, it supports uploading store paths via commands such asnix copy
. -
LocalBinaryCacheStore
(file://
) supports binary caches in the local filesystem. -
S3BinaryCacheStore
(s3://
) supports binary caches stored in Amazon S3, if enabled at compile time. -
LegacySSHStore
(ssh://
) is used to implement remote builds andnix-copy-closure
. -
SSHStore
(ssh-ng://
) supports arbitrary Nix operations on a remote machine via the same protocol used bynix-daemon
.
-
-
Security has been improved in various ways:
-
Nix now stores signatures for local store paths. When paths are copied between stores (e.g., copied from a binary cache to a local store), signatures are propagated.
Locally-built paths are signed automatically using the secret keys specified by the
secret-key-files
store option. Secret/public key pairs can be generated usingnix-store --generate-binary-cache-key
.In addition, locally-built store paths are marked as “ultimately trusted”, but this bit is not propagated when paths are copied between stores.
-
Content-addressable store paths no longer require signatures — they can be imported into a store by unprivileged users even if they lack signatures.
-
The command
nix verify
checks whether the specified paths are trusted, i.e., have a certain number of trusted signatures, are ultimately trusted, or are content-addressed. -
Substitutions from binary caches now require signatures by default. This was already the case on NixOS.
-
In Linux sandbox builds, we now use
/build
instead of/tmp
as the temporary build directory. This fixes potential security problems when a build accidentally stores itsTMPDIR
in some security-sensitive place, such as an RPATH.
-
-
Pure evaluation mode. With the
--pure-eval
flag, Nix enables a variant of the existing restricted evaluation mode that forbids access to anything that could cause different evaluations of the same command line arguments to produce a different result. This includes builtin functions such asbuiltins.getEnv
, but more importantly, all filesystem or network access unless a content hash or commit hash is specified. For example, calls tobuiltins.fetchGit
are only allowed if arev
attribute is specified.The goal of this feature is to enable true reproducibility and traceability of builds (including NixOS system configurations) at the evaluation level. For example, in the future,
nixos-rebuild
might build configurations from a Nix expression in a Git repository in pure mode. That expression might fetch other repositories such as Nixpkgs viabuiltins.fetchGit
. The commit hash of the top-level repository then uniquely identifies a running system, and, in conjunction with that repository, allows it to be reproduced or modified. -
There are several new features to support binary reproducibility (i.e. to help ensure that multiple builds of the same derivation produce exactly the same output). When
enforce-determinism
is set tofalse
, it’s no longer a fatal error if build rounds produce different output. Also, a hook nameddiff-hook
is provided to allow you to run tools such asdiffoscope
when build rounds produce different output. -
Configuring remote builds is a lot easier now. Provided you are not using the Nix daemon, you can now just specify a remote build machine on the command line, e.g.
--option builders 'ssh://my-mac x86_64-darwin'
. The environment variableNIX_BUILD_HOOK
has been removed and is no longer needed. The environment variableNIX_REMOTE_SYSTEMS
is still supported for compatibility, but it is also possible to specify builders innix.conf
by setting the optionbuilders = @path
. -
If a fixed-output derivation produces a result with an incorrect hash, the output path is moved to the location corresponding to the actual hash and registered as valid. Thus, a subsequent build of the fixed-output derivation with the correct hash is unnecessary.
-
nix-shell
now sets theIN_NIX_SHELL
environment variable during evaluation and in the shell itself. This can be used to perform different actions depending on whether you’re in a Nix shell or in a regular build. Nixpkgs provideslib.inNixShell
to check this variable during evaluation. -
NIX_PATH
is now lazy, so URIs in the path are only downloaded if they are needed for evaluation. -
You can now use
channel:
as a short-hand for https://nixos.org/channels//nixexprs.tar.xz. For example,nix-build channel:nixos-15.09 -A hello
will build the GNU Hello package from thenixos-15.09
channel. In the future, this may use Git to fetch updates more efficiently. -
When
--no-build-output
is given, the last 10 lines of the build log will be shown if a build fails. -
Networking has been improved:
-
HTTP/2 is now supported. This makes binary cache lookups much more efficient.
-
We now retry downloads on many HTTP errors, making binary caches substituters more resilient to temporary failures.
-
HTTP credentials can now be configured via the standard
netrc
mechanism. -
If S3 support is enabled at compile time, s3:// URIs are supported in all places where Nix allows URIs.
-
Brotli compression is now supported. In particular, cache.nixos.org build logs are now compressed using Brotli.
-
-
nix-env
now ignores packages with bad derivation names (in particular those starting with a digit or containing a dot). -
Many configuration options have been renamed, either because they were unnecessarily verbose (e.g.
build-use-sandbox
is now justsandbox
) or to reflect generalised behaviour (e.g.binary-caches
is nowsubstituters
because it allows arbitrary store URIs). The old names are still supported for compatibility. -
The
max-jobs
option can now be set toauto
to use the number of CPUs in the system. -
Hashes can now be specified in base-64 format, in addition to base-16 and the non-standard base-32.
-
nix-shell
now usesbashInteractive
from Nixpkgs, rather than thebash
command that happens to be in the caller’sPATH
. This is especially important on macOS where thebash
provided by the system is seriously outdated and cannot executestdenv
’s setup script. -
Nix can now automatically trigger a garbage collection if free disk space drops below a certain level during a build. This is configured using the
min-free
andmax-free
options. -
nix-store -q --roots
andnix-store --gc --print-roots
now show temporary and in-memory roots. -
Nix can now be extended with plugins. See the documentation of the
plugin-files
option for more details.
The Nix language has the following new features:
-
It supports floating point numbers. They are based on the C++
float
type and are supported by the existing numerical operators. Export and import to and from JSON and XML works, too. -
Derivation attributes can now reference the outputs of the derivation using the
placeholder
builtin function. For example, the attributeconfigureFlags = "--prefix=${placeholder "out"} --includedir=${placeholder "dev"}";
will cause the
configureFlags
environment variable to contain the actual store paths corresponding to theout
anddev
outputs.
The following builtin functions are new or extended:
-
builtins.fetchGit
allows Git repositories to be fetched at evaluation time. Thus it differs from thefetchgit
function in Nixpkgs, which fetches at build time and cannot be used to fetch Nix expressions during evaluation. A typical use case is to import external NixOS modules from your configuration, e.g.imports = [ (builtins.fetchGit https://github.com/edolstra/dwarffs + "/module.nix") ];
-
Similarly,
builtins.fetchMercurial
allows you to fetch Mercurial repositories. -
builtins.path
generalisesbuiltins.filterSource
and path literals (e.g../foo
). It allows specifying a store path name that differs from the source path name (e.g.builtins.path { path = ./foo; name = "bar"; }
) and also supports filtering out unwanted files. -
builtins.fetchurl
andbuiltins.fetchTarball
now supportsha256
andname
attributes. -
builtins.split
splits a string using a POSIX extended regular expression as the separator. -
builtins.partition
partitions the elements of a list into two lists, depending on a Boolean predicate. -
<nix/fetchurl.nix>
now uses the content-addressable tarball cache at http://tarballs.nixos.org/, just likefetchurl
in Nixpkgs. (f2682e6e18a76ecbfb8a12c17e3a0ca15c084197) -
In restricted and pure evaluation mode, builtin functions that download from the network (such as
fetchGit
) are permitted to fetch underneath a list of URI prefixes specified in the optionallowed-uris
.
The Nix build environment has the following changes:
-
Values such as Booleans, integers, (nested) lists and attribute sets can now be passed to builders in a non-lossy way. If the special attribute
__structuredAttrs
is set totrue
, the other derivation attributes are serialised in JSON format and made available to the builder via the file.attrs.json
in the builder’s temporary directory. This obviates the need forpassAsFile
since JSON files have no size restrictions, unlike process environments.As a convenience to Bash builders, Nix writes a script named
.attrs.sh
to the builder’s directory that initialises shell variables corresponding to all attributes that are representable in Bash. This includes non-nested (associative) arrays. For example, the attributehardening.format = true
ends up as the Bash associative array element${hardening[format]}
. -
Builders can now communicate what build phase they are in by writing messages to the file descriptor specified in
NIX_LOG_FD
. The current phase is shown by thenix
progress indicator. -
In Linux sandbox builds, we now provide a default
/bin/sh
(namelyash
from BusyBox). -
In structured attribute mode,
exportReferencesGraph
exports extended information about closures in JSON format. In particular, it includes the sizes and hashes of paths. This is primarily useful for NixOS image builders. -
Builds are now killed as soon as Nix receives EOF on the builder’s stdout or stderr. This fixes a bug that allowed builds to hang Nix indefinitely, regardless of timeouts.
-
The
sandbox-paths
configuration option can now specify optional paths by appending a?
, e.g./dev/nvidiactl?
will bind-mount/dev/nvidiactl
only if it exists. -
On Linux, builds are now executed in a user namespace with UID 1000 and GID 100.
A number of significant internal changes were made:
-
Nix no longer depends on Perl and all Perl components have been rewritten in C++ or removed. The Perl bindings that used to be part of Nix have been moved to a separate package,
nix-perl
. -
All
Store
classes are now thread-safe.RemoteStore
supports multiple concurrent connections to the daemon. This is primarily useful in multi-threaded programs such ashydra-queue-runner
.
This release has contributions from Adrien Devresse, Alexander Ried, Alex Cruice, Alexey Shmalko, AmineChikhaoui, Andy Wingo, Aneesh Agrawal, Anthony Cowley, Armijn Hemel, aszlig, Ben Gamari, Benjamin Hipple, Benjamin Staffin, Benno Fünfstück, Bjørn Forsman, Brian McKenna, Charles Strahan, Chase Adams, Chris Martin, Christian Theune, Chris Warburton, Daiderd Jordan, Dan Connolly, Daniel Peebles, Dan Peebles, davidak, David McFarland, Dmitry Kalinkin, Domen Kožar, Eelco Dolstra, Emery Hemingway, Eric Litak, Eric Wolf, Fabian Schmitthenner, Frederik Rietdijk, Gabriel Gonzalez, Giorgio Gallo, Graham Christensen, Guillaume Maudoux, Harmen, Iavael, James Broadhead, James Earl Douglas, Janus Troelsen, Jeremy Shaw, Joachim Schiele, Joe Hermaszewski, Joel Moberg, Johannes 'fish' Ziemke, Jörg Thalheim, Jude Taylor, kballou, Keshav Kini, Kjetil Orbekk, Langston Barrett, Linus Heckemann, Ludovic Courtès, Manav Rathi, Marc Scholten, Markus Hauck, Matt Audesse, Matthew Bauer, Matthias Beyer, Matthieu Coudron, N1X, Nathan Zadoks, Neil Mayhew, Nicolas B. Pierron, Niklas Hambüchen, Nikolay Amiantov, Ole Jørgen Brønner, Orivej Desh, Peter Simons, Peter Stuart, Pyry Jahkola, regnat, Renzo Carbonara, Rhys, Robert Vollmert, Scott Olson, Scott R. Parish, Sergei Trofimovich, Shea Levy, Sheena Artrip, Spencer Baugh, Stefan Junker, Susan Potter, Thomas Tuegel, Timothy Allen, Tristan Hume, Tuomas Tynkkynen, tv, Tyson Whitehead, Vladimír Čunát, Will Dietz, wmertens, Wout Mertens, zimbatm and Zoran Plesivčak.
Release 1.11.10 (2017-06-12)
This release fixes a security bug in Nix’s “build user” build isolation
mechanism. Previously, Nix builders had the ability to create setuid
binaries owned by a nixbld
user. Such a binary could then be used by
an attacker to assume a nixbld
identity and interfere with subsequent
builds running under the same UID.
To prevent this issue, Nix now disallows builders to create setuid and setgid binaries. On Linux, this is done using a seccomp BPF filter. Note that this imposes a small performance penalty (e.g. 1% when building GNU Hello). Using seccomp, we now also prevent the creation of extended attributes and POSIX ACLs since these cannot be represented in the NAR format and (in the case of POSIX ACLs) allow bypassing regular Nix store permissions. On macOS, the restriction is implemented using the existing sandbox mechanism, which now uses a minimal “allow all except the creation of setuid/setgid binaries” profile when regular sandboxing is disabled. On other platforms, the “build user” mechanism is now disabled.
Thanks go to Linus Heckemann for discovering and reporting this bug.
Release 1.11 (2016-01-19)
This is primarily a bug fix release. It also has a number of new features:
-
nix-prefetch-url
can now download URLs specified in a Nix expression. For example,$ nix-prefetch-url -A hello.src
will prefetch the file specified by the
fetchurl
call in the attributehello.src
from the Nix expression in the current directory, and print the cryptographic hash of the resulting file on stdout. This differs fromnix-build -A hello.src
in that it doesn't verify the hash, and is thus useful when you’re updating a Nix expression.You can also prefetch the result of functions that unpack a tarball, such as
fetchFromGitHub
. For example:$ nix-prefetch-url --unpack https://github.com/NixOS/patchelf/archive/0.8.tar.gz
or from a Nix expression:
$ nix-prefetch-url -A nix-repl.src
-
The builtin function
<nix/fetchurl.nix>
now supports downloading and unpacking NARs. This removes the need to have multiple downloads in the Nixpkgs stdenv bootstrap process (like a separate busybox binary for Linux, or curl/mkdir/sh/bzip2 for Darwin). Now all those files can be combined into a single NAR, optionally compressed usingxz
. -
Nix now supports SHA-512 hashes for verifying fixed-output derivations, and in
builtins.hashString
. -
The new flag
--option build-repeat N
will cause every build to be executed N+1 times. If the build output differs between any round, the build is rejected, and the output paths are not registered as valid. This is primarily useful to verify build determinism. (We already had a--check
option to repeat a previously succeeded build. However, with--check
, non-deterministic builds are registered in the DB. Preventing that is useful for Hydra to ensure that non-deterministic builds don't end up getting published to the binary cache.) -
The options
--check
and--option build-repeat N
, if they detect a difference between two runs of the same derivation and-K
is given, will make the output of the other run available understore-path-check
. This makes it easier to investigate the non-determinism using tools likediffoscope
, e.g.,$ nix-build pkgs/stdenv/linux -A stage1.pkgs.zlib --check -K error: derivation ‘/nix/store/l54i8wlw2265…-zlib-1.2.8.drv’ may not be deterministic: output ‘/nix/store/11a27shh6n2i…-zlib-1.2.8’ differs from ‘/nix/store/11a27shh6n2i…-zlib-1.2.8-check’ $ diffoscope /nix/store/11a27shh6n2i…-zlib-1.2.8 /nix/store/11a27shh6n2i…-zlib-1.2.8-check … ├── lib/libz.a │ ├── metadata │ │ @@ -1,15 +1,15 @@ │ │ -rw-r--r-- 30001/30000 3096 Jan 12 15:20 2016 adler32.o … │ │ +rw-r--r-- 30001/30000 3096 Jan 12 15:28 2016 adler32.o …
-
Improved FreeBSD support.
-
nix-env -qa --xml --meta
now prints license information. -
The maximum number of parallel TCP connections that the binary cache substituter will use has been decreased from 150 to 25. This should prevent upsetting some broken NAT routers, and also improves performance.
-
All "chroot"-containing strings got renamed to "sandbox". In particular, some Nix options got renamed, but the old names are still accepted as lower-priority aliases.
This release has contributions from Anders Claesson, Anthony Cowley, Bjørn Forsman, Brian McKenna, Danny Wilson, davidak, Eelco Dolstra, Fabian Schmitthenner, FrankHB, Ilya Novoselov, janus, Jim Garrison, John Ericson, Jude Taylor, Ludovic Courtès, Manuel Jacob, Mathnerd314, Pascal Wittmann, Peter Simons, Philip Potter, Preston Bennes, Rommel M. Martinez, Sander van der Burg, Shea Levy, Tim Cuthbertson, Tuomas Tynkkynen, Utku Demir and Vladimír Čunát.
Release 1.10 (2015-09-03)
This is primarily a bug fix release. It also has a number of new features:
-
A number of builtin functions have been added to reduce Nixpkgs/NixOS evaluation time and memory consumption:
all
,any
,concatStringsSep
,foldl’
,genList
,replaceStrings
,sort
. -
The garbage collector is more robust when the disk is full.
-
Nix supports a new API for building derivations that doesn’t require a
.drv
file to be present on disk; it only requires an in-memory representation of the derivation. This is used by the Hydra continuous build system to make remote builds more efficient. -
The function
<nix/fetchurl.nix>
now uses a builtin builder (i.e. it doesn’t require starting an external process; the download is performed by Nix itself). This ensures that derivation paths don’t change when Nix is upgraded, and obviates the need for ugly hacks to support chroot execution. -
--version -v
now prints some configuration information, in particular what compile-time optional features are enabled, and the paths of various directories. -
Build users have their supplementary groups set correctly.
This release has contributions from Eelco Dolstra, Guillaume Maudoux, Iwan Aucamp, Jaka Hudoklin, Kirill Elagin, Ludovic Courtès, Manolis Ragkousis, Nicolas B. Pierron and Shea Levy.
Release 1.9 (2015-06-12)
In addition to the usual bug fixes, this release has the following new features:
-
Signed binary cache support. You can enable signature checking by adding the following to
nix.conf
:signed-binary-caches = * binary-cache-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY=
This will prevent Nix from downloading any binary from the cache that is not signed by one of the keys listed in
binary-cache-public-keys
.Signature checking is only supported if you built Nix with the
libsodium
package.Note that while Nix has had experimental support for signed binary caches since version 1.7, this release changes the signature format in a backwards-incompatible way.
-
Automatic downloading of Nix expression tarballs. In various places, you can now specify the URL of a tarball containing Nix expressions (such as Nixpkgs), which will be downloaded and unpacked automatically. For example:
-
In
nix-env
:$ nix-env -f https://github.com/NixOS/nixpkgs-channels/archive/nixos-14.12.tar.gz -iA firefox
This installs Firefox from the latest tested and built revision of the NixOS 14.12 channel.
-
In
nix-build
andnix-shell
:$ nix-build https://github.com/NixOS/nixpkgs/archive/master.tar.gz -A hello
This builds GNU Hello from the latest revision of the Nixpkgs master branch.
-
In the Nix search path (as specified via
NIX_PATH
or-I
). For example, to start a shell containing the Pan package from a specific version of Nixpkgs:$ nix-shell -p pan -I nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/8a3eea054838b55aca962c3fbde9c83c102b8bf2.tar.gz
-
In
nixos-rebuild
(on NixOS):$ nixos-rebuild test -I nixpkgs=https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz
-
In Nix expressions, via the new builtin function
fetchTarball
:with import (fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-14.12.tar.gz) {}; …
(This is not allowed in restricted mode.)
-
-
nix-shell
improvements:-
nix-shell
now has a flag--run
to execute a command in thenix-shell
environment, e.g.nix-shell --run make
. This is like the existing--command
flag, except that it uses a non-interactive shell (ensuring that hitting Ctrl-C won’t drop you into the child shell). -
nix-shell
can now be used as a#!
-interpreter. This allows you to write scripts that dynamically fetch their own dependencies. For example, here is a Haskell script that, when invoked, first downloads GHC and the Haskell packages on which it depends:#! /usr/bin/env nix-shell #! nix-shell -i runghc -p haskellPackages.ghc haskellPackages.HTTP import Network.HTTP main = do resp <- Network.HTTP.simpleHTTP (getRequest "http://nixos.org/") body <- getResponseBody resp print (take 100 body)
Of course, the dependencies are cached in the Nix store, so the second invocation of this script will be much faster.
-
-
Chroot improvements:
-
Chroot builds are now supported on Mac OS X (using its sandbox mechanism).
-
If chroots are enabled, they are now used for all derivations, including fixed-output derivations (such as
fetchurl
). The latter do have network access, but can no longer access the host filesystem. If you need the old behaviour, you can set the optionbuild-use-chroot
torelaxed
. -
On Linux, if chroots are enabled, builds are performed in a private PID namespace once again. (This functionality was lost in Nix 1.8.)
-
Store paths listed in
build-chroot-dirs
are now automatically expanded to their closure. For instance, if you want/nix/store/…-bash/bin/sh
mounted in your chroot as/bin/sh
, you only need to saybuild-chroot-dirs = /bin/sh=/nix/store/…-bash/bin/sh
; it is no longer necessary to specify the dependencies of Bash.
-
-
The new derivation attribute
passAsFile
allows you to specify that the contents of derivation attributes should be passed via files rather than environment variables. This is useful if you need to pass very long strings that exceed the size limit of the environment. The Nixpkgs functionwriteTextFile
uses this. -
You can now use
~
in Nix file names to refer to your home directory, e.g.import ~/.nixpkgs/config.nix
. -
Nix has a new option
restrict-eval
that allows limiting what paths the Nix evaluator has access to. By passing--option restrict-eval true
to Nix, the evaluator will throw an exception if an attempt is made to access any file outside of the Nix search path. This is primarily intended for Hydra to ensure that a Hydra jobset only refers to its declared inputs (and is therefore reproducible). -
nix-env
now only creates a new “generation” symlink in/nix/var/nix/profiles
if something actually changed. -
The environment variable
NIX_PAGER
can now be set to overridePAGER
. You can set it tocat
to disable paging for Nix commands only. -
Failing
<...>
lookups now show position information. -
Improved Boehm GC use: we disabled scanning for interior pointers, which should reduce the “
Repeated allocation of very large block
” warnings and associated retention of memory.
This release has contributions from aszlig, Benjamin Staffin, Charles Strahan, Christian Theune, Daniel Hahler, Danylo Hlynskyi Daniel Peebles, Dan Peebles, Domen Kožar, Eelco Dolstra, Harald van Dijk, Hoang Xuan Phu, Jaka Hudoklin, Jeff Ramnani, j-keck, Linquize, Luca Bruno, Michael Merickel, Oliver Dunkl, Rob Vermaas, Rok Garbas, Shea Levy, Tobias Geerinckx-Rice and William A. Kennington III.
Release 1.8 (2014-12-14)
-
Breaking change: to address a race condition, the remote build hook mechanism now uses
nix-store --serve
on the remote machine. This requires build slaves to be updated to Nix 1.8. -
Nix now uses HTTPS instead of HTTP to access the default binary cache,
cache.nixos.org
. -
nix-env
selectors are now regular expressions. For instance, you can do$ nix-env -qa '.*zip.*'
to query all packages with a name containing
zip
. -
nix-store --read-log
can now fetch remote build logs. If a build log is not available locally, then ‘nix-store -l’ will now try to download it from the servers listed in the ‘log-servers’ option in nix.conf. For instance, if you have the configuration optionlog-servers = http://hydra.nixos.org/log
then it will try to get logs from
http://hydra.nixos.org/log/base name of the store path
. This allows you to do things like:$ nix-store -l $(which xterm)
and get a log even if
xterm
wasn't built locally. -
New builtin functions:
attrValues
,deepSeq
,fromJSON
,readDir
,seq
. -
nix-instantiate --eval
now has a--json
flag to print the resulting value in JSON format. -
nix-copy-closure
now usesnix-store --serve
on the remote side to send or receive closures. This fixes a race condition betweennix-copy-closure
and the garbage collector. -
Derivations can specify the new special attribute
allowedRequisites
, which has a similar meaning toallowedReferences
. But instead of only enforcing to explicitly specify the immediate references, it requires the derivation to specify all the dependencies recursively (hence the name, requisites) that are used by the resulting output. -
On Mac OS X, Nix now handles case collisions when importing closures from case-sensitive file systems. This is mostly useful for running NixOps on Mac OS X.
-
The Nix daemon has new configuration options
allowed-users
(specifying the users and groups that are allowed to connect to the daemon) andtrusted-users
(specifying the users and groups that can perform privileged operations like specifying untrusted binary caches). -
The configuration option
build-cores
now defaults to the number of available CPU cores. -
Build users are now used by default when Nix is invoked as root. This prevents builds from accidentally running as root.
-
Nix now includes systemd units and Upstart jobs.
-
Speed improvements to
nix-store --optimise
. -
Language change: the
==
operator now ignores string contexts (the “dependencies” of a string). -
Nix now filters out Nix-specific ANSI escape sequences on standard error. They are supposed to be invisible, but some terminals show them anyway.
-
Various commands now automatically pipe their output into the pager as specified by the
PAGER
environment variable. -
Several improvements to reduce memory consumption in the evaluator.
This release has contributions from Adam Szkoda, Aristid Breitkreuz, Bob van der Linden, Charles Strahan, darealshinji, Eelco Dolstra, Gergely Risko, Joel Taylor, Ludovic Courtès, Marko Durkovic, Mikey Ariel, Paul Colomiets, Ricardo M. Correia, Ricky Elrod, Robert Helgesson, Rob Vermaas, Russell O'Connor, Shea Levy, Shell Turner, Sönke Hahn, Steve Purcell, Vladimír Čunát and Wout Mertens.
Release 1.7 (2014-04-11)
In addition to the usual bug fixes, this release has the following new features:
-
Antiquotation is now allowed inside of quoted attribute names (e.g.
set."${foo}"
). In the case where the attribute name is just a single antiquotation, the quotes can be dropped (e.g. the above example can be writtenset.${foo}
). If an attribute name inside of a set declaration evaluates tonull
(e.g.{ ${null} = false; }
), then that attribute is not added to the set. -
Experimental support for cryptographically signed binary caches. See the commit for details.
-
An experimental new substituter,
download-via-ssh
, that fetches binaries from remote machines via SSH. Specifying the flags--option use-ssh-substituter true --option ssh-substituter-hosts user@hostname
will cause Nix to download binaries from the specified machine, if it has them. -
nix-store -r
andnix-build
have a new flag,--check
, that builds a previously built derivation again, and prints an error message if the output is not exactly the same. This helps to verify whether a derivation is truly deterministic. For example:$ nix-build '<nixpkgs>' -A patchelf … $ nix-build '<nixpkgs>' -A patchelf --check … error: derivation `/nix/store/1ipvxs…-patchelf-0.6' may not be deterministic: hash mismatch in output `/nix/store/4pc1dm…-patchelf-0.6.drv'
-
The
nix-instantiate
flags--eval-only
and--parse-only
have been renamed to--eval
and--parse
, respectively. -
nix-instantiate
,nix-build
andnix-shell
now have a flag--expr
(or-E
) that allows you to specify the expression to be evaluated as a command line argument. For instance,nix-instantiate --eval -E '1 + 2'
will print3
. -
nix-shell
improvements:-
It has a new flag,
--packages
(or-p
), that sets up a build environment containing the specified packages from Nixpkgs. For example, the command$ nix-shell -p sqlite xorg.libX11 hello
will start a shell in which the given packages are present.
-
It now uses
shell.nix
as the default expression, falling back todefault.nix
if the former doesn’t exist. This makes it convenient to have ashell.nix
in your project to set up a nice development environment. -
It evaluates the derivation attribute
shellHook
, if set. Sincestdenv
does not normally execute this hook, it allows you to donix-shell
-specific setup. -
It preserves the user’s timezone setting.
-
-
In chroots, Nix now sets up a
/dev
containing only a minimal set of devices (such as/dev/null
). Note that it only does this if you don’t have/dev
listed in yourbuild-chroot-dirs
setting; otherwise, it will bind-mount the/dev
from outside the chroot.Similarly, if you don’t have
/dev/pts
listed inbuild-chroot-dirs
, Nix will mount a privatedevpts
filesystem on the chroot’s/dev/pts
. -
New built-in function:
builtins.toJSON
, which returns a JSON representation of a value. -
nix-env -q
has a new flag--json
to print a JSON representation of the installed or available packages. -
nix-env
now supports meta attributes with more complex values, such as attribute sets. -
The
-A
flag now allows attribute names with dots in them, e.g.$ nix-instantiate --eval '<nixos>' -A 'config.systemd.units."nscd.service".text'
-
The
--max-freed
option tonix-store --gc
now accepts a unit specifier. For example,nix-store --gc --max-freed 1G
will free up to 1 gigabyte of disk space. -
nix-collect-garbage
has a new flag--delete-older-than
Nd
, which deletes all user environment generations older than N days. Likewise,nix-env --delete-generations
accepts a Nd
age limit. -
Nix now heuristically detects whether a build failure was due to a disk-full condition. In that case, the build is not flagged as “permanently failed”. This is mostly useful for Hydra, which needs to distinguish between permanent and transient build failures.
-
There is a new symbol
__curPos
that expands to an attribute set containing its file name and line and column numbers, e.g.{ file = "foo.nix"; line = 10; column = 5; }
. There also is a new builtin function,unsafeGetAttrPos
, that returns the position of an attribute. This is used by Nixpkgs to provide location information in error messages, e.g.$ nix-build '<nixpkgs>' -A libreoffice --argstr system x86_64-darwin error: the package ‘libreoffice-4.0.5.2’ in ‘.../applications/office/libreoffice/default.nix:263’ is not supported on ‘x86_64-darwin’
-
The garbage collector is now more concurrent with other Nix processes because it releases certain locks earlier.
-
The binary tarball installer has been improved. You can now install Nix by running:
$ bash <(curl -L https://nixos.org/nix/install)
-
More evaluation errors include position information. For instance, selecting a missing attribute will print something like
error: attribute `nixUnstabl' missing, at /etc/nixos/configurations/misc/eelco/mandark.nix:216:15
-
The command
nix-setuid-helper
is gone. -
Nix no longer uses Automake, but instead has a non-recursive, GNU Make-based build system.
-
All installed libraries now have the prefix
libnix
. In particular, this gets rid oflibutil
, which could clash with libraries with the same name from other packages. -
Nix now requires a compiler that supports C++11.
This release has contributions from Danny Wilson, Domen Kožar, Eelco Dolstra, Ian-Woo Kim, Ludovic Courtès, Maxim Ivanov, Petr Rockai, Ricardo M. Correia and Shea Levy.
Release 1.6.1 (2013-10-28)
This is primarily a bug fix release. Changes of interest are:
-
Nix 1.6 accidentally changed the semantics of antiquoted paths in strings, such as
"${/foo}/bar"
. This release reverts to the Nix 1.5.3 behaviour. -
Previously, Nix optimised expressions such as
"${expr}"
to expr. Thus it neither checked whether expr could be coerced to a string, nor applied such coercions. This meant that"${123}"
evaluatued to123
, and"${./foo}"
evaluated to./foo
(even though"${./foo} "
evaluates to"/nix/store/hash-foo "
). Nix now checks the type of antiquoted expressions and applies coercions. -
Nix now shows the exact position of undefined variables. In particular, undefined variable errors in a
with
previously didn't show any position information, so this makes it a lot easier to fix such errors. -
Undefined variables are now treated consistently. Previously, the
tryEval
function would catch undefined variables inside awith
but not outside. NowtryEval
never catches undefined variables. -
Bash completion in
nix-shell
now works correctly. -
Stack traces are less verbose: they no longer show calls to builtin functions and only show a single line for each derivation on the call stack.
-
New built-in function:
builtins.typeOf
, which returns the type of its argument as a string.
Release 1.6 (2013-09-10)
In addition to the usual bug fixes, this release has several new features:
-
The command
nix-build --run-env
has been renamed tonix-shell
. -
nix-shell
now sources$stdenv/setup
inside the interactive shell, rather than in a parent shell. This ensures that shell functions defined bystdenv
can be used in the interactive shell. -
nix-shell
has a new flag--pure
to clear the environment, so you get an environment that more closely corresponds to the “real” Nix build. -
nix-shell
now sets the shell prompt (PS1
) to ensure that Nix shells are distinguishable from your regular shells. -
nix-env
no longer requires a*
argument to match all packages, sonix-env -qa
is equivalent tonix-env -qa '*'
. -
nix-env -i
has a new flag--remove-all
(-r
) to remove all previous packages from the profile. This makes it easier to do declarative package management similar to NixOS’senvironment.systemPackages
. For instance, if you have a specificationmy-packages.nix
like this:with import <nixpkgs> {}; [ thunderbird geeqie ... ]
then after any change to this file, you can run:
$ nix-env -f my-packages.nix -ir
to update your profile to match the specification.
-
The ‘
with
’ language construct is now more lazy. It only evaluates its argument if a variable might actually refer to an attribute in the argument. For instance, this now works:let pkgs = with pkgs; { foo = "old"; bar = foo; } // overrides; overrides = { foo = "new"; }; in pkgs.bar
This evaluates to
"new"
, while previously it gave an “infinite recursion” error. -
Nix now has proper integer arithmetic operators. For instance, you can write
x + y
instead ofbuiltins.add x y
, orx < y
instead ofbuiltins.lessThan x y
. The comparison operators also work on strings. -
On 64-bit systems, Nix integers are now 64 bits rather than 32 bits.
-
When using the Nix daemon, the
nix-daemon
worker process now runs on the same CPU as the client, on systems that support setting CPU affinity. This gives a significant speedup on some systems. -
If a stack overflow occurs in the Nix evaluator, you now get a proper error message (rather than “Segmentation fault”) on some systems.
-
In addition to directories, you can now bind-mount regular files in chroots through the (now misnamed) option
build-chroot-dirs
.
This release has contributions from Domen Kožar, Eelco Dolstra, Florian Friesdorf, Gergely Risko, Ivan Kozik, Ludovic Courtès and Shea Levy.
Release 1.5.2 (2013-05-13)
This is primarily a bug fix release. It has contributions from Eelco Dolstra, Lluís Batlle i Rossell and Shea Levy.
Release 1.5 (2013-02-27)
This is a brown paper bag release to fix a regression introduced by the hard link security fix in 1.4.
Release 1.4 (2013-02-26)
This release fixes a security bug in multi-user operation. It was possible for derivations to cause the mode of files outside of the Nix store to be changed to 444 (read-only but world-readable) by creating hard links to those files (details).
There are also the following improvements:
-
New built-in function:
builtins.hashString
. -
Build logs are now stored in
/nix/var/log/nix/drvs/XX/
, where XX is the first two characters of the derivation. This is useful on machines that keep a lot of build logs (such as Hydra servers). -
The function
corepkgs/fetchurl
can now make the downloaded file executable. This will allow getting rid of all bootstrap binaries in the Nixpkgs source tree. -
Language change: The expression
"${./path} ..."
now evaluates to a string instead of a path.
Release 1.3 (2013-01-04)
This is primarily a bug fix release. When this version is first run on Linux, it removes any immutable bits from the Nix store and increases the schema version of the Nix store. (The previous release removed support for setting the immutable bit; this release clears any remaining immutable bits to make certain operations more efficient.)
This release has contributions from Eelco Dolstra and Stuart Pernsteiner.
Release 1.2 (2012-12-06)
This release has the following improvements and changes:
-
Nix has a new binary substituter mechanism: the binary cache. A binary cache contains pre-built binaries of Nix packages. Whenever Nix wants to build a missing Nix store path, it will check a set of binary caches to see if any of them has a pre-built binary of that path. The configuration setting
binary-caches
contains a list of URLs of binary caches. For instance, doing$ nix-env -i thunderbird --option binary-caches http://cache.nixos.org
will install Thunderbird and its dependencies, using the available pre-built binaries in http://cache.nixos.org. The main advantage over the old “manifest”-based method of getting pre-built binaries is that you don’t have to worry about your manifest being in sync with the Nix expressions you’re installing from; i.e., you don’t need to run
nix-pull
to update your manifest. It’s also more scalable because you don’t need to redownload a giant manifest file every time.A Nix channel can provide a binary cache URL that will be used automatically if you subscribe to that channel. If you use the Nixpkgs or NixOS channels (http://nixos.org/channels) you automatically get the cache http://cache.nixos.org.
Binary caches are created using
nix-push
. For details on the operation and format of binary caches, see thenix-push
manpage. More details are provided in this nix-dev posting. -
Multiple output support should now be usable. A derivation can declare that it wants to produce multiple store paths by saying something like
outputs = [ "lib" "headers" "doc" ];
This will cause Nix to pass the intended store path of each output to the builder through the environment variables
lib
,headers
anddoc
. Other packages can refer to a specific output by referring topkg.output
, e.g.buildInputs = [ pkg.lib pkg.headers ];
If you install a package with multiple outputs using
nix-env
, each output path will be symlinked into the user environment. -
Dashes are now valid as part of identifiers and attribute names.
-
The new operation
nix-store --repair-path
allows corrupted or missing store paths to be repaired by redownloading them.nix-store --verify --check-contents --repair
will scan and repair all paths in the Nix store. Similarly,nix-env
,nix-build
,nix-instantiate
andnix-store --realise
have a--repair
flag to detect and fix bad paths by rebuilding or redownloading them. -
Nix no longer sets the immutable bit on files in the Nix store. Instead, the recommended way to guard the Nix store against accidental modification on Linux is to make it a read-only bind mount, like this:
$ mount --bind /nix/store /nix/store $ mount -o remount,ro,bind /nix/store
Nix will automatically make
/nix/store
writable as needed (using a private mount namespace) to allow modifications. -
Store optimisation (replacing identical files in the store with hard links) can now be done automatically every time a path is added to the store. This is enabled by setting the configuration option
auto-optimise-store
totrue
(disabled by default). -
Nix now supports
xz
compression for NARs in addition tobzip2
. It compresses about 30% better on typical archives and decompresses about twice as fast. -
Basic Nix expression evaluation profiling: setting the environment variable
NIX_COUNT_CALLS
to1
will cause Nix to print how many times each primop or function was executed. -
New primops:
concatLists
,elem
,elemAt
andfilter
. -
The command
nix-copy-closure
has a new flag--use-substitutes
(-s
) to download missing paths on the target machine using the substitute mechanism. -
The command
nix-worker
has been renamed tonix-daemon
. Support for running the Nix worker in “slave” mode has been removed. -
The
--help
flag of every Nix command now invokesman
. -
Chroot builds are now supported on systemd machines.
This release has contributions from Eelco Dolstra, Florian Friesdorf, Mats Erik Andersson and Shea Levy.
Release 1.1 (2012-07-18)
This release has the following improvements:
-
On Linux, when doing a chroot build, Nix now uses various namespace features provided by the Linux kernel to improve build isolation. Namely:
-
The private network namespace ensures that builders cannot talk to the outside world (or vice versa): each build only sees a private loopback interface. This also means that two concurrent builds can listen on the same port (e.g. as part of a test) without conflicting with each other.
-
The PID namespace causes each build to start as PID 1. Processes outside of the chroot are not visible to those on the inside. On the other hand, processes inside the chroot are visible from the outside (though with different PIDs).
-
The IPC namespace prevents the builder from communicating with outside processes using SysV IPC mechanisms (shared memory, message queues, semaphores). It also ensures that all IPC objects are destroyed when the builder exits.
-
The UTS namespace ensures that builders see a hostname of
localhost
rather than the actual hostname. -
The private mount namespace was already used by Nix to ensure that the bind-mounts used to set up the chroot are cleaned up automatically.
-
-
Build logs are now compressed using
bzip2
. The commandnix-store -l
decompresses them on the fly. This can be disabled by setting the optionbuild-compress-log
tofalse
. -
The creation of build logs in
/nix/var/log/nix/drvs
can be disabled by setting the new optionbuild-keep-log
tofalse
. This is useful, for instance, for Hydra build machines. -
Nix now reserves some space in
/nix/var/nix/db/reserved
to ensure that the garbage collector can run successfully if the disk is full. This is necessary because SQLite transactions fail if the disk is full. -
Added a basic
fetchurl
function. This is not intended to replace thefetchurl
in Nixpkgs, but is useful for bootstrapping; e.g., it will allow us to get rid of the bootstrap binaries in the Nixpkgs source tree and download them instead. You can use it by doingimport <nix/fetchurl.nix> { url = url; sha256 = "hash"; }
. (Shea Levy) -
Improved RPM spec file. (Michel Alexandre Salim)
-
Support for on-demand socket-based activation in the Nix daemon with
systemd
. -
Added a manpage for nix.conf5.
-
When using the Nix daemon, the
-s
flag innix-env -qa
is now much faster.
Release 1.0 (2012-05-11)
There have been numerous improvements and bug fixes since the previous release. Here are the most significant:
-
Nix can now optionally use the Boehm garbage collector. This significantly reduces the Nix evaluator’s memory footprint, especially when evaluating large NixOS system configurations. It can be enabled using the
--enable-gc
configure option. -
Nix now uses SQLite for its database. This is faster and more flexible than the old ad hoc format. SQLite is also used to cache the manifests in
/nix/var/nix/manifests
, resulting in a significant speedup. -
Nix now has an search path for expressions. The search path is set using the environment variable
NIX_PATH
and the-I
command line option. In Nix expressions, paths between angle brackets are used to specify files that must be looked up in the search path. For instance, the expression<nixpkgs/default.nix>
looks for a filenixpkgs/default.nix
relative to every element in the search path. -
The new command
nix-build --run-env
builds all dependencies of a derivation, then starts a shell in an environment containing all variables from the derivation. This is useful for reproducing the environment of a derivation for development. -
The new command
nix-store --verify-path
verifies that the contents of a store path have not changed. -
The new command
nix-store --print-env
prints out the environment of a derivation in a format that can be evaluated by a shell. -
Attribute names can now be arbitrary strings. For instance, you can write
{ "foo-1.2" = …; "bla bla" = …; }."bla bla"
. -
Attribute selection can now provide a default value using the
or
operator. For instance, the expressionx.y.z or e
evaluates to the attributex.y.z
if it exists, ande
otherwise. -
The right-hand side of the
?
operator can now be an attribute path, e.g.,attrs ? a.b.c
. -
On Linux, Nix will now make files in the Nix store immutable on filesystems that support it. This prevents accidental modification of files in the store by the root user.
-
Nix has preliminary support for derivations with multiple outputs. This is useful because it allows parts of a package to be deployed and garbage-collected separately. For instance, development parts of a package such as header files or static libraries would typically not be part of the closure of an application, resulting in reduced disk usage and installation time.
-
The Nix store garbage collector is faster and holds the global lock for a shorter amount of time.
-
The option
--timeout
(corresponding to the configuration settingbuild-timeout
) allows you to set an absolute timeout on builds — if a build runs for more than the given number of seconds, it is terminated. This is useful for recovering automatically from builds that are stuck in an infinite loop but keep producing output, and for which--max-silent-time
is ineffective. -
Nix development has moved to GitHub (https://github.com/NixOS/nix).
Release 0.16 (2010-08-17)
This release has the following improvements:
-
The Nix expression evaluator is now much faster in most cases: typically, 3 to 8 times compared to the old implementation. It also uses less memory. It no longer depends on the ATerm library.
-
Support for configurable parallelism inside builders. Build scripts have always had the ability to perform multiple build actions in parallel (for instance, by running
make -j 2
), but this was not desirable because the number of actions to be performed in parallel was not configurable. Nix now has an option--cores N
as well as a configuration settingbuild-cores = N
that causes the environment variableNIX_BUILD_CORES
to be set to N when the builder is invoked. The builder can use this at its discretion to perform a parallel build, e.g., by callingmake -j N
. In Nixpkgs, this can be enabled on a per-package basis by setting the derivation attributeenableParallelBuilding
totrue
. -
nix-store -q
now supports XML output through the--xml
flag. -
Several bug fixes.
Release 0.15 (2010-03-17)
This is a bug-fix release. Among other things, it fixes building on Mac
OS X (Snow Leopard), and improves the contents of /etc/passwd
and
/etc/group
in chroot
builds.
Release 0.14 (2010-02-04)
This release has the following improvements:
-
The garbage collector now starts deleting garbage much faster than before. It no longer determines liveness of all paths in the store, but does so on demand.
-
Added a new operation,
nix-store --query --roots
, that shows the garbage collector roots that directly or indirectly point to the given store paths. -
Removed support for converting Berkeley DB-based Nix databases to the new schema.
-
Removed the
--use-atime
and--max-atime
garbage collector options. They were not very useful in practice. -
On Windows, Nix now requires Cygwin 1.7.x.
-
A few bug fixes.
Release 0.13 (2009-11-05)
This is primarily a bug fix release. It has some new features:
-
Syntactic sugar for writing nested attribute sets. Instead of
{ foo = { bar = 123; xyzzy = true; }; a = { b = { c = "d"; }; }; }
you can write
{ foo.bar = 123; foo.xyzzy = true; a.b.c = "d"; }
This is useful, for instance, in NixOS configuration files.
-
Support for Nix channels generated by Hydra, the Nix-based continuous build system. (Hydra generates NAR archives on the fly, so the size and hash of these archives isn’t known in advance.)
-
Support
i686-linux
builds directly onx86_64-linux
Nix installations. This is implemented using thepersonality()
syscall, which causesuname
to returni686
in child processes. -
Various improvements to the
chroot
support. Building in achroot
works quite well now. -
Nix no longer blocks if it tries to build a path and another process is already building the same path. Instead it tries to build another buildable path first. This improves parallelism.
-
Support for large (> 4 GiB) files in NAR archives.
-
Various (performance) improvements to the remote build mechanism.
-
New primops:
builtins.addErrorContext
(to add a string to stack traces — useful for debugging),builtins.isBool
,builtins.isString
,builtins.isInt
,builtins.intersectAttrs
. -
OpenSolaris support (Sander van der Burg).
-
Stack traces are no longer displayed unless the
--show-trace
option is used. -
The scoping rules for
inherit (e) ...
in recursive attribute sets have changed. The expression e can now refer to the attributes defined in the containing set.
Release 0.12 (2008-11-20)
-
Nix no longer uses Berkeley DB to store Nix store metadata. The principal advantages of the new storage scheme are: it works properly over decent implementations of NFS (allowing Nix stores to be shared between multiple machines); no recovery is needed when a Nix process crashes; no write access is needed for read-only operations; no more running out of Berkeley DB locks on certain operations.
You still need to compile Nix with Berkeley DB support if you want Nix to automatically convert your old Nix store to the new schema. If you don’t need this, you can build Nix with the
configure
option--disable-old-db-compat
.After the automatic conversion to the new schema, you can delete the old Berkeley DB files:
$ cd /nix/var/nix/db $ rm __db* log.* derivers references referrers reserved validpaths DB_CONFIG
The new metadata is stored in the directories
/nix/var/nix/db/info
and/nix/var/nix/db/referrer
. Though the metadata is stored in human-readable plain-text files, they are not intended to be human-editable, as Nix is rather strict about the format.The new storage schema may or may not require less disk space than the Berkeley DB environment, mostly depending on the cluster size of your file system. With 1 KiB clusters (which seems to be the
ext3
default nowadays) it usually takes up much less space. -
There is a new substituter that copies paths directly from other (remote) Nix stores mounted somewhere in the filesystem. For instance, you can speed up an installation by mounting some remote Nix store that already has the packages in question via NFS or
sshfs
. The environment variableNIX_OTHER_STORES
specifies the locations of the remote Nix directories, e.g./mnt/remote-fs/nix
. -
New
nix-store
operations--dump-db
and--load-db
to dump and reload the Nix database. -
The garbage collector has a number of new options to allow only some of the garbage to be deleted. The option
--max-freed N
tells the collector to stop after at least N bytes have been deleted. The option--max-links N
tells it to stop after the link count on/nix/store
has dropped below N. This is useful for very large Nix stores on filesystems with a 32000 subdirectories limit (likeext3
). The option--use-atime
causes store paths to be deleted in order of ascending last access time. This allows non-recently used stuff to be deleted. The option--max-atime time
specifies an upper limit to the last accessed time of paths that may be deleted. For instance,$ nix-store --gc -v --max-atime $(date +%s -d "2 months ago")
deletes everything that hasn’t been accessed in two months.
-
nix-env
now uses optimistic profile locking when performing an operation like installing or upgrading, instead of setting an exclusive lock on the profile. This allows multiplenix-env -i / -u / -e
operations on the same profile in parallel. If anix-env
operation sees at the end that the profile was changed in the meantime by another process, it will just restart. This is generally cheap because the build results are still in the Nix store. -
The option
--dry-run
is now supported bynix-store -r
andnix-build
. -
The information previously shown by
--dry-run
(i.e., which derivations will be built and which paths will be substituted) is now always shown bynix-env
,nix-store -r
andnix-build
. The total download size of substitutable paths is now also shown. For instance, a build will show something likethe following derivations will be built: /nix/store/129sbxnk5n466zg6r1qmq1xjv9zymyy7-activate-configuration.sh.drv /nix/store/7mzy971rdm8l566ch8hgxaf89x7lr7ik-upstart-jobs.drv ... the following paths will be downloaded/copied (30.02 MiB): /nix/store/4m8pvgy2dcjgppf5b4cj5l6wyshjhalj-samba-3.2.4 /nix/store/7h1kwcj29ip8vk26rhmx6bfjraxp0g4l-libunwind-0.98.6 ...
-
Language features:
-
@-patterns as in Haskell. For instance, in a function definition
f = args @ {x, y, z}: ...;
args
refers to the argument as a whole, which is further pattern-matched against the attribute set pattern{x, y, z}
. -
“
...
” (ellipsis) patterns. An attribute set pattern can now say...
at the end of the attribute name list to specify that the function takes at least the listed attributes, while ignoring additional attributes. For instance,{stdenv, fetchurl, fuse, ...}: ...
defines a function that accepts any attribute set that includes at least the three listed attributes.
-
New primops:
builtins.parseDrvName
(split a package name string like"nix-0.12pre12876"
into its name and version components, e.g."nix"
and"0.12pre12876"
),builtins.compareVersions
(compare two version strings using the same algorithm thatnix-env
uses),builtins.length
(efficiently compute the length of a list),builtins.mul
(integer multiplication),builtins.div
(integer division).
-
-
nix-prefetch-url
now supportsmirror://
URLs, provided that the environment variableNIXPKGS_ALL
points at a Nixpkgs tree. -
Removed the commands
nix-pack-closure
andnix-unpack-closure
. You can do almost the same thing but much more efficiently by doingnix-store --export $(nix-store -qR paths) > closure
andnix-store --import < closure
. -
Lots of bug fixes, including a big performance bug in the handling of
with
-expressions.
Release 0.11 (2007-12-31)
Nix 0.11 has many improvements over the previous stable release. The most important improvement is secure multi-user support. It also features many usability enhancements and language extensions, many of them prompted by NixOS, the purely functional Linux distribution based on Nix. Here is an (incomplete) list:
-
Secure multi-user support. A single Nix store can now be shared between multiple (possible untrusted) users. This is an important feature for NixOS, where it allows non-root users to install software. The old setuid method for sharing a store between multiple users has been removed. Details for setting up a multi-user store can be found in the manual.
-
The new command
nix-copy-closure
gives you an easy and efficient way to exchange software between machines. It copies the missing parts of the closure of a set of store path to or from a remote machine viassh
. -
A new kind of string literal: strings between double single-quotes (
''
) have indentation “intelligently” removed. This allows large strings (such as shell scripts or configuration file fragments in NixOS) to cleanly follow the indentation of the surrounding expression. It also requires much less escaping, since''
is less common in most languages than"
. -
nix-env
--set
modifies the current generation of a profile so that it contains exactly the specified derivation, and nothing else. For example,nix-env -p /nix/var/nix/profiles/browser --set firefox
lets the profile namedbrowser
contain just Firefox. -
nix-env
now maintains meta-information about installed packages in profiles. The meta-information is the contents of themeta
attribute of derivations, such asdescription
orhomepage
. The commandnix-env -q --xml --meta
shows all meta-information. -
nix-env
now uses themeta.priority
attribute of derivations to resolve filename collisions between packages. Lower priority values denote a higher priority. For instance, the GCC wrapper package and the Binutils package in Nixpkgs both have a filebin/ld
, so previously if you tried to install both you would get a collision. Now, on the other hand, the GCC wrapper declares a higher priority than Binutils, so the former’sbin/ld
is symlinked in the user environment. -
nix-env -i / -u
: instead of breaking package ties by version, break them by priority and version number. That is, if there are multiple packages with the same name, then pick the package with the highest priority, and only use the version if there are multiple packages with the same priority.This makes it possible to mark specific versions/variant in Nixpkgs more or less desirable than others. A typical example would be a beta version of some package (e.g.,
gcc-4.2.0rc1
) which should not be installed even though it is the highest version, except when it is explicitly selected (e.g.,nix-env -i gcc-4.2.0rc1
). -
nix-env --set-flag
allows meta attributes of installed packages to be modified. There are several attributes that can be usefully modified, because they affect the behaviour ofnix-env
or the user environment build script:-
meta.priority
can be changed to resolve filename clashes (see above). -
meta.keep
can be set totrue
to prevent the package from being upgraded or replaced. Useful if you want to hang on to an older version of a package. -
meta.active
can be set tofalse
to “disable” the package. That is, no symlinks will be generated to the files of the package, but it remains part of the profile (so it won’t be garbage-collected). Set it back totrue
to re-enable the package.
-
-
nix-env -q
now has a flag--prebuilt-only
(-b
) that causesnix-env
to show only those derivations whose output is already in the Nix store or that can be substituted (i.e., downloaded from somewhere). In other words, it shows the packages that can be installed “quickly”, i.e., don’t need to be built from source. The-b
flag is also available innix-env -i
andnix-env -u
to filter out derivations for which no pre-built binary is available. -
The new option
--argstr
(innix-env
,nix-instantiate
andnix-build
) is like--arg
, except that the value is a string. For example,--argstr system i686-linux
is equivalent to--arg system \"i686-linux\"
(note that--argstr
prevents annoying quoting around shell arguments). -
nix-store
has a new operation--read-log
(-l
)paths
that shows the build log of the given paths. -
Nix now uses Berkeley DB 4.5. The database is upgraded automatically, but you should be careful not to use old versions of Nix that still use Berkeley DB 4.4.
-
The option
--max-silent-time
(corresponding to the configuration settingbuild-max-silent-time
) allows you to set a timeout on builds — if a build produces no output onstdout
orstderr
for the given number of seconds, it is terminated. This is useful for recovering automatically from builds that are stuck in an infinite loop. -
nix-channel
: each subscribed channel is its own attribute in the top-level expression generated for the channel. This allows disambiguation (e.g.nix-env -i -A nixpkgs_unstable.firefox
). -
The substitutes table has been removed from the database. This makes operations such as
nix-pull
andnix-channel --update
much, much faster. -
nix-pull
now supports bzip2-compressed manifests. This speeds up channels. -
nix-prefetch-url
now has a limited form of caching. This is used bynix-channel
to prevent unnecessary downloads when the channel hasn’t changed. -
nix-prefetch-url
now by default computes the SHA-256 hash of the file instead of the MD5 hash. In calls tofetchurl
you should pass thesha256
attribute instead ofmd5
. You can pass either a hexadecimal or a base-32 encoding of the hash. -
Nix can now perform builds in an automatically generated “chroot”. This prevents a builder from accessing stuff outside of the Nix store, and thus helps ensure purity. This is an experimental feature.
-
The new command
nix-store --optimise
reduces Nix store disk space usage by finding identical files in the store and hard-linking them to each other. It typically reduces the size of the store by something like 25-35%. -
~/.nix-defexpr
can now be a directory, in which case the Nix expressions in that directory are combined into an attribute set, with the file names used as the names of the attributes. The commandnix-env --import
(which set the~/.nix-defexpr
symlink) is removed. -
Derivations can specify the new special attribute
allowedReferences
to enforce that the references in the output of a derivation are a subset of a declared set of paths. For example, ifallowedReferences
is an empty list, then the output must not have any references. This is used in NixOS to check that generated files such as initial ramdisks for booting Linux don’t have any dependencies. -
The new attribute
exportReferencesGraph
allows builders access to the references graph of their inputs. This is used in NixOS for tasks such as generating ISO-9660 images that contain a Nix store populated with the closure of certain paths. -
Fixed-output derivations (like
fetchurl
) can define the attributeimpureEnvVars
to allow external environment variables to be passed to builders. This is used in Nixpkgs to support proxy configuration, among other things. -
Several new built-in functions:
builtins.attrNames
,builtins.filterSource
,builtins.isAttrs
,builtins.isFunction
,builtins.listToAttrs
,builtins.stringLength
,builtins.sub
,builtins.substring
,throw
,builtins.trace
,builtins.readFile
.
Release 0.10.1 (2006-10-11)
This release fixes two somewhat obscure bugs that occur when evaluating
Nix expressions that are stored inside the Nix store (NIX-67
). These
do not affect most users.
Release 0.10 (2006-10-06)
Note
This version of Nix uses Berkeley DB 4.4 instead of 4.3. The database is upgraded automatically, but you should be careful not to use old versions of Nix that still use Berkeley DB 4.3. In particular, if you use a Nix installed through Nix, you should run
$ nix-store --clear-substitutes
first.
Warning
Also, the database schema has changed slighted to fix a performance issue (see below). When you run any Nix 0.10 command for the first time, the database will be upgraded automatically. This is irreversible.
-
nix-env
usability improvements:-
An option
--compare-versions
(or-c
) has been added tonix-env --query
to allow you to compare installed versions of packages to available versions, or vice versa. An easy way to see if you are up to date with what’s in your subscribed channels isnix-env -qc \*
. -
nix-env --query
now takes as arguments a list of package names about which to show information, just like--install
, etc.: for example,nix-env -q gcc
. Note that to show all derivations, you need to specify\*
. -
nix-env -i pkgname
will now install the highest available version of pkgname, rather than installing all available versions (which would probably give collisions) (NIX-31
). -
nix-env (-i|-u) --dry-run
now shows exactly which missing paths will be built or substituted. -
nix-env -qa --description
shows human-readable descriptions of packages, provided that they have ameta.description
attribute (which most packages in Nixpkgs don’t have yet).
-
-
New language features:
-
Reference scanning (which happens after each build) is much faster and takes a constant amount of memory.
-
String interpolation. Expressions like
"--with-freetype2-library=" + freetype + "/lib"
can now be written as
"--with-freetype2-library=${freetype}/lib"
You can write arbitrary expressions within
${...}
, not just identifiers. -
Multi-line string literals.
-
String concatenations can now involve derivations, as in the example
"--with-freetype2-library=" + freetype + "/lib"
. This was not previously possible because we need to register that a derivation that uses such a string is dependent onfreetype
. The evaluator now properly propagates this information. Consequently, the subpath operator (~
) has been deprecated. -
Default values of function arguments can now refer to other function arguments; that is, all arguments are in scope in the default values (
NIX-45
). -
Lots of new built-in primitives, such as functions for list manipulation and integer arithmetic. See the manual for a complete list. All primops are now available in the set
builtins
, allowing one to test for the availability of primop in a backwards-compatible way. -
Real let-expressions:
let x = ...; ... z = ...; in ...
.
-
-
New commands
nix-pack-closure
andnix-unpack-closure
than can be used to easily transfer a store path with all its dependencies to another machine. Very convenient whenever you have some package on your machine and you want to copy it somewhere else. -
XML support:
-
nix-env -q --xml
prints the installed or available packages in an XML representation for easy processing by other tools. -
nix-instantiate --eval-only --xml
prints an XML representation of the resulting term. (The new flag--strict
forces ‘deep’ evaluation of the result, i.e., list elements and attributes are evaluated recursively.) -
In Nix expressions, the primop
builtins.toXML
converts a term to an XML representation. This is primarily useful for passing structured information to builders.
-
-
You can now unambiguously specify which derivation to build or install in
nix-env
,nix-instantiate
andnix-build
using the--attr
/-A
flags, which takes an attribute name as argument. (Unlike symbolic package names such assubversion-1.4.0
, attribute names in an attribute set are unique.) For instance, a quick way to perform a test build of a package in Nixpkgs isnix-build pkgs/top-level/all-packages.nix -A foo
.nix-env -q --attr
shows the attribute names corresponding to each derivation. -
If the top-level Nix expression used by
nix-env
,nix-instantiate
ornix-build
evaluates to a function whose arguments all have default values, the function will be called automatically. Also, the new command-line switch--arg name value
can be used to specify function arguments on the command line. -
nix-install-package --url URL
allows a package to be installed directly from the given URL. -
Nix now works behind an HTTP proxy server; just set the standard environment variables
http_proxy
,https_proxy
,ftp_proxy
orall_proxy
appropriately. Functions such asfetchurl
in Nixpkgs also respect these variables. -
nix-build -o symlink
allows the symlink to the build result to be named something other thanresult
. -
Platform support:
-
Support for 64-bit platforms, provided a suitably patched ATerm library is used. Also, files larger than 2 GiB are now supported.
-
Added support for Cygwin (Windows,
i686-cygwin
), Mac OS X on Intel (i686-darwin
) and Linux on PowerPC (powerpc-linux
). -
Users of SMP and multicore machines will appreciate that the number of builds to be performed in parallel can now be specified in the configuration file in the
build-max-jobs
setting.
-
-
Garbage collector improvements:
-
Open files (such as running programs) are now used as roots of the garbage collector. This prevents programs that have been uninstalled from being garbage collected while they are still running. The script that detects these additional runtime roots (
find-runtime-roots.pl
) is inherently system-specific, but it should work on Linux and on all platforms that have thelsof
utility. -
nix-store --gc
(a.k.a.nix-collect-garbage
) prints out the number of bytes freed on standard output.nix-store --gc --print-dead
shows how many bytes would be freed by an actual garbage collection. -
nix-collect-garbage -d
removes all old generations of all profiles before calling the actual garbage collector (nix-store --gc
). This is an easy way to get rid of all old packages in the Nix store. -
nix-store
now has an operation--delete
to delete specific paths from the Nix store. It won’t delete reachable (non-garbage) paths unless--ignore-liveness
is specified.
-
-
Berkeley DB 4.4’s process registry feature is used to recover from crashed Nix processes.
-
A performance issue has been fixed with the
referer
table, which stores the inverse of thereferences
table (i.e., it tells you what store paths refer to a given path). Maintaining this table could take a quadratic amount of time, as well as a quadratic amount of Berkeley DB log file space (in particular when running the garbage collector) (NIX-23
). -
Nix now catches the
TERM
andHUP
signals in addition to theINT
signal. So you can now do akillall nix-store
without triggering a database recovery. -
bsdiff
updated to version 4.3. -
Substantial performance improvements in expression evaluation and
nix-env -qa
, all thanks to Valgrind. Memory use has been reduced by a factor 8 or so. Big speedup by memoisation of path hashing. -
Lots of bug fixes, notably:
-
Make sure that the garbage collector can run successfully when the disk is full (
NIX-18
). -
nix-env
now locks the profile to prevent races between concurrentnix-env
operations on the same profile (NIX-7
). -
Removed misleading messages from
nix-env -i
(e.g.,installing `foo'
followed byuninstalling `foo'
) (NIX-17
).
-
-
Nix source distributions are a lot smaller now since we no longer include a full copy of the Berkeley DB source distribution (but only the bits we need).
-
Header files are now installed so that external programs can use the Nix libraries.
Release 0.9.2 (2005-09-21)
This bug fix release fixes two problems on Mac OS X:
-
If Nix was linked against statically linked versions of the ATerm or Berkeley DB library, there would be dynamic link errors at runtime.
-
nix-pull
andnix-push
intermittently failed due to race conditions involving pipes and child processes with error messages such asopen2: open(GLOB(0x180b2e4), >&=9) failed: Bad file descriptor at /nix/bin/nix-pull line 77
(issueNIX-14
).
Release 0.9.1 (2005-09-20)
This bug fix release addresses a problem with the ATerm library when the
--with-aterm
flag in configure
was not used.
Release 0.9 (2005-09-16)
NOTE: this version of Nix uses Berkeley DB 4.3 instead of 4.2. The database is upgraded automatically, but you should be careful not to use old versions of Nix that still use Berkeley DB 4.2. In particular, if you use a Nix installed through Nix, you should run
$ nix-store --clear-substitutes
first.
-
Unpacking of patch sequences is much faster now since we no longer do redundant unpacking and repacking of intermediate paths.
-
Nix now uses Berkeley DB 4.3.
-
The
derivation
primitive is lazier. Attributes of dependent derivations can mutually refer to each other (as long as there are no data dependencies on theoutPath
anddrvPath
attributes computed byderivation
).For example, the expression
derivation attrs
now evaluates to (essentially)attrs // { type = "derivation"; outPath = derivation! attrs; drvPath = derivation! attrs; }
where
derivation!
is a primop that does the actual derivation instantiation (i.e., it does whatderivation
used to do). The advantage is that it allows commands such asnix-env -qa
andnix-env -i
to be much faster since they no longer need to instantiate all derivations, just thename
attribute.Also, it allows derivations to cyclically reference each other, for example,
webServer = derivation { ... hostName = "svn.cs.uu.nl"; services = [svnService]; }; svnService = derivation { ... hostName = webServer.hostName; };
Previously, this would yield a black hole (infinite recursion).
-
nix-build
now defaults to using./default.nix
if no Nix expression is specified. -
nix-instantiate
, when applied to a Nix expression that evaluates to a function, will call the function automatically if all its arguments have defaults. -
Nix now uses libtool to build dynamic libraries. This reduces the size of executables.
-
A new list concatenation operator
++
. For example,[1 2 3] ++ [4 5 6]
evaluates to[1 2 3 4 5 6]
. -
Some currently undocumented primops to support low-level build management using Nix (i.e., using Nix as a Make replacement). See the commit messages for
r3578
andr3580
. -
Various bug fixes and performance improvements.
Release 0.8.1 (2005-04-13)
This is a bug fix release.
-
Patch downloading was broken.
-
The garbage collector would not delete paths that had references from invalid (but substitutable) paths.
Release 0.8 (2005-04-11)
NOTE: the hashing scheme in Nix 0.8 changed (as detailed below). As a
result, nix-pull
manifests and channels built for Nix 0.7 and below
will not work anymore. However, the Nix expression language has not
changed, so you can still build from source. Also, existing user
environments continue to work. Nix 0.8 will automatically upgrade the
database schema of previous installations when it is first run.
If you get the error message
you have an old-style manifest `/nix/var/nix/manifests/[...]'; please
delete it
you should delete previously downloaded manifests:
$ rm /nix/var/nix/manifests/*
If nix-channel
gives the error message
manifest `http://catamaran.labs.cs.uu.nl/dist/nix/channels/[channel]/MANIFEST'
is too old (i.e., for Nix <= 0.7)
then you should unsubscribe from the offending channel (nix-channel --remove URL
; leave out /MANIFEST
), and subscribe to the same URL, with
channels
replaced by channels-v3
(e.g.,
http://catamaran.labs.cs.uu.nl/dist/nix/channels-v3/nixpkgs-unstable).
Nix 0.8 has the following improvements:
-
The cryptographic hashes used in store paths are now 160 bits long, but encoded in base-32 so that they are still only 32 characters long (e.g.,
/nix/store/csw87wag8bqlqk7ipllbwypb14xainap-atk-1.9.0
). (This is actually a 160 bit truncation of a SHA-256 hash.) -
Big cleanups and simplifications of the basic store semantics. The notion of “closure store expressions” is gone (and so is the notion of “successors”); the file system references of a store path are now just stored in the database.
For instance, given any store path, you can query its closure:
$ nix-store -qR $(which firefox) ... lots of paths ...
Also, Nix now remembers for each store path the derivation that built it (the “deriver”):
$ nix-store -qR $(which firefox) /nix/store/4b0jx7vq80l9aqcnkszxhymsf1ffa5jd-firefox-1.0.1.drv
So to see the build-time dependencies, you can do
$ nix-store -qR $(nix-store -qd $(which firefox))
or, in a nicer format:
$ nix-store -q --tree $(nix-store -qd $(which firefox))
File system references are also stored in reverse. For instance, you can query all paths that directly or indirectly use a certain Glibc:
$ nix-store -q --referrers-closure \ /nix/store/8lz9yc6zgmc0vlqmn2ipcpkjlmbi51vv-glibc-2.3.4
-
The concept of fixed-output derivations has been formalised. Previously, functions such as
fetchurl
in Nixpkgs used a hack (namely, explicitly specifying a store path hash) to prevent changes to, say, the URL of the file from propagating upwards through the dependency graph, causing rebuilds of everything. This can now be done cleanly by specifying theoutputHash
andoutputHashAlgo
attributes. Nix itself checks that the content of the output has the specified hash. (This is important for maintaining certain invariants necessary for future work on secure shared stores.) -
One-click installation :-) It is now possible to install any top-level component in Nixpkgs directly, through the web — see, e.g., http://catamaran.labs.cs.uu.nl/dist/nixpkgs-0.8/. All you have to do is associate
/nix/bin/nix-install-package
with the MIME typeapplication/nix-package
(or the extension.nixpkg
), and clicking on a package link will cause it to be installed, with all appropriate dependencies. If you just want to install some specific application, this is easier than subscribing to a channel. -
nix-store -r PATHS
now builds all the derivations PATHS in parallel. Previously it did them sequentially (though exploiting possible parallelism between subderivations). This is nice for build farms. -
nix-channel
has new operations--list
and--remove
. -
New ways of installing components into user environments:
-
Copy from another user environment:
$ nix-env -i --from-profile .../other-profile firefox
-
Install a store derivation directly (bypassing the Nix expression language entirely):
$ nix-env -i /nix/store/z58v41v21xd3...-aterm-2.3.1.drv
(This is used to implement
nix-install-package
, which is therefore immune to evolution in the Nix expression language.) -
Install an already built store path directly:
$ nix-env -i /nix/store/hsyj5pbn0d9i...-aterm-2.3.1
-
Install the result of a Nix expression specified as a command-line argument:
$ nix-env -f .../i686-linux.nix -i -E 'x: x.firefoxWrapper'
The difference with the normal installation mode is that
-E
does not use thename
attributes of derivations. Therefore, this can be used to disambiguate multiple derivations with the same name.
-
-
A hash of the contents of a store path is now stored in the database after a successful build. This allows you to check whether store paths have been tampered with:
nix-store --verify --check-contents
. -
Implemented a concurrent garbage collector. It is now always safe to run the garbage collector, even if other Nix operations are happening simultaneously.
However, there can still be GC races if you use
nix-instantiate
andnix-store --realise
directly to build things. To prevent races, use the--add-root
flag of those commands. -
The garbage collector now finally deletes paths in the right order (i.e., topologically sorted under the “references” relation), thus making it safe to interrupt the collector without risking a store that violates the closure invariant.
-
Likewise, the substitute mechanism now downloads files in the right order, thus preserving the closure invariant at all times.
-
The result of
nix-build
is now registered as a root of the garbage collector. If the./result
link is deleted, the GC root disappears automatically. -
The behaviour of the garbage collector can be changed globally by setting options in
/nix/etc/nix/nix.conf
.-
gc-keep-derivations
specifies whether deriver links should be followed when searching for live paths. -
gc-keep-outputs
specifies whether outputs of derivations should be followed when searching for live paths. -
env-keep-derivations
specifies whether user environments should store the paths of derivations when they are added (thus keeping the derivations alive).
-
-
New
nix-env
query flags--drv-path
and--out-path
. -
fetchurl
allows SHA-1 and SHA-256 in addition to MD5. Just specify the attributesha1
orsha256
instead ofmd5
. -
Manual updates.
Release 0.7 (2005-01-12)
-
Binary patching. When upgrading components using pre-built binaries (through nix-pull / nix-channel), Nix can automatically download and apply binary patches to already installed components instead of full downloads. Patching is “smart”: if there is a sequence of patches to an installed component, Nix will use it. Patches are currently generated automatically between Nixpkgs (pre-)releases.
-
Simplifications to the substitute mechanism.
-
Nix-pull now stores downloaded manifests in
/nix/var/nix/manifests
. -
Metadata on files in the Nix store is canonicalised after builds: the last-modified timestamp is set to 0 (00:00:00 1/1/1970), the mode is set to 0444 or 0555 (readable and possibly executable by all; setuid/setgid bits are dropped), and the group is set to the default. This ensures that the result of a build and an installation through a substitute is the same; and that timestamp dependencies are revealed.
Release 0.6 (2004-11-14)
-
Rewrite of the normalisation engine.
-
Multiple builds can now be performed in parallel (option
-j
). -
Distributed builds. Nix can now call a shell script to forward builds to Nix installations on remote machines, which may or may not be of the same platform type.
-
Option
--fallback
allows recovery from broken substitutes. -
Option
--keep-going
causes building of other (unaffected) derivations to continue if one failed.
-
-
Improvements to the garbage collector (i.e., it should actually work now).
-
Setuid Nix installations allow a Nix store to be shared among multiple users.
-
Substitute registration is much faster now.
-
A utility
nix-build
to build a Nix expression and create a symlink to the result int the current directory; useful for testing Nix derivations. -
Manual updates.
-
nix-env
changes:-
Derivations for other platforms are filtered out (which can be overridden using
--system-filter
). -
--install
by default now uninstall previous derivations with the same name. -
--upgrade
allows upgrading to a specific version. -
New operation
--delete-generations
to remove profile generations (necessary for effective garbage collection). -
Nicer output (sorted, columnised).
-
-
More sensible verbosity levels all around (builder output is now shown always, unless
-Q
is given). -
Nix expression language changes:
-
New language construct:
with E1; E2
brings all attributes defined in the attribute set E1 in scope in E2. -
Added a
map
function. -
Various new operators (e.g., string concatenation).
-
-
Expression evaluation is much faster.
-
An Emacs mode for editing Nix expressions (with syntax highlighting and indentation) has been added.
-
Many bug fixes.
Release 0.5 and earlier
Please refer to the Subversion commit log messages.