aboutsummaryrefslogtreecommitdiff
path: root/doc/manual
diff options
context:
space:
mode:
authorValentin Gagarin <valentin.gagarin@tweag.io>2022-05-21 00:16:24 +0200
committerValentin Gagarin <valentin.gagarin@tweag.io>2022-08-04 12:37:47 +0200
commit7c3bca1372aeeb5074fa4038df2984b316e99bb8 (patch)
tree490887b27c88b51590fdb3c79c35b54057550f91 /doc/manual
parent4639b36b53fd369024d90e95b0178e4fae0a4203 (diff)
revert to build plans in top-level overview
do not introduce build tasks yet, that is the next level of detail.
Diffstat (limited to 'doc/manual')
-rw-r--r--doc/manual/src/architecture/architecture.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/manual/src/architecture/architecture.md b/doc/manual/src/architecture/architecture.md
index 4dfe34fd6..6d4b86935 100644
--- a/doc/manual/src/architecture/architecture.md
+++ b/doc/manual/src/architecture/architecture.md
@@ -30,7 +30,9 @@ Nix consists of [hierarchical layers][layer-architecture].
At the top is the [command line interface](../command-ref/command-ref.md), translating from invocations of Nix executables to interactions with the underlying layers.
Below that is the [Nix expression language](../expressions/expression-language.md), a [purely functional][purely-functional-programming] configuration language.
-It is used to compose expressions which ultimately evaluate to self-contained *build plans*, made up *build tasks* used to derive *build results* from referenced *build inputs*.
+It is used to compose expressions which ultimately evaluate to self-contained *build plans*, used to derive *build results* from referenced *build inputs*.
+
+The command line and Nix language are what users interact with most.
::: {.note}
The Nix language itself does not have a notion of *packages* or *configurations*.
@@ -38,10 +40,8 @@ As far as we are concerned here, the inputs and results of a derivation are just
In practice this amounts to a set of files in a file system.
:::
-The command line and Nix language are what users interact with most.
-
Underlying these is the [Nix store](./store/store.md), a mechanism to keep track of build plans, data, and references between them.
-It can also execute *build instructions*, captured in the build tasks, to produce new data.
+It can also execute build plans to produce new data.
[layer-architecture]: https://en.m.wikipedia.org/wiki/Multitier_architecture#Layers
[purely-functional-programming]: https://en.m.wikipedia.org/wiki/Purely_functional_programming