forked from lix-project/lix
31313d1401
They are equivalent according to <https://spec.commonmark.org/0.29/#hard-line-breaks>, and the trailing spaces tend to be a pain (because the make git complain, editors tend to want to remove them − the `.editorconfig` actually specifies that − etc..).
15 lines
686 B
Markdown
15 lines
686 B
Markdown
# Built-in Functions
|
|
|
|
This section lists the functions built into the Nix expression
|
|
evaluator. (The built-in function `derivation` is discussed above.)
|
|
Some built-ins, such as `derivation`, are always in scope of every Nix
|
|
expression; you can just access them right away. But to prevent
|
|
polluting the namespace too much, most built-ins are not in
|
|
scope. Instead, you can access them through the `builtins` built-in
|
|
value, which is a set that contains all built-in functions and values.
|
|
For instance, `derivation` is also available as `builtins.derivation`.
|
|
|
|
- `derivation` *attrs*; `builtins.derivation` *attrs*\
|
|
|
|
`derivation` is described in [its own section](derivations.md).
|
|
|