snix/src/nix-env/help.txt
Eelco Dolstra f83c5e3e5f * Implemented Eelco V.'s `-p' command to switch profiles. It switches
the symlink ~/.nix-userenv to the given argument (which defaults to
  .../links/current).  /etc/profile.d/nix-profile creates this symlink
  if it doesn't exist yet.  Example use:

  $ nix-env -l my_profile -i foo.nix subversion quake
  $ nix-env -p my_profile

  I don't like the term "profile".  Let's deprecate it :-)
2004-01-05 11:18:59 +00:00

35 lines
1.1 KiB
Text

nix-env [OPTIONS...] [ARGUMENTS...]
`nix-env' is a tool to manipulate Nix user environments.
Operations:
--install / -i FILE: add derivations to the user environment
--uninstall / -e: remove derivations from the user environment
--upgrade / -u FILE: upgrade derivation in the user environment
--query / -q: perform a query on an environment or Nix expression
The previous operations take a list of derivation names. The special
name `*' may be used to indicate all derivations.
--profile / -p [FILE]: switch to specified user environment
--version: output version information
--help: display help
Query types:
--name: print derivation names (default)
--expr / -e: print derivation store expression
--status / -s: print installed/present status
Query sources:
--installed: use installed derivations (default)
--available / -f FILE: use derivations available in expression FILE
Options:
--link / -l LINK: use symlink LINK instead of (...)/current
--verbose / -v: verbose operation (may be repeated)
--keep-failed / -K: keep temporary directories of failed builds