summary refs log tree commit diff
path: root/nixos/doc/manual/from_md/configuration/summary.section.xml
blob: 96a178c4930ed024d50222b8962bcd1c3af164e8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
<section xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xml:id="sec-nix-syntax-summary">
  <title>Syntax Summary</title>
  <para>
    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
    <link xlink:href="https://nixos.org/nix/manual/#chap-writing-nix-expressions">Nix
    manual</link> for the rest.
  </para>
  <informaltable>
    <tgroup cols="2">
      <colspec align="left" />
      <colspec align="left" />
      <thead>
        <row>
          <entry>
            Example
          </entry>
          <entry>
            Description
          </entry>
        </row>
      </thead>
      <tbody>
        <row>
          <entry>
            <emphasis>Basic values</emphasis>
          </entry>
          <entry>
          </entry>
        </row>
        <row>
          <entry>
            <literal>&quot;Hello world&quot;</literal>
          </entry>
          <entry>
            A string
          </entry>
        </row>
        <row>
          <entry>
            <literal>&quot;${pkgs.bash}/bin/sh&quot;</literal>
          </entry>
          <entry>
            A string containing an expression (expands to
            <literal>&quot;/nix/store/hash-bash-version/bin/sh&quot;</literal>)
          </entry>
        </row>
        <row>
          <entry>
            <literal>true</literal>, <literal>false</literal>
          </entry>
          <entry>
            Booleans
          </entry>
        </row>
        <row>
          <entry>
            <literal>123</literal>
          </entry>
          <entry>
            An integer
          </entry>
        </row>
        <row>
          <entry>
            <literal>./foo.png</literal>
          </entry>
          <entry>
            A path (relative to the containing Nix expression)
          </entry>
        </row>
        <row>
          <entry>
            <emphasis>Compound values</emphasis>
          </entry>
          <entry>
          </entry>
        </row>
        <row>
          <entry>
            <literal>{ x = 1; y = 2; }</literal>
          </entry>
          <entry>
            A set with attributes named <literal>x</literal> and
            <literal>y</literal>
          </entry>
        </row>
        <row>
          <entry>
            <literal>{ foo.bar = 1; }</literal>
          </entry>
          <entry>
            A nested set, equivalent to
            <literal>{ foo = { bar = 1; }; }</literal>
          </entry>
        </row>
        <row>
          <entry>
            <literal>rec { x = &quot;foo&quot;; y = x + &quot;bar&quot;; }</literal>
          </entry>
          <entry>
            A recursive set, equivalent to
            <literal>{ x = &quot;foo&quot;; y = &quot;foobar&quot;; }</literal>
          </entry>
        </row>
        <row>
          <entry>
            <literal>[ &quot;foo&quot; &quot;bar&quot; ]</literal>
          </entry>
          <entry>
            A list with two elements
          </entry>
        </row>
        <row>
          <entry>
            <emphasis>Operators</emphasis>
          </entry>
          <entry>
          </entry>
        </row>
        <row>
          <entry>
            <literal>&quot;foo&quot; + &quot;bar&quot;</literal>
          </entry>
          <entry>
            String concatenation
          </entry>
        </row>
        <row>
          <entry>
            <literal>1 + 2</literal>
          </entry>
          <entry>
            Integer addition
          </entry>
        </row>
        <row>
          <entry>
            <literal>&quot;foo&quot; == &quot;f&quot; + &quot;oo&quot;</literal>
          </entry>
          <entry>
            Equality test (evaluates to <literal>true</literal>)
          </entry>
        </row>
        <row>
          <entry>
            <literal>&quot;foo&quot; != &quot;bar&quot;</literal>
          </entry>
          <entry>
            Inequality test (evaluates to <literal>true</literal>)
          </entry>
        </row>
        <row>
          <entry>
            <literal>!true</literal>
          </entry>
          <entry>
            Boolean negation
          </entry>
        </row>
        <row>
          <entry>
            <literal>{ x = 1; y = 2; }.x</literal>
          </entry>
          <entry>
            Attribute selection (evaluates to <literal>1</literal>)
          </entry>
        </row>
        <row>
          <entry>
            <literal>{ x = 1; y = 2; }.z or 3</literal>
          </entry>
          <entry>
            Attribute selection with default (evaluates to
            <literal>3</literal>)
          </entry>
        </row>
        <row>
          <entry>
            <literal>{ x = 1; y = 2; } // { z = 3; }</literal>
          </entry>
          <entry>
            Merge two sets (attributes in the right-hand set taking
            precedence)
          </entry>
        </row>
        <row>
          <entry>
            <emphasis>Control structures</emphasis>
          </entry>
          <entry>
          </entry>
        </row>
        <row>
          <entry>
            <literal>if 1 + 1 == 2 then &quot;yes!&quot; else &quot;no!&quot;</literal>
          </entry>
          <entry>
            Conditional expression
          </entry>
        </row>
        <row>
          <entry>
            <literal>assert 1 + 1 == 2; &quot;yes!&quot;</literal>
          </entry>
          <entry>
            Assertion check (evaluates to
            <literal>&quot;yes!&quot;</literal>). See
            <xref linkend="sec-assertions" /> for using assertions in
            modules
          </entry>
        </row>
        <row>
          <entry>
            <literal>let x = &quot;foo&quot;; y = &quot;bar&quot;; in x + y</literal>
          </entry>
          <entry>
            Variable definition
          </entry>
        </row>
        <row>
          <entry>
            <literal>with pkgs.lib; head [ 1 2 3 ]</literal>
          </entry>
          <entry>
            Add all attributes from the given set to the scope
            (evaluates to <literal>1</literal>)
          </entry>
        </row>
        <row>
          <entry>
            <emphasis>Functions (lambdas)</emphasis>
          </entry>
          <entry>
          </entry>
        </row>
        <row>
          <entry>
            <literal>x: x + 1</literal>
          </entry>
          <entry>
            A function that expects an integer and returns it increased
            by 1
          </entry>
        </row>
        <row>
          <entry>
            <literal>(x: x + 1) 100</literal>
          </entry>
          <entry>
            A function call (evaluates to 101)
          </entry>
        </row>
        <row>
          <entry>
            <literal>let inc = x: x + 1; in inc (inc (inc 100))</literal>
          </entry>
          <entry>
            A function bound to a variable and subsequently called by
            name (evaluates to 103)
          </entry>
        </row>
        <row>
          <entry>
            <literal>{ x, y }: x + y</literal>
          </entry>
          <entry>
            A function that expects a set with required attributes
            <literal>x</literal> and <literal>y</literal> and
            concatenates them
          </entry>
        </row>
        <row>
          <entry>
            <literal>{ x, y ? &quot;bar&quot; }: x + y</literal>
          </entry>
          <entry>
            A function that expects a set with required attribute
            <literal>x</literal> and optional <literal>y</literal>,
            using <literal>&quot;bar&quot;</literal> as default value
            for <literal>y</literal>
          </entry>
        </row>
        <row>
          <entry>
            <literal>{ x, y, ... }: x + y</literal>
          </entry>
          <entry>
            A function that expects a set with required attributes
            <literal>x</literal> and <literal>y</literal> and ignores
            any other attributes
          </entry>
        </row>
        <row>
          <entry>
            <literal>{ x, y } @ args: x + y</literal>
          </entry>
          <entry>
            A function that expects a set with required attributes
            <literal>x</literal> and <literal>y</literal>, and binds the
            whole set to <literal>args</literal>
          </entry>
        </row>
        <row>
          <entry>
            <emphasis>Built-in functions</emphasis>
          </entry>
          <entry>
          </entry>
        </row>
        <row>
          <entry>
            <literal>import ./foo.nix</literal>
          </entry>
          <entry>
            Load and return Nix expression in given file
          </entry>
        </row>
        <row>
          <entry>
            <literal>map (x: x + x) [ 1 2 3 ]</literal>
          </entry>
          <entry>
            Apply a function to every element of a list (evaluates to
            <literal>[ 2 4 6 ]</literal>)
          </entry>
        </row>
      </tbody>
    </tgroup>
  </informaltable>
</section>