diff options
author | Emil Nikolov <emil.e.nikolov@gmail.com> | 2023-09-09 08:54:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 06:54:39 +0000 |
commit | 2cdc9c32e746a620458a1dd87655d2a6c3800f64 (patch) | |
tree | 38b66fbc05e5dd30f5c7b897a18f998a7415e0d2 /doc/manual/src | |
parent | 5473e10249e02f95375b6126e232700d51bdf429 (diff) |
docs: fixed the default priority of nix-env --install (#8945)
Diffstat (limited to 'doc/manual/src')
-rw-r--r-- | doc/manual/src/command-ref/nix-env/install.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/src/command-ref/nix-env/install.md b/doc/manual/src/command-ref/nix-env/install.md index ad179cbc7..5dc04c385 100644 --- a/doc/manual/src/command-ref/nix-env/install.md +++ b/doc/manual/src/command-ref/nix-env/install.md @@ -30,7 +30,7 @@ a number of possible ways: derivation with the highest *priority* is used. A derivation can define a priority by declaring the `meta.priority` attribute. This attribute should be a number, with a higher value denoting a lower - priority. The default priority is `0`. + priority. The default priority is `5`. If there are multiple matching derivations with the same priority, then the derivation with the highest version will be installed. |