2022-08-04 12:36:32 +03:00
|
|
|
# Nix Language
|
2020-07-23 00:17:48 +03:00
|
|
|
|
2022-08-04 12:36:32 +03:00
|
|
|
The Nix language is a pure, lazy, functional language. Purity
|
2020-07-23 00:17:48 +03:00
|
|
|
means that operations in the language don't have side-effects (for
|
|
|
|
instance, there is no variable assignment). Laziness means that
|
|
|
|
arguments to functions are evaluated only when they are needed.
|
|
|
|
Functional means that functions are “normal” values that can be passed
|
|
|
|
around and manipulated in interesting ways. The language is not a
|
|
|
|
full-featured, general purpose language. Its main job is to describe
|
|
|
|
packages, compositions of packages, and the variability within packages.
|
|
|
|
|
|
|
|
This section presents the various features of the language.
|
2022-08-04 12:36:32 +03:00
|
|
|
|
2022-08-12 14:07:18 +03:00
|
|
|
# Syntax Summary
|
|
|
|
|
|
|
|
Below is a summary of the most important syntactic constructs in the Nix
|
|
|
|
expression language. It's not complete. In particular, there are many
|
|
|
|
other built-in functions. See the [Nix
|
|
|
|
manual](https://nixos.org/nix/manual/#chap-writing-nix-expressions) for
|
|
|
|
the rest.
|
|
|
|
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<th>
|
|
|
|
Example
|
|
|
|
</th>
|
|
|
|
<th>
|
|
|
|
Description
|
|
|
|
</th>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
*Basic values*
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2022-08-12 15:27:03 +03:00
|
|
|
`"hello world"`
|
2022-08-12 14:07:18 +03:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A string
|
|
|
|
</td>
|
2022-08-12 14:16:13 +03:00
|
|
|
<td>
|
|
|
|
```
|
|
|
|
''
|
|
|
|
multi
|
|
|
|
line
|
|
|
|
string
|
|
|
|
''
|
|
|
|
```
|
|
|
|
</td>
|
|
|
|
<td>
|
2022-08-12 14:18:59 +03:00
|
|
|
A multi-line string. Strips common prefixed whitespace. Evaluates to `"multi\n line\n string"`.
|
2022-08-12 14:16:13 +03:00
|
|
|
</td>
|
2022-08-12 14:07:18 +03:00
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2022-08-12 15:27:03 +03:00
|
|
|
`"hello ${ { a = "world" }.a }"`
|
|
|
|
|
|
|
|
`"1 2 ${3}"`
|
|
|
|
|
2022-08-12 14:07:18 +03:00
|
|
|
`"${pkgs.bash}/bin/sh"`
|
|
|
|
</td>
|
|
|
|
<td>
|
2022-08-12 15:27:03 +03:00
|
|
|
String interpolation (expands to `"hello world"`, `"1 2 3"`, `"/nix/store/<hash>-bash-<version>/bin/sh"`)
|
2022-08-12 14:07:18 +03:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`true`, `false`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Booleans
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-08-12 14:26:11 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`null`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Null value
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-08-12 14:07:18 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`123`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
An integer
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-08-12 14:18:59 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`3.141`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A floating point number
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-08-12 14:20:32 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`/etc`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
An absolute path
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-08-12 14:07:18 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`./foo.png`
|
|
|
|
</td>
|
|
|
|
<td>
|
2022-08-12 14:10:48 +03:00
|
|
|
A path relative to the file containing this Nix expression
|
2022-08-12 14:07:18 +03:00
|
|
|
</td>
|
|
|
|
</tr>
|
2022-08-12 14:25:40 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`~/.config`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A home path. Evaluates to the `"<user's home directory>/.config"`.
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-08-12 14:22:41 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<nixpkgs>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Search path. Value determined by [`$NIX_PATH` environment variable](../command-ref/env-common.md#env-NIX_PATH).
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-08-12 14:07:18 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
*Compound values*
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`{ x = 1; y = 2; }`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A set with attributes named `x` and `y`
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`{ foo.bar = 1; }`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A nested set, equivalent to `{ foo = { bar = 1; }; }`
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`rec { x = "foo"; y = x + "bar"; }`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A recursive set, equivalent to `{ x = "foo"; y = "foobar"; }`
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
2022-08-12 15:13:36 +03:00
|
|
|
`[ "foo" "bar" "baz" ]`
|
|
|
|
|
|
|
|
`[ 1 2 3 ]`
|
|
|
|
|
|
|
|
`[ (f 1) { a = 1; b = 2; } [ "c" ] ]`
|
2022-08-12 14:07:18 +03:00
|
|
|
</td>
|
|
|
|
<td>
|
2022-08-12 15:13:36 +03:00
|
|
|
Lists with three elements.
|
2022-08-12 14:07:18 +03:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
*Operators*
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`"foo" + "bar"`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
String concatenation
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`1 + 2`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Integer addition
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`"foo" == "f" + "oo"`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Equality test (evaluates to `true`)
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`"foo" != "bar"`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Inequality test (evaluates to `true`)
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`!true`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Boolean negation
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`{ x = 1; y = 2; }.x`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Attribute selection (evaluates to `1`)
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`{ x = 1; y = 2; }.z or 3`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Attribute selection with default (evaluates to `3`)
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`{ x = 1; y = 2; } // { z = 3; }`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Merge two sets (attributes in the right-hand set taking precedence)
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
*Control structures*
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`if 1 + 1 == 2 then "yes!" else "no!"`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Conditional expression
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`assert 1 + 1 == 2; "yes!"`
|
|
|
|
</td>
|
|
|
|
<td>
|
2022-08-12 14:09:45 +03:00
|
|
|
Assertion check (evaluates to `"yes!"`).
|
2022-08-12 14:07:18 +03:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`let x = "foo"; y = "bar"; in x + y`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Variable definition
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`with pkgs.lib; head [ 1 2 3 ]`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Add all attributes from the given set to the scope (evaluates to `1`)
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
*Functions (lambdas)*
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`x: x + 1`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A function that expects an integer and returns it increased by 1
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-08-12 15:13:15 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`x: y: x + y`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Curried function, equivalent to `x: (y: x + y)`. Can be used like a function that takes two arguments and returns their sum.
|
|
|
|
</td>
|
|
|
|
</tr>
|
2022-08-12 14:07:18 +03:00
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`(x: x + 1) 100`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A function call (evaluates to 101)
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`let inc = x: x + 1; in inc (inc (inc 100))`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A function bound to a variable and subsequently called by name (evaluates to 103)
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`{ x, y }: x + y`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A function that expects a set with required attributes `x` and `y` and concatenates them
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`{ x, y ? "bar" }: x + y`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A function that expects a set with required attribute `x` and optional `y`, using `"bar"` as default value for `y`
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`{ x, y, ... }: x + y`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A function that expects a set with required attributes `x` and `y` and ignores any other attributes
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`{ x, y } @ args: x + y`
|
2022-08-12 15:13:03 +03:00
|
|
|
|
|
|
|
`args @ { x, y }: x + y`
|
2022-08-12 14:07:18 +03:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
A function that expects a set with required attributes `x` and `y`, and binds the whole set to `args`
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
*Built-in functions*
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`import ./foo.nix`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Load and return Nix expression in given file
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
`map (x: x + x) [ 1 2 3 ]`
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
Apply a function to every element of a list (evaluates to `[ 2 4 6 ]`)
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|