Nix command: Difference between revisions

From NixOS Wiki
imported>Samuela
No edit summary
import from old wiki
 
(16 intermediate revisions by 9 users not shown)
Line 1: Line 1:
This article is about the new <code>nix</code> command and all of it's subcommands. It's written for nix 2.4 or newer. Older nix versions might have different commands.
This article is about the new <code>nix</code> command and all of its subcommands. The new <code>nix</code> command is intended to unify many different Nix package manager utilities that exist currently as many separate commands, eg. <code>nix-build</code>, <code>nix-shell</code>, etc.  
 
See the [https://nixos.org/manual/nix/stable/command-ref/experimental-commands.html Nix manual] for a complete reference.


== Enabling the nix command ==
== Enabling the nix command ==
Line 6: Line 8:


For an individual invocation, eg.
For an individual invocation, eg.
<syntaxHighlight>
<syntaxHighlight lang=text>
nix --experimental-features nix-command log ...
nix --experimental-features nix-command build ...
</syntaxHighlight>
</syntaxHighlight>


Line 17: Line 19:
in <code>~/.config/nix/nix.conf</code>.
in <code>~/.config/nix/nix.conf</code>.


Or system-wide with
On NixOS you can't edit <code>/etc/nix/nix.conf</code> directly, but you can enable this feature by editing <code>/etc/nixos/configuration.nix</code>:
<syntaxHighlight lang=nix>
<syntaxHighlight lang=nix>
# /etc/nix/nix.conf
#  
{ pkgs, ... }: {
{ pkgs, ... }: {
  nix.extraOptions = ''
  …
      experimental-features = nix-command
  nix.settings.experimental-features = [ "nix-command" ];
  '';
  …
  # this is required until nix 2.4 is released
  nix.package = pkgs.nixUnstable;
}
}
</syntaxHighlight>
</syntaxHighlight>
in <code>/etc/nix/nix.conf</code> on NixOS.
and then run <code>sudo nixos-rebuild switch</code> as always.


== Common flags ==
== Switching between <code>nix-env</code> and <code>nix profile</code> ==


* <code>--debug</code> enable debug output
{{warning|Be careful when testing.
* <code>--help</code> show usage information
Once you have used <code>nix profile</code> you can no longer use <code>nix-env</code> without first deleting <code>/nix/var/nix/profiles/per-user/$USER/profile</code>}}
* <code>--help-config</code> show configuration options
* <code>--log-format FORMAT</code> format of log output; "raw", "internal-json", "bar" or "bar-with-logs"
* <code>--no-net</code> disable substituters and consider all previously downloaded files up-to-date
* <code>--option NAME VALUE</code> set a Nix configuration option (overriding nix.conf)
* <code>-L</code>, <code>--print-build-logs</code> print full build logs on stderr
* <code>--quiet</code> decrease verbosity level
* <code>--refresh</code> consider all previously downloaded files out-of-date
* <code>-v</code>, <code>--verbose</code> increase verbosity level
* <code>--version</code> show version information


In addition, most configuration settings can be overriden using <code>--name value</code>.
Once you installed a package with <code>nix profile</code>, you
Boolean settings can be overriden using <code>--name</code> or <code>--no-name</code>. See <code>nix
get the following error message when using <code>nix-env</code>:
--help-config</code> for a list of configuration settings.


== Main commands ==
<syntaxHighlight lang=console>
$ nix-env -f '<nixpkgs>' -iA 'hello'
error: --- Error ----------------------------------------------------------------------------------------------------------------- nix-env
profile '/nix/var/nix/profiles/per-user/joerg/profile' is incompatible with 'nix-env'; please use 'nix profile' instead
</syntaxHighlight>


=== [[Nix_command/build|nix build]] ===
To migrate back to <code>nix-env</code> you can delete your current profile:


Build a derivation or fetch a store path.
{{warning|This will delete packages that have been installed before, so you may want to back this information before running the command.}}


=== [[Nix_command/develop|nix develop]] ===
<syntaxHighlight lang=console>
$ rm -rf /nix/var/nix/profiles/per-user/$USER/profile
</syntaxHighlight>


Run a bash shell that provides the build environment of a derivation.
== New equivalents to old commands ==
 
<syntaxHighlight lang=console>
=== [[Nix_command/flake|nix flake]] ===
# create a store derivation for a package defined in the current directory's default.nix
 
old$ nix-instantiate -A somepackage
Manage Nix flakes.
# assumes you are now using flakes
 
new$ nix eval .#somepackage.drvPath
=== [[Nix_command/profile|nix profile]] ===
# alternative option
 
new$ nix derivation show .#somepackage | jq '.[keys[0]]' | nix derivation add
Manage Nix profiles.
</syntaxHighlight>
 
=== [[Nix_command/repl|nix repl]] ===
 
Start an interactive environment for evaluating Nix expressions.
 
=== [[Nix_command/run|nix run]] ===
 
Run a Nix application.
 
=== [[Nix_command/search|nix search]] ===
 
Query available packages.
 
=== [[Nix_command/shell|nix shell]] ===
 
Run a shell in which the specified packages are available.
 
== Infrequently used commands ==
 
=== [[Nix_command/copy|nix copy]] ===
 
Copy paths between Nix stores.
 
=== [[Nix_command/edit|nix edit]] ===
 
Open the Nix expression of a Nix package in $EDITOR.
 
=== [[Nix_command/eval|nix eval]] ===
 
Evaluate a Nix expression.
 
=== [[Nix_command/log|nix log]] ===
 
Show the build log of the specified packages or paths, if available.
 
=== [[Nix_command/path-info|nix path-info]] ===
 
Query information about store paths.
 
=== [[Nix_command/registry|nix registry]] ===
 
Manage the flake registry.
 
=== [[Nix_command/verify|nix verify]] ===
 
Verify the integrity of store paths.
 
=== [[Nix_command/why-depends|nix why-depends]] ===
 
Show why a package has another package in its closure.
 
== Utility/scripting commands ==
 
=== [[Nix_command/add-to-store|nix add-to-store]] ===
 
Add a path to the Nix store.
 
=== [[Nix_command/cat-nar|nix cat-nar]] ===
 
Print the contents of a file inside a NAR file on stdout.
 
=== [[Nix_command/cat-store|nix cat-store]] ===
 
Print the contents of a file in the Nix store on stdout.
 
=== [[Nix_command/copy-sigs|nix copy-sigs]] ===
 
Copy path signatures from substituters (like binary caches).
 
=== [[Nix_command/dump-path|nix dump-path]] ===
 
Dump a store path to stdout (in NAR format).
 
=== [[Nix_command/hash-file|nix hash-file]] ===
 
Print cryptographic hash of the NAR serialisation of a path.
 
=== [[Nix_command/hash-path|nix hash-path]] ===
 
Print cryptographic hash of the NAR serialisation of a path.
 
=== [[Nix_command/ls-nar|nix ls-nar]] ===
 
Show information about a path inside a NAR file.
 
=== [[Nix_command/ls-store|nix ls-store]] ===
 
Show information about a path in the Nix store.
 
=== [[Nix_command/make-content-addressable|nix make-content-addressable]] ===
 
Rewrite a path or closure to content-addressable form.
 
=== [[Nix_command/optimize-store|nix optimize-store]] ===
 
Replace identical files in the store by hard links.
 
=== [[Nix_command/ping-store|nix ping-store]] ===
 
Test whether a store can be opened.
 
=== [[Nix_command/print-dev-env|nix print-dev-env]] ===
 
Print shell code that can be sourced by bash to reproduce the build environment of a derivation.
 
=== [[Nix_command/show-config|nix show-config]] ===
 
Show the Nix configuration.
 
=== [[Nix_command/show-derivation|nix show-derivation]] ===
 
Show the contents of a store derivation.
 
=== [[Nix_command/sign-paths|nix sign-paths]] ===
 
Sign the specified paths.
 
=== [[Nix_command/to-base16|nix to-base16]] ===
 
Convert a hash to base-16 representation.
 
=== [[Nix_command/to-base32|nix to-base32]] ===
 
Convert a hash to base-32 representation.
 
=== [[Nix_command/to-base64|nix to-base64]] ===
 
Convert a hash to base-64 representation.
 
=== [[Nix_command/to-sri|nix to-sri]] ===


Convert a hash to SRI representation.
[[Category:Nix]]

Latest revision as of 18:06, 1 April 2024

This article is about the new nix command and all of its subcommands. The new nix command is intended to unify many different Nix package manager utilities that exist currently as many separate commands, eg. nix-build, nix-shell, etc.

See the Nix manual for a complete reference.

Enabling the nix command

In nix 2.4 the nix command must be enabled explicitly set. You can do this in a few different ways.

For an individual invocation, eg.

nix --experimental-features nix-command build ...

Or by setting a user-specific configuration,

# ~/.config/nix/nix.conf
experimental-features = nix-command

in ~/.config/nix/nix.conf.

On NixOS you can't edit /etc/nix/nix.conf directly, but you can enable this feature by editing /etc/nixos/configuration.nix:

# 
{ pkgs, ... }: {
  
  nix.settings.experimental-features = [ "nix-command" ];
  
}

and then run sudo nixos-rebuild switch as always.

Switching between nix-env and nix profile

Warning: Be careful when testing. Once you have used nix profile you can no longer use nix-env without first deleting /nix/var/nix/profiles/per-user/$USER/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: --- Error ----------------------------------------------------------------------------------------------------------------- nix-env
profile '/nix/var/nix/profiles/per-user/joerg/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 this information before running the command.
$ rm -rf /nix/var/nix/profiles/per-user/$USER/profile

New equivalents to old commands

# create a store derivation for a package defined in the current directory's default.nix
old$ nix-instantiate -A somepackage
# assumes you are now using flakes
new$ nix eval .#somepackage.drvPath
# alternative option
new$ nix derivation show .#somepackage | jq '.[keys[0]]' | nix derivation add