diff options
author | Valentin Gagarin <valentin.gagarin@tweag.io> | 2022-05-10 12:40:28 +0200 |
---|---|---|
committer | Valentin Gagarin <valentin.gagarin@tweag.io> | 2022-08-04 12:37:47 +0200 |
commit | ef81276cc161b0ce38cb2681867529c1cbdbd7cb (patch) | |
tree | 97f510d21aab8d3e5a5e579fdac02b57493253ec /doc/manual | |
parent | 68d26010f6d7341b73675aa30b24b67dcd479a7b (diff) |
architecture overview: add link to command line reference
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/src/architecture/architecture.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/src/architecture/architecture.md b/doc/manual/src/architecture/architecture.md index b818b7aa1..77d5ebc2c 100644 --- a/doc/manual/src/architecture/architecture.md +++ b/doc/manual/src/architecture/architecture.md @@ -24,7 +24,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. +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](https://en.m.wikipedia.org/wiki/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*. |