1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

Merge pull request #11436 from fricklerhandwerk/reword-nix-expr-gloss

docs: reword glossary entry on Nix expression
This commit is contained in:
Robert Hensing 2024-09-07 22:47:32 +01:00 committed by GitHub
commit 9ae7140beb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -182,13 +182,18 @@
- [Nix expression]{#gloss-nix-expression} - [Nix expression]{#gloss-nix-expression}
1. Commonly, a high-level description of software packages and compositions A syntactically valid use of the [Nix language].
thereof. Deploying software using Nix entails writing Nix
expressions for your packages. Nix expressions specify [derivations][derivation],
which are [instantiated][instantiate] into the Nix store as [store derivations][store derivation].
These derivations can then be [realised][realise] to produce [outputs][output].
2. A syntactically valid use of the [Nix language]. For example, the contents of a `.nix` file form an expression. > **Example**
>
> The contents of a `.nix` file form a Nix expression.
Nix expressions specify [derivations][derivation], which are [instantiated][instantiate] into the Nix store as [store derivations][store derivation].
These derivations can then be [realised][realise] to produce [outputs][output].
> **Example**
>
> Building and deploying software using Nix entails writing Nix expressions as a high-level description of packages and compositions thereof.
- [reference]{#gloss-reference} - [reference]{#gloss-reference}