diff options
author | Valentin Gagarin <valentin.gagarin@tweag.io> | 2022-04-27 21:21:46 +0200 |
---|---|---|
committer | Valentin Gagarin <valentin.gagarin@tweag.io> | 2022-08-04 12:37:46 +0200 |
commit | d30033759a07a0d5df7aac4c22bfa274b74baf0e (patch) | |
tree | fca142c5902116fba16c6ffdc83fd3773e2ef6e5 | |
parent | 75981263912805a77890bcdb63c4aa3bbb0d8e09 (diff) |
address Nix language consistently as configuration language
-rw-r--r-- | doc/manual/src/design/design.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/src/design/design.md b/doc/manual/src/design/design.md index 960a68f41..16c51533b 100644 --- a/doc/manual/src/design/design.md +++ b/doc/manual/src/design/design.md @@ -25,7 +25,7 @@ Nix consists of hierarchical [layers](https://en.m.wikipedia.org/wiki/Multitier_ At the top is the *command line interface*, translating from invocations of Nix executables to interactions with the underlying layers. -Below that is the *Nix language*, a [purely functional programming](https://en.m.wikipedia.org/wiki/Purely_functional_programming) language. +Below that is the *Nix language*, a [purely functional](https://en.m.wikipedia.org/wiki/Purely_functional_programming) configuration language. It is used to compose expressions which ultimately evaluate to self-contained *build steps*, used to derive *build results* from referenced *build inputs*. ::: {.note} |