diff options
author | Valentin Gagarin <valentin.gagarin@tweag.io> | 2023-01-02 13:37:59 +0100 |
---|---|---|
committer | Valentin Gagarin <valentin.gagarin@tweag.io> | 2023-01-02 13:37:59 +0100 |
commit | 9cdf8ededb2049833213bf498b27ed9537358707 (patch) | |
tree | 0e681b83b5072be6bac0aa0a7fdba02ae2f3f419 /src/nix/nix.md | |
parent | cfd6c7fc9bc233865af7843cc71a878a90fa5f48 (diff) |
remove redundant re-definition of store derivations
Diffstat (limited to 'src/nix/nix.md')
-rw-r--r-- | src/nix/nix.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/nix/nix.md b/src/nix/nix.md index 9641cccb2..db60c59ff 100644 --- a/src/nix/nix.md +++ b/src/nix/nix.md @@ -115,8 +115,7 @@ the Nix store. Here are the recognised types of installables: * **Store derivations**: `/nix/store/p7gp6lxdg32h4ka1q398wd9r2zkbbz2v-hello-2.10.drv` - Store derivations are a low-level, internal representation of build tasks in Nix, and have store paths with extension `.drv`. - By default, if you pass the path to a store derivation to a `nix` subcommand, the command will operate on the [output path]s of the derivation. + By default, if you pass a [store derivation] path to a `nix` subcommand, the command will operate on the [output path]s of the derivation. [output path]: ../../glossary.md#gloss-output-path |