diff --git a/doc/manual/src/command-ref/opt-common.md b/doc/manual/src/command-ref/opt-common.md
index 69a700207..70ae03959 100644
--- a/doc/manual/src/command-ref/opt-common.md
+++ b/doc/manual/src/command-ref/opt-common.md
@@ -1,3 +1,7 @@
+
+
# Common Options
Most Nix commands accept the following command-line options:
@@ -161,6 +165,14 @@ Most Nix commands accept the following command-line options:
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.)
+- [`--arg-from-file`](#opt-arg-from-file) *name* *path*
+
+ Pass the contents of file *path* as the argument *name* to Nix functions.
+
+- [`--arg-from-stdin`](#opt-arg-from-stdin) *name*
+
+ Pass the contents of stdin as the argument *name* to Nix functions.
+
- [`--argstr`](#opt-argstr) *name* *value*
This option is like `--arg`, only the value is not a Nix expression but a string.
@@ -179,6 +191,10 @@ Most Nix commands accept the following command-line options:
attribute of the fourth element of the array in the `foo` attribute
of the top-level expression.
+- [`--eval-store`](#opt-eval-store) *store-url*
+
+ The [URL to the Nix store](@docroot@/store/types/index.md#store-url-format) to use for evaluation, i.e. where to store derivations (`.drv` files) and inputs referenced by them.
+
- [`--expr`](#opt-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.
@@ -194,6 +210,10 @@ Most Nix commands accept the following command-line options:
Paths added through `-I` take precedence over the [`nix-path` configuration setting](@docroot@/command-ref/conf-file.md#conf-nix-path) and the [`NIX_PATH` environment variable](@docroot@/command-ref/env-common.md#env-NIX_PATH).
+- [`--impure`](#opt-impure)
+
+ Allow access to mutable paths and repositories.
+
- [`--option`](#opt-option) *name* *value*
Set the Nix configuration option *name* to *value*.