doc: Better explain GC roots.
[jackhill/guix/guix.git] / doc / guix.texi
1 \input texinfo
2 @c -*-texinfo-*-
3
4 @c %**start of header
5 @setfilename guix.info
6 @documentencoding UTF-8
7 @settitle GNU Guix Reference Manual
8 @c %**end of header
9
10 @include version.texi
11
12 @c Identifier of the OpenPGP key used to sign tarballs and such.
13 @set OPENPGP-SIGNING-KEY-ID 3CE464558A84FDC69DB40CFB090B11993D9AEBB5
14
15 @copying
16 Copyright @copyright{} 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès@*
17 Copyright @copyright{} 2013, 2014, 2016 Andreas Enge@*
18 Copyright @copyright{} 2013 Nikita Karetnikov@*
19 Copyright @copyright{} 2014, 2015, 2016 Alex Kost@*
20 Copyright @copyright{} 2015, 2016 Mathieu Lirzin@*
21 Copyright @copyright{} 2014 Pierre-Antoine Rault@*
22 Copyright @copyright{} 2015 Taylan Ulrich Bayırlı/Kammer@*
23 Copyright @copyright{} 2015, 2016, 2017 Leo Famulari@*
24 Copyright @copyright{} 2015, 2016, 2017 Ricardo Wurmus@*
25 Copyright @copyright{} 2016 Ben Woodcroft@*
26 Copyright @copyright{} 2016 Chris Marusich@*
27 Copyright @copyright{} 2016, 2017 Efraim Flashner@*
28 Copyright @copyright{} 2016 John Darrington@*
29 Copyright @copyright{} 2016 ng0@*
30 Copyright @copyright{} 2016, 2017 Jan Nieuwenhuizen@*
31 Copyright @copyright{} 2016 Julien Lepiller@*
32 Copyright @copyright{} 2016 Alex ter Weele@*
33 Copyright @copyright{} 2017 Clément Lassieur@*
34 Copyright @copyright{} 2017 Mathieu Othacehe@*
35 Copyright @copyright{} 2017 Federico Beffa@*
36 Copyright @copyright{} 2017 Carlo Zancanaro@*
37 Copyright @copyright{} 2017 Thomas Danckaert@*
38 Copyright @copyright{} 2017 humanitiesNerd@*
39 Copyright @copyright{} 2017 Christopher Allan Webber@*
40 Copyright @copyright{} 2017 Marius Bakke@*
41 Copyright @copyright{} 2017 Hartmut Goebel@*
42 Copyright @copyright{} 2017 Maxim Cournoyer@*
43 Copyright @copyright{} 2017 Tobias Geerinckx-Rice
44
45 Permission is granted to copy, distribute and/or modify this document
46 under the terms of the GNU Free Documentation License, Version 1.3 or
47 any later version published by the Free Software Foundation; with no
48 Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
49 copy of the license is included in the section entitled ``GNU Free
50 Documentation License''.
51 @end copying
52
53 @dircategory System administration
54 @direntry
55 * Guix: (guix). Manage installed software and system configuration.
56 * guix package: (guix)Invoking guix package. Installing, removing, and upgrading packages.
57 * guix gc: (guix)Invoking guix gc. Reclaiming unused disk space.
58 * guix pull: (guix)Invoking guix pull. Update the list of available packages.
59 * guix system: (guix)Invoking guix system. Manage the operating system configuration.
60 @end direntry
61
62 @dircategory Software development
63 @direntry
64 * guix environment: (guix)Invoking guix environment. Building development environments with Guix.
65 * guix build: (guix)Invoking guix build. Building packages.
66 * guix pack: (guix)Invoking guix pack. Creating binary bundles.
67 @end direntry
68
69 @titlepage
70 @title GNU Guix Reference Manual
71 @subtitle Using the GNU Guix Functional Package Manager
72 @author The GNU Guix Developers
73
74 @page
75 @vskip 0pt plus 1filll
76 Edition @value{EDITION} @*
77 @value{UPDATED} @*
78
79 @insertcopying
80 @end titlepage
81
82 @contents
83
84 @c *********************************************************************
85 @node Top
86 @top GNU Guix
87
88 This document describes GNU Guix version @value{VERSION}, a functional
89 package management tool written for the GNU system.
90
91 @menu
92 * Introduction:: What is Guix about?
93 * Installation:: Installing Guix.
94 * Package Management:: Package installation, upgrade, etc.
95 * Programming Interface:: Using Guix in Scheme.
96 * Utilities:: Package management commands.
97 * GNU Distribution:: Software for your friendly GNU system.
98 * Contributing:: Your help needed!
99
100 * Acknowledgments:: Thanks!
101 * GNU Free Documentation License:: The license of this manual.
102 * Concept Index:: Concepts.
103 * Programming Index:: Data types, functions, and variables.
104
105 @detailmenu
106 --- The Detailed Node Listing ---
107
108 Installation
109
110 * Binary Installation:: Getting Guix running in no time!
111 * Requirements:: Software needed to build and run Guix.
112 * Running the Test Suite:: Testing Guix.
113 * Setting Up the Daemon:: Preparing the build daemon's environment.
114 * Invoking guix-daemon:: Running the build daemon.
115 * Application Setup:: Application-specific setup.
116
117 Setting Up the Daemon
118
119 * Build Environment Setup:: Preparing the isolated build environment.
120 * Daemon Offload Setup:: Offloading builds to remote machines.
121
122 Package Management
123
124 * Features:: How Guix will make your life brighter.
125 * Invoking guix package:: Package installation, removal, etc.
126 * Substitutes:: Downloading pre-built binaries.
127 * Packages with Multiple Outputs:: Single source package, multiple outputs.
128 * Invoking guix gc:: Running the garbage collector.
129 * Invoking guix pull:: Fetching the latest Guix and distribution.
130 * Invoking guix pack:: Creating software bundles.
131 * Invoking guix archive:: Exporting and importing store files.
132
133 Programming Interface
134
135 * Defining Packages:: Defining new packages.
136 * Build Systems:: Specifying how packages are built.
137 * The Store:: Manipulating the package store.
138 * Derivations:: Low-level interface to package derivations.
139 * The Store Monad:: Purely functional interface to the store.
140 * G-Expressions:: Manipulating build expressions.
141
142 Defining Packages
143
144 * package Reference :: The package data type.
145 * origin Reference:: The origin data type.
146
147 Utilities
148
149 * Invoking guix build:: Building packages from the command line.
150 * Invoking guix edit:: Editing package definitions.
151 * Invoking guix download:: Downloading a file and printing its hash.
152 * Invoking guix hash:: Computing the cryptographic hash of a file.
153 * Invoking guix import:: Importing package definitions.
154 * Invoking guix refresh:: Updating package definitions.
155 * Invoking guix lint:: Finding errors in package definitions.
156 * Invoking guix size:: Profiling disk usage.
157 * Invoking guix graph:: Visualizing the graph of packages.
158 * Invoking guix environment:: Setting up development environments.
159 * Invoking guix publish:: Sharing substitutes.
160 * Invoking guix challenge:: Challenging substitute servers.
161 * Invoking guix copy:: Copying to and from a remote store.
162 * Invoking guix container:: Process isolation.
163 * Invoking guix weather:: Assessing substitute availability.
164
165 Invoking @command{guix build}
166
167 * Common Build Options:: Build options for most commands.
168 * Package Transformation Options:: Creating variants of packages.
169 * Additional Build Options:: Options specific to 'guix build'.
170 * Debugging Build Failures:: Real life packaging experience.
171
172 GNU Distribution
173
174 * System Installation:: Installing the whole operating system.
175 * System Configuration:: Configuring the operating system.
176 * Documentation:: Browsing software user manuals.
177 * Installing Debugging Files:: Feeding the debugger.
178 * Security Updates:: Deploying security fixes quickly.
179 * Package Modules:: Packages from the programmer's viewpoint.
180 * Packaging Guidelines:: Growing the distribution.
181 * Bootstrapping:: GNU/Linux built from scratch.
182 * Porting:: Targeting another platform or kernel.
183
184 System Installation
185
186 * Limitations:: What you can expect.
187 * Hardware Considerations:: Supported hardware.
188 * USB Stick Installation:: Preparing the installation medium.
189 * Preparing for Installation:: Networking, partitioning, etc.
190 * Proceeding with the Installation:: The real thing.
191 * Installing GuixSD in a VM:: GuixSD playground.
192 * Building the Installation Image:: How this comes to be.
193
194 System Configuration
195
196 * Using the Configuration System:: Customizing your GNU system.
197 * operating-system Reference:: Detail of operating-system declarations.
198 * File Systems:: Configuring file system mounts.
199 * Mapped Devices:: Block device extra processing.
200 * User Accounts:: Specifying user accounts.
201 * Locales:: Language and cultural convention settings.
202 * Services:: Specifying system services.
203 * Setuid Programs:: Programs running with root privileges.
204 * X.509 Certificates:: Authenticating HTTPS servers.
205 * Name Service Switch:: Configuring libc's name service switch.
206 * Initial RAM Disk:: Linux-Libre bootstrapping.
207 * Bootloader Configuration:: Configuring the boot loader.
208 * Invoking guix system:: Instantiating a system configuration.
209 * Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
210 * Defining Services:: Adding new service definitions.
211
212 Services
213
214 * Base Services:: Essential system services.
215 * Scheduled Job Execution:: The mcron service.
216 * Log Rotation:: The rottlog service.
217 * Networking Services:: Network setup, SSH daemon, etc.
218 * X Window:: Graphical display.
219 * Printing Services:: Local and remote printer support.
220 * Desktop Services:: D-Bus and desktop services.
221 * Database Services:: SQL databases, key-value stores, etc.
222 * Mail Services:: IMAP, POP3, SMTP, and all that.
223 * Messaging Services:: Messaging services.
224 * Telephony Services:: Telephony services.
225 * Monitoring Services:: Monitoring services.
226 * Kerberos Services:: Kerberos services.
227 * Web Services:: Web servers.
228 * DNS Services:: DNS daemons.
229 * VPN Services:: VPN daemons.
230 * Network File System:: NFS related services.
231 * Continuous Integration:: The Cuirass service.
232 * Power management Services:: The TLP tool.
233 * Audio Services:: The MPD.
234 * Virtualization Services:: Virtualization services.
235 * Miscellaneous Services:: Other services.
236
237 Defining Services
238
239 * Service Composition:: The model for composing services.
240 * Service Types and Services:: Types and services.
241 * Service Reference:: API reference.
242 * Shepherd Services:: A particular type of service.
243
244 Packaging Guidelines
245
246 * Software Freedom:: What may go into the distribution.
247 * Package Naming:: What's in a name?
248 * Version Numbers:: When the name is not enough.
249 * Synopses and Descriptions:: Helping users find the right package.
250 * Python Modules:: A touch of British comedy.
251 * Perl Modules:: Little pearls.
252 * Java Packages:: Coffee break.
253 * Fonts:: Fond of fonts.
254
255 Contributing
256
257 * Building from Git:: The latest and greatest.
258 * Running Guix Before It Is Installed:: Hacker tricks.
259 * The Perfect Setup:: The right tools.
260 * Coding Style:: Hygiene of the contributor.
261 * Submitting Patches:: Share your work.
262
263 Coding Style
264
265 * Programming Paradigm:: How to compose your elements.
266 * Modules:: Where to store your code?
267 * Data Types and Pattern Matching:: Implementing data structures.
268 * Formatting Code:: Writing conventions.
269
270 @end detailmenu
271 @end menu
272
273 @c *********************************************************************
274 @node Introduction
275 @chapter Introduction
276
277 @cindex purpose
278 GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks''
279 using the international phonetic alphabet (IPA).} is a package
280 management tool for the GNU system. Guix makes it easy for unprivileged
281 users to install, upgrade, or remove packages, to roll back to a
282 previous package set, to build packages from source, and generally
283 assists with the creation and maintenance of software environments.
284
285 @cindex user interfaces
286 Guix provides a command-line package management interface
287 (@pxref{Invoking guix package}), a set of command-line utilities
288 (@pxref{Utilities}), as well as Scheme programming interfaces
289 (@pxref{Programming Interface}).
290 @cindex build daemon
291 Its @dfn{build daemon} is responsible for building packages on behalf of
292 users (@pxref{Setting Up the Daemon}) and for downloading pre-built
293 binaries from authorized sources (@pxref{Substitutes}).
294
295 @cindex extensibility of the distribution
296 @cindex customization, of packages
297 Guix includes package definitions for many GNU and non-GNU packages, all
298 of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the
299 user's computing freedom}. It is @emph{extensible}: users can write
300 their own package definitions (@pxref{Defining Packages}) and make them
301 available as independent package modules (@pxref{Package Modules}). It
302 is also @emph{customizable}: users can @emph{derive} specialized package
303 definitions from existing ones, including from the command line
304 (@pxref{Package Transformation Options}).
305
306 @cindex Guix System Distribution
307 @cindex GuixSD
308 You can install GNU@tie{}Guix on top of an existing GNU/Linux system
309 where it complements the available tools without interference
310 (@pxref{Installation}), or you can use it as part of the standalone
311 @dfn{Guix System Distribution} or GuixSD (@pxref{GNU Distribution}).
312 With GNU@tie{}GuixSD, you @emph{declare} all aspects of the operating
313 system configuration and Guix takes care of instantiating the
314 configuration in a transactional, reproducible, and stateless fashion
315 (@pxref{System Configuration}).
316
317 @cindex functional package management
318 Under the hood, Guix implements the @dfn{functional package management}
319 discipline pioneered by Nix (@pxref{Acknowledgments}).
320 In Guix, the package build and installation process is seen
321 as a @emph{function}, in the mathematical sense. That function takes inputs,
322 such as build scripts, a compiler, and libraries, and
323 returns an installed package. As a pure function, its result depends
324 solely on its inputs---for instance, it cannot refer to software or
325 scripts that were not explicitly passed as inputs. A build function
326 always produces the same result when passed a given set of inputs. It
327 cannot alter the environment of the running system in
328 any way; for instance, it cannot create, modify, or delete files outside
329 of its build and installation directories. This is achieved by running
330 build processes in isolated environments (or @dfn{containers}), where only their
331 explicit inputs are visible.
332
333 @cindex store
334 The result of package build functions is @dfn{cached} in the file
335 system, in a special directory called @dfn{the store} (@pxref{The
336 Store}). Each package is installed in a directory of its own in the
337 store---by default under @file{/gnu/store}. The directory name contains
338 a hash of all the inputs used to build that package; thus, changing an
339 input yields a different directory name.
340
341 This approach is the foundation for the salient features of Guix: support
342 for transactional package upgrade and rollback, per-user installation, and
343 garbage collection of packages (@pxref{Features}).
344
345
346 @c *********************************************************************
347 @node Installation
348 @chapter Installation
349
350 @cindex installing Guix
351 GNU Guix is available for download from its website at
352 @url{http://www.gnu.org/software/guix/}. This section describes the
353 software requirements of Guix, as well as how to install it and get
354 ready to use it.
355
356 Note that this section is concerned with the installation of the package
357 manager, which can be done on top of a running GNU/Linux system. If,
358 instead, you want to install the complete GNU operating system,
359 @pxref{System Installation}.
360
361 @cindex foreign distro
362 When installed on a running GNU/Linux system---thereafter called a
363 @dfn{foreign distro}---GNU@tie{}Guix complements the available tools
364 without interference. Its data lives exclusively in two directories,
365 usually @file{/gnu/store} and @file{/var/guix}; other files on your
366 system, such as @file{/etc}, are left untouched.
367
368 Once installed, Guix can be updated by running @command{guix pull}
369 (@pxref{Invoking guix pull}).
370
371 @menu
372 * Binary Installation:: Getting Guix running in no time!
373 * Requirements:: Software needed to build and run Guix.
374 * Running the Test Suite:: Testing Guix.
375 * Setting Up the Daemon:: Preparing the build daemon's environment.
376 * Invoking guix-daemon:: Running the build daemon.
377 * Application Setup:: Application-specific setup.
378 @end menu
379
380 @node Binary Installation
381 @section Binary Installation
382
383 @cindex installing Guix from binaries
384 This section describes how to install Guix on an arbitrary system from a
385 self-contained tarball providing binaries for Guix and for all its
386 dependencies. This is often quicker than installing from source, which
387 is described in the next sections. The only requirement is to have
388 GNU@tie{}tar and Xz.
389
390 Installing goes along these lines:
391
392 @enumerate
393 @item
394 @cindex downloading Guix binary
395 Download the binary tarball from
396 @indicateurl{ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz},
397 where @var{system} is @code{x86_64-linux} for an @code{x86_64} machine
398 already running the kernel Linux, and so on.
399
400 @c The following is somewhat duplicated in ``System Installation''.
401 Make sure to download the associated @file{.sig} file and to verify the
402 authenticity of the tarball against it, along these lines:
403
404 @example
405 $ wget ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
406 $ gpg --verify guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
407 @end example
408
409 If that command fails because you do not have the required public key,
410 then run this command to import it:
411
412 @example
413 $ gpg --keyserver pgp.mit.edu --recv-keys @value{OPENPGP-SIGNING-KEY-ID}
414 @end example
415
416 @noindent
417 and rerun the @code{gpg --verify} command.
418 @c end authentication part
419
420 @item
421 As @code{root}, run:
422
423 @example
424 # cd /tmp
425 # tar --warning=no-timestamp -xf \
426 guix-binary-@value{VERSION}.@var{system}.tar.xz
427 # mv var/guix /var/ && mv gnu /
428 @end example
429
430 This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}.
431 The latter contains a ready-to-use profile for @code{root} (see next
432 step.)
433
434 Do @emph{not} unpack the tarball on a working Guix system since that
435 would overwrite its own essential files.
436
437 The @code{--warning=no-timestamp} option makes sure GNU@tie{}tar does
438 not emit warnings about ``implausibly old time stamps'' (such
439 warnings were triggered by GNU@tie{}tar 1.26 and older; recent
440 versions are fine.)
441 They stem from the fact that all the
442 files in the archive have their modification time set to zero (which
443 means January 1st, 1970.) This is done on purpose to make sure the
444 archive content is independent of its creation time, thus making it
445 reproducible.
446
447 @item
448 Make @code{root}'s profile available under @file{~/.guix-profile}:
449
450 @example
451 # ln -sf /var/guix/profiles/per-user/root/guix-profile \
452 ~root/.guix-profile
453 @end example
454
455 Source @file{etc/profile} to augment @code{PATH} and other relevant
456 environment variables:
457
458 @example
459 # GUIX_PROFILE=$HOME/.guix-profile \
460 source $GUIX_PROFILE/etc/profile
461 @end example
462
463 @item
464 Create the group and user accounts for build users as explained below
465 (@pxref{Build Environment Setup}).
466
467 @item
468 Run the daemon, and set it to automatically start on boot.
469
470 If your host distro uses the systemd init system, this can be achieved
471 with these commands:
472
473 @c Versions of systemd that supported symlinked service files are not
474 @c yet widely deployed, so we should suggest that users copy the service
475 @c files into place.
476 @c
477 @c See this thread for more information:
478 @c http://lists.gnu.org/archive/html/guix-devel/2017-01/msg01199.html
479
480 @example
481 # cp ~root/.guix-profile/lib/systemd/system/guix-daemon.service \
482 /etc/systemd/system/
483 # systemctl start guix-daemon && systemctl enable guix-daemon
484 @end example
485
486 If your host distro uses the Upstart init system:
487
488 @example
489 # initctl reload-configuration
490 # cp ~root/.guix-profile/lib/upstart/system/guix-daemon.conf /etc/init/
491 # start guix-daemon
492 @end example
493
494 Otherwise, you can still start the daemon manually with:
495
496 @example
497 # ~root/.guix-profile/bin/guix-daemon --build-users-group=guixbuild
498 @end example
499
500 @item
501 Make the @command{guix} command available to other users on the machine,
502 for instance with:
503
504 @example
505 # mkdir -p /usr/local/bin
506 # cd /usr/local/bin
507 # ln -s /var/guix/profiles/per-user/root/guix-profile/bin/guix
508 @end example
509
510 It is also a good idea to make the Info version of this manual available
511 there:
512
513 @example
514 # mkdir -p /usr/local/share/info
515 # cd /usr/local/share/info
516 # for i in /var/guix/profiles/per-user/root/guix-profile/share/info/* ;
517 do ln -s $i ; done
518 @end example
519
520 That way, assuming @file{/usr/local/share/info} is in the search path,
521 running @command{info guix} will open this manual (@pxref{Other Info
522 Directories,,, texinfo, GNU Texinfo}, for more details on changing the
523 Info search path.)
524
525 @item
526 @cindex substitutes, authorization thereof
527 To use substitutes from @code{hydra.gnu.org} or one of its mirrors
528 (@pxref{Substitutes}), authorize them:
529
530 @example
531 # guix archive --authorize < ~root/.guix-profile/share/guix/hydra.gnu.org.pub
532 @end example
533
534 @item
535 Each user may need to perform a few additional steps to make their Guix
536 environment ready for use, @pxref{Application Setup}.
537 @end enumerate
538
539 Voilà, the installation is complete!
540
541 You can confirm that Guix is working by installing a sample package into
542 the root profile:
543
544 @example
545 # guix package -i hello
546 @end example
547
548 The @code{guix} package must remain available in @code{root}'s profile,
549 or it would become subject to garbage collection---in which case you
550 would find yourself badly handicapped by the lack of the @command{guix}
551 command. In other words, do not remove @code{guix} by running
552 @code{guix package -r guix}.
553
554 The binary installation tarball can be (re)produced and verified simply
555 by running the following command in the Guix source tree:
556
557 @example
558 make guix-binary.@var{system}.tar.xz
559 @end example
560
561 @noindent
562 ... which, in turn, runs:
563
564 @example
565 guix pack -s @var{system} --localstatedir guix
566 @end example
567
568 @xref{Invoking guix pack}, for more info on this handy tool.
569
570 @node Requirements
571 @section Requirements
572
573 This section lists requirements when building Guix from source. The
574 build procedure for Guix is the same as for other GNU software, and is
575 not covered here. Please see the files @file{README} and @file{INSTALL}
576 in the Guix source tree for additional details.
577
578 GNU Guix depends on the following packages:
579
580 @itemize
581 @item @url{http://gnu.org/software/guile/, GNU Guile}, version 2.0.9 or
582 later, including 2.2.x;
583 @item @url{http://gnupg.org/, GNU libgcrypt};
584 @item
585 @uref{http://gnutls.org/, GnuTLS}, specifically its Guile bindings
586 (@pxref{Guile Preparations, how to install the GnuTLS bindings for
587 Guile,, gnutls-guile, GnuTLS-Guile});
588 @item
589 @c FIXME: Specify a version number once a release has been made.
590 @uref{https://gitlab.com/guile-git/guile-git, Guile-Git}, from August
591 2017 or later;
592 @item @url{http://www.gnu.org/software/make/, GNU Make}.
593 @end itemize
594
595 The following dependencies are optional:
596
597 @itemize
598 @item
599 Installing
600 @url{http://savannah.nongnu.org/projects/guile-json/, Guile-JSON} will
601 allow you to use the @command{guix import pypi} command (@pxref{Invoking
602 guix import}). It is of
603 interest primarily for developers and not for casual users.
604
605 @item
606 @c Note: We need at least 0.10.2 for 'channel-send-eof'.
607 Support for build offloading (@pxref{Daemon Offload Setup}) and
608 @command{guix copy} (@pxref{Invoking guix copy}) depends on
609 @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH},
610 version 0.10.2 or later.
611
612 @item
613 When @url{http://zlib.net, zlib} is available, @command{guix publish}
614 can compress build byproducts (@pxref{Invoking guix publish}).
615 @end itemize
616
617 Unless @code{--disable-daemon} was passed to @command{configure}, the
618 following packages are also needed:
619
620 @itemize
621 @item @url{http://sqlite.org, SQLite 3};
622 @item @url{http://www.bzip.org, libbz2};
623 @item @url{http://gcc.gnu.org, GCC's g++}, with support for the
624 C++11 standard.
625 @end itemize
626
627 @cindex state directory
628 When configuring Guix on a system that already has a Guix installation,
629 be sure to specify the same state directory as the existing installation
630 using the @code{--localstatedir} option of the @command{configure}
631 script (@pxref{Directory Variables, @code{localstatedir},, standards,
632 GNU Coding Standards}). The @command{configure} script protects against
633 unintended misconfiguration of @var{localstatedir} so you do not
634 inadvertently corrupt your store (@pxref{The Store}).
635
636 @cindex Nix, compatibility
637 When a working installation of @url{http://nixos.org/nix/, the Nix package
638 manager} is available, you
639 can instead configure Guix with @code{--disable-daemon}. In that case,
640 Nix replaces the three dependencies above.
641
642 Guix is compatible with Nix, so it is possible to share the same store
643 between both. To do so, you must pass @command{configure} not only the
644 same @code{--with-store-dir} value, but also the same
645 @code{--localstatedir} value. The latter is essential because it
646 specifies where the database that stores metadata about the store is
647 located, among other things. The default values for Nix are
648 @code{--with-store-dir=/nix/store} and @code{--localstatedir=/nix/var}.
649 Note that @code{--disable-daemon} is not required if
650 your goal is to share the store with Nix.
651
652 @node Running the Test Suite
653 @section Running the Test Suite
654
655 @cindex test suite
656 After a successful @command{configure} and @code{make} run, it is a good
657 idea to run the test suite. It can help catch issues with the setup or
658 environment, or bugs in Guix itself---and really, reporting test
659 failures is a good way to help improve the software. To run the test
660 suite, type:
661
662 @example
663 make check
664 @end example
665
666 Test cases can run in parallel: you can use the @code{-j} option of
667 GNU@tie{}make to speed things up. The first run may take a few minutes
668 on a recent machine; subsequent runs will be faster because the store
669 that is created for test purposes will already have various things in
670 cache.
671
672 It is also possible to run a subset of the tests by defining the
673 @code{TESTS} makefile variable as in this example:
674
675 @example
676 make check TESTS="tests/store.scm tests/cpio.scm"
677 @end example
678
679 By default, tests results are displayed at a file level. In order to
680 see the details of every individual test cases, it is possible to define
681 the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:
682
683 @example
684 make check TESTS="tests/base64.scm" SCM_LOG_DRIVER_FLAGS="--brief=no"
685 @end example
686
687 Upon failure, please email @email{bug-guix@@gnu.org} and attach the
688 @file{test-suite.log} file. Please specify the Guix version being used
689 as well as version numbers of the dependencies (@pxref{Requirements}) in
690 your message.
691
692 Guix also comes with a whole-system test suite that tests complete
693 GuixSD operating system instances. It can only run on systems where
694 Guix is already installed, using:
695
696 @example
697 make check-system
698 @end example
699
700 @noindent
701 or, again, by defining @code{TESTS} to select a subset of tests to run:
702
703 @example
704 make check-system TESTS="basic mcron"
705 @end example
706
707 These system tests are defined in the @code{(gnu tests @dots{})}
708 modules. They work by running the operating systems under test with
709 lightweight instrumentation in a virtual machine (VM). They can be
710 computationally intensive or rather cheap, depending on whether
711 substitutes are available for their dependencies (@pxref{Substitutes}).
712 Some of them require a lot of storage space to hold VM images.
713
714 Again in case of test failures, please send @email{bug-guix@@gnu.org}
715 all the details.
716
717 @node Setting Up the Daemon
718 @section Setting Up the Daemon
719
720 @cindex daemon
721 Operations such as building a package or running the garbage collector
722 are all performed by a specialized process, the @dfn{build daemon}, on
723 behalf of clients. Only the daemon may access the store and its
724 associated database. Thus, any operation that manipulates the store
725 goes through the daemon. For instance, command-line tools such as
726 @command{guix package} and @command{guix build} communicate with the
727 daemon (@i{via} remote procedure calls) to instruct it what to do.
728
729 The following sections explain how to prepare the build daemon's
730 environment. See also @ref{Substitutes}, for information on how to allow
731 the daemon to download pre-built binaries.
732
733 @menu
734 * Build Environment Setup:: Preparing the isolated build environment.
735 * Daemon Offload Setup:: Offloading builds to remote machines.
736 @end menu
737
738 @node Build Environment Setup
739 @subsection Build Environment Setup
740
741 @cindex build environment
742 In a standard multi-user setup, Guix and its daemon---the
743 @command{guix-daemon} program---are installed by the system
744 administrator; @file{/gnu/store} is owned by @code{root} and
745 @command{guix-daemon} runs as @code{root}. Unprivileged users may use
746 Guix tools to build packages or otherwise access the store, and the
747 daemon will do it on their behalf, ensuring that the store is kept in a
748 consistent state, and allowing built packages to be shared among users.
749
750 @cindex build users
751 When @command{guix-daemon} runs as @code{root}, you may not want package
752 build processes themselves to run as @code{root} too, for obvious
753 security reasons. To avoid that, a special pool of @dfn{build users}
754 should be created for use by build processes started by the daemon.
755 These build users need not have a shell and a home directory: they will
756 just be used when the daemon drops @code{root} privileges in build
757 processes. Having several such users allows the daemon to launch
758 distinct build processes under separate UIDs, which guarantees that they
759 do not interfere with each other---an essential feature since builds are
760 regarded as pure functions (@pxref{Introduction}).
761
762 On a GNU/Linux system, a build user pool may be created like this (using
763 Bash syntax and the @code{shadow} commands):
764
765 @c See http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html
766 @c for why `-G' is needed.
767 @example
768 # groupadd --system guixbuild
769 # for i in `seq -w 1 10`;
770 do
771 useradd -g guixbuild -G guixbuild \
772 -d /var/empty -s `which nologin` \
773 -c "Guix build user $i" --system \
774 guixbuilder$i;
775 done
776 @end example
777
778 @noindent
779 The number of build users determines how many build jobs may run in
780 parallel, as specified by the @option{--max-jobs} option
781 (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use
782 @command{guix system vm} and related commands, you may need to add the
783 build users to the @code{kvm} group so they can access @file{/dev/kvm},
784 using @code{-G guixbuild,kvm} instead of @code{-G guixbuild}
785 (@pxref{Invoking guix system}).
786
787 The @code{guix-daemon} program may then be run as @code{root} with the
788 following command@footnote{If your machine uses the systemd init system,
789 dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service}
790 file in @file{/etc/systemd/system} will ensure that
791 @command{guix-daemon} is automatically started. Similarly, if your
792 machine uses the Upstart init system, drop the
793 @file{@var{prefix}/lib/upstart/system/guix-daemon.conf}
794 file in @file{/etc/init}.}:
795
796 @example
797 # guix-daemon --build-users-group=guixbuild
798 @end example
799
800 @cindex chroot
801 @noindent
802 This way, the daemon starts build processes in a chroot, under one of
803 the @code{guixbuilder} users. On GNU/Linux, by default, the chroot
804 environment contains nothing but:
805
806 @c Keep this list in sync with libstore/build.cc! -----------------------
807 @itemize
808 @item
809 a minimal @code{/dev} directory, created mostly independently from the
810 host @code{/dev}@footnote{``Mostly'', because while the set of files
811 that appear in the chroot's @code{/dev} is fixed, most of these files
812 can only be created if the host has them.};
813
814 @item
815 the @code{/proc} directory; it only shows the processes of the container
816 since a separate PID name space is used;
817
818 @item
819 @file{/etc/passwd} with an entry for the current user and an entry for
820 user @file{nobody};
821
822 @item
823 @file{/etc/group} with an entry for the user's group;
824
825 @item
826 @file{/etc/hosts} with an entry that maps @code{localhost} to
827 @code{127.0.0.1};
828
829 @item
830 a writable @file{/tmp} directory.
831 @end itemize
832
833 You can influence the directory where the daemon stores build trees
834 @i{via} the @code{TMPDIR} environment variable. However, the build tree
835 within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0},
836 where @var{name} is the derivation name---e.g., @code{coreutils-8.24}.
837 This way, the value of @code{TMPDIR} does not leak inside build
838 environments, which avoids discrepancies in cases where build processes
839 capture the name of their build tree.
840
841 @vindex http_proxy
842 The daemon also honors the @code{http_proxy} environment variable for
843 HTTP downloads it performs, be it for fixed-output derivations
844 (@pxref{Derivations}) or for substitutes (@pxref{Substitutes}).
845
846 If you are installing Guix as an unprivileged user, it is still possible
847 to run @command{guix-daemon} provided you pass @code{--disable-chroot}.
848 However, build processes will not be isolated from one another, and not
849 from the rest of the system. Thus, build processes may interfere with
850 each other, and may access programs, libraries, and other files
851 available on the system---making it much harder to view them as
852 @emph{pure} functions.
853
854
855 @node Daemon Offload Setup
856 @subsection Using the Offload Facility
857
858 @cindex offloading
859 @cindex build hook
860 When desired, the build daemon can @dfn{offload} derivation builds to
861 other machines running Guix, using the @code{offload} @dfn{build
862 hook}@footnote{This feature is available only when
863 @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is
864 present.}. When that
865 feature is enabled, a list of user-specified build machines is read from
866 @file{/etc/guix/machines.scm}; every time a build is requested, for
867 instance via @code{guix build}, the daemon attempts to offload it to one
868 of the machines that satisfy the constraints of the derivation, in
869 particular its system type---e.g., @file{x86_64-linux}. Missing
870 prerequisites for the build are copied over SSH to the target machine,
871 which then proceeds with the build; upon success the output(s) of the
872 build are copied back to the initial machine.
873
874 The @file{/etc/guix/machines.scm} file typically looks like this:
875
876 @example
877 (list (build-machine
878 (name "eightysix.example.org")
879 (system "x86_64-linux")
880 (host-key "ssh-ed25519 AAAAC3Nza@dots{}")
881 (user "bob")
882 (speed 2.)) ;incredibly fast!
883
884 (build-machine
885 (name "meeps.example.org")
886 (system "mips64el-linux")
887 (host-key "ssh-rsa AAAAB3Nza@dots{}")
888 (user "alice")
889 (private-key
890 (string-append (getenv "HOME")
891 "/.ssh/identity-for-guix"))))
892 @end example
893
894 @noindent
895 In the example above we specify a list of two build machines, one for
896 the @code{x86_64} architecture and one for the @code{mips64el}
897 architecture.
898
899 In fact, this file is---not surprisingly!---a Scheme file that is
900 evaluated when the @code{offload} hook is started. Its return value
901 must be a list of @code{build-machine} objects. While this example
902 shows a fixed list of build machines, one could imagine, say, using
903 DNS-SD to return a list of potential build machines discovered in the
904 local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using
905 Avahi in Guile Scheme Programs}). The @code{build-machine} data type is
906 detailed below.
907
908 @deftp {Data Type} build-machine
909 This data type represents build machines to which the daemon may offload
910 builds. The important fields are:
911
912 @table @code
913
914 @item name
915 The host name of the remote machine.
916
917 @item system
918 The system type of the remote machine---e.g., @code{"x86_64-linux"}.
919
920 @item user
921 The user account to use when connecting to the remote machine over SSH.
922 Note that the SSH key pair must @emph{not} be passphrase-protected, to
923 allow non-interactive logins.
924
925 @item host-key
926 This must be the machine's SSH @dfn{public host key} in OpenSSH format.
927 This is used to authenticate the machine when we connect to it. It is a
928 long string that looks like this:
929
930 @example
931 ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org
932 @end example
933
934 If the machine is running the OpenSSH daemon, @command{sshd}, the host
935 key can be found in a file such as
936 @file{/etc/ssh/ssh_host_ed25519_key.pub}.
937
938 If the machine is running the SSH daemon of GNU@tie{}lsh,
939 @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a
940 similar file. It can be converted to the OpenSSH format using
941 @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):
942
943 @example
944 $ lsh-export-key --openssh < /etc/lsh/host-key.pub
945 ssh-rsa AAAAB3NzaC1yc2EAAAAEOp8FoQAAAQEAs1eB46LV@dots{}
946 @end example
947
948 @end table
949
950 A number of optional fields may be specified:
951
952 @table @asis
953
954 @item @code{port} (default: @code{22})
955 Port number of SSH server on the machine.
956
957 @item @code{private-key} (default: @file{~root/.ssh/id_rsa})
958 The SSH private key file to use when connecting to the machine, in
959 OpenSSH format.
960
961 Note that the default value is the private key @emph{of the root
962 account}. Make sure it exists if you use the default.
963
964 @item @code{compression} (default: @code{"zlib@@openssh.com,zlib"})
965 @itemx @code{compression-level} (default: @code{3})
966 The SSH-level compression methods and compression level requested.
967
968 Note that offloading relies on SSH compression to reduce bandwidth usage
969 when transferring files to and from build machines.
970
971 @item @code{daemon-socket} (default: @code{"/var/guix/daemon-socket/socket"})
972 File name of the Unix-domain socket @command{guix-daemon} is listening
973 to on that machine.
974
975 @item @code{parallel-builds} (default: @code{1})
976 The number of builds that may run in parallel on the machine.
977
978 @item @code{speed} (default: @code{1.0})
979 A ``relative speed factor''. The offload scheduler will tend to prefer
980 machines with a higher speed factor.
981
982 @item @code{features} (default: @code{'()})
983 A list of strings denoting specific features supported by the machine.
984 An example is @code{"kvm"} for machines that have the KVM Linux modules
985 and corresponding hardware support. Derivations can request features by
986 name, and they will be scheduled on matching build machines.
987
988 @end table
989 @end deftp
990
991 The @code{guile} command must be in the search path on the build
992 machines. In addition, the Guix modules must be in
993 @code{$GUILE_LOAD_PATH} on the build machine---you can check whether
994 this is the case by running:
995
996 @example
997 ssh build-machine guile -c "'(use-modules (guix config))'"
998 @end example
999
1000 There is one last thing to do once @file{machines.scm} is in place. As
1001 explained above, when offloading, files are transferred back and forth
1002 between the machine stores. For this to work, you first need to
1003 generate a key pair on each machine to allow the daemon to export signed
1004 archives of files from the store (@pxref{Invoking guix archive}):
1005
1006 @example
1007 # guix archive --generate-key
1008 @end example
1009
1010 @noindent
1011 Each build machine must authorize the key of the master machine so that
1012 it accepts store items it receives from the master:
1013
1014 @example
1015 # guix archive --authorize < master-public-key.txt
1016 @end example
1017
1018 @noindent
1019 Likewise, the master machine must authorize the key of each build machine.
1020
1021 All the fuss with keys is here to express pairwise mutual trust
1022 relations between the master and the build machines. Concretely, when
1023 the master receives files from a build machine (and @i{vice versa}), its
1024 build daemon can make sure they are genuine, have not been tampered
1025 with, and that they are signed by an authorized key.
1026
1027 @cindex offload test
1028 To test whether your setup is operational, run this command on the
1029 master node:
1030
1031 @example
1032 # guix offload test
1033 @end example
1034
1035 This will attempt to connect to each of the build machines specified in
1036 @file{/etc/guix/machines.scm}, make sure Guile and the Guix modules are
1037 available on each machine, attempt to export to the machine and import
1038 from it, and report any error in the process.
1039
1040 If you want to test a different machine file, just specify it on the
1041 command line:
1042
1043 @example
1044 # guix offload test machines-qualif.scm
1045 @end example
1046
1047 Last, you can test the subset of the machines whose name matches a
1048 regular expression like this:
1049
1050 @example
1051 # guix offload test machines.scm '\.gnu\.org$'
1052 @end example
1053
1054 @node Invoking guix-daemon
1055 @section Invoking @command{guix-daemon}
1056
1057 The @command{guix-daemon} program implements all the functionality to
1058 access the store. This includes launching build processes, running the
1059 garbage collector, querying the availability of a build result, etc. It
1060 is normally run as @code{root} like this:
1061
1062 @example
1063 # guix-daemon --build-users-group=guixbuild
1064 @end example
1065
1066 @noindent
1067 For details on how to set it up, @pxref{Setting Up the Daemon}.
1068
1069 @cindex chroot
1070 @cindex container, build environment
1071 @cindex build environment
1072 @cindex reproducible builds
1073 By default, @command{guix-daemon} launches build processes under
1074 different UIDs, taken from the build group specified with
1075 @code{--build-users-group}. In addition, each build process is run in a
1076 chroot environment that only contains the subset of the store that the
1077 build process depends on, as specified by its derivation
1078 (@pxref{Programming Interface, derivation}), plus a set of specific
1079 system directories. By default, the latter contains @file{/dev} and
1080 @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a
1081 @dfn{container}: in addition to having its own file system tree, it has
1082 a separate mount name space, its own PID name space, network name space,
1083 etc. This helps achieve reproducible builds (@pxref{Features}).
1084
1085 When the daemon performs a build on behalf of the user, it creates a
1086 build directory under @file{/tmp} or under the directory specified by
1087 its @code{TMPDIR} environment variable; this directory is shared with
1088 the container for the duration of the build. Be aware that using a
1089 directory other than @file{/tmp} can affect build results---for example,
1090 with a longer directory name, a build process that uses Unix-domain
1091 sockets might hit the name length limitation for @code{sun_path}, which
1092 it would otherwise not hit.
1093
1094 The build directory is automatically deleted upon completion, unless the
1095 build failed and the client specified @option{--keep-failed}
1096 (@pxref{Invoking guix build, @option{--keep-failed}}).
1097
1098 The following command-line options are supported:
1099
1100 @table @code
1101 @item --build-users-group=@var{group}
1102 Take users from @var{group} to run build processes (@pxref{Setting Up
1103 the Daemon, build users}).
1104
1105 @item --no-substitutes
1106 @cindex substitutes
1107 Do not use substitutes for build products. That is, always build things
1108 locally instead of allowing downloads of pre-built binaries
1109 (@pxref{Substitutes}).
1110
1111 By default substitutes are used, unless the client---such as the
1112 @command{guix package} command---is explicitly invoked with
1113 @code{--no-substitutes}.
1114
1115 When the daemon runs with @code{--no-substitutes}, clients can still
1116 explicitly enable substitution @i{via} the @code{set-build-options}
1117 remote procedure call (@pxref{The Store}).
1118
1119 @item --substitute-urls=@var{urls}
1120 @anchor{daemon-substitute-urls}
1121 Consider @var{urls} the default whitespace-separated list of substitute
1122 source URLs. When this option is omitted,
1123 @indicateurl{https://mirror.hydra.gnu.org https://hydra.gnu.org} is used
1124 (@code{mirror.hydra.gnu.org} is a mirror of @code{hydra.gnu.org}).
1125
1126 This means that substitutes may be downloaded from @var{urls}, as long
1127 as they are signed by a trusted signature (@pxref{Substitutes}).
1128
1129 @cindex build hook
1130 @item --no-build-hook
1131 Do not use the @dfn{build hook}.
1132
1133 The build hook is a helper program that the daemon can start and to
1134 which it submits build requests. This mechanism is used to offload
1135 builds to other machines (@pxref{Daemon Offload Setup}).
1136
1137 @item --cache-failures
1138 Cache build failures. By default, only successful builds are cached.
1139
1140 When this option is used, @command{guix gc --list-failures} can be used
1141 to query the set of store items marked as failed; @command{guix gc
1142 --clear-failures} removes store items from the set of cached failures.
1143 @xref{Invoking guix gc}.
1144
1145 @item --cores=@var{n}
1146 @itemx -c @var{n}
1147 Use @var{n} CPU cores to build each derivation; @code{0} means as many
1148 as available.
1149
1150 The default value is @code{0}, but it may be overridden by clients, such
1151 as the @code{--cores} option of @command{guix build} (@pxref{Invoking
1152 guix build}).
1153
1154 The effect is to define the @code{NIX_BUILD_CORES} environment variable
1155 in the build process, which can then use it to exploit internal
1156 parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}.
1157
1158 @item --max-jobs=@var{n}
1159 @itemx -M @var{n}
1160 Allow at most @var{n} build jobs in parallel. The default value is
1161 @code{1}. Setting it to @code{0} means that no builds will be performed
1162 locally; instead, the daemon will offload builds (@pxref{Daemon Offload
1163 Setup}), or simply fail.
1164
1165 @item --max-silent-time=@var{seconds}
1166 When the build or substitution process remains silent for more than
1167 @var{seconds}, terminate it and report a build failure.
1168
1169 The default value is @code{0}, which disables the timeout.
1170
1171 The value specified here can be overridden by clients (@pxref{Common
1172 Build Options, @code{--max-silent-time}}).
1173
1174 @item --timeout=@var{seconds}
1175 Likewise, when the build or substitution process lasts for more than
1176 @var{seconds}, terminate it and report a build failure.
1177
1178 The default value is @code{0}, which disables the timeout.
1179
1180 The value specified here can be overridden by clients (@pxref{Common
1181 Build Options, @code{--timeout}}).
1182
1183 @item --rounds=@var{N}
1184 Build each derivation @var{n} times in a row, and raise an error if
1185 consecutive build results are not bit-for-bit identical. Note that this
1186 setting can be overridden by clients such as @command{guix build}
1187 (@pxref{Invoking guix build}).
1188
1189 When used in conjunction with @option{--keep-failed}, the differing
1190 output is kept in the store, under @file{/gnu/store/@dots{}-check}.
1191 This makes it easy to look for differences between the two results.
1192
1193 @item --debug
1194 Produce debugging output.
1195
1196 This is useful to debug daemon start-up issues, but then it may be
1197 overridden by clients, for example the @code{--verbosity} option of
1198 @command{guix build} (@pxref{Invoking guix build}).
1199
1200 @item --chroot-directory=@var{dir}
1201 Add @var{dir} to the build chroot.
1202
1203 Doing this may change the result of build processes---for instance if
1204 they use optional dependencies found in @var{dir} when it is available,
1205 and not otherwise. For that reason, it is not recommended to do so.
1206 Instead, make sure that each derivation declares all the inputs that it
1207 needs.
1208
1209 @item --disable-chroot
1210 Disable chroot builds.
1211
1212 Using this option is not recommended since, again, it would allow build
1213 processes to gain access to undeclared dependencies. It is necessary,
1214 though, when @command{guix-daemon} is running under an unprivileged user
1215 account.
1216
1217 @item --disable-log-compression
1218 Disable compression of the build logs.
1219
1220 Unless @code{--lose-logs} is used, all the build logs are kept in the
1221 @var{localstatedir}. To save space, the daemon automatically compresses
1222 them with bzip2 by default. This option disables that.
1223
1224 @item --disable-deduplication
1225 @cindex deduplication
1226 Disable automatic file ``deduplication'' in the store.
1227
1228 By default, files added to the store are automatically ``deduplicated'':
1229 if a newly added file is identical to another one found in the store,
1230 the daemon makes the new file a hard link to the other file. This can
1231 noticeably reduce disk usage, at the expense of slightly increased
1232 input/output load at the end of a build process. This option disables
1233 this optimization.
1234
1235 @item --gc-keep-outputs[=yes|no]
1236 Tell whether the garbage collector (GC) must keep outputs of live
1237 derivations.
1238
1239 @cindex GC roots
1240 @cindex garbage collector roots
1241 When set to ``yes'', the GC will keep the outputs of any live derivation
1242 available in the store---the @code{.drv} files. The default is ``no'',
1243 meaning that derivation outputs are kept only if they are GC roots.
1244 @xref{Invoking guix gc}, for more on GC roots.
1245
1246 @item --gc-keep-derivations[=yes|no]
1247 Tell whether the garbage collector (GC) must keep derivations
1248 corresponding to live outputs.
1249
1250 When set to ``yes'', as is the case by default, the GC keeps
1251 derivations---i.e., @code{.drv} files---as long as at least one of their
1252 outputs is live. This allows users to keep track of the origins of
1253 items in their store. Setting it to ``no'' saves a bit of disk space.
1254
1255 Note that when both @code{--gc-keep-derivations} and
1256 @code{--gc-keep-outputs} are used, the effect is to keep all the build
1257 prerequisites (the sources, compiler, libraries, and other build-time
1258 tools) of live objects in the store, regardless of whether these
1259 prerequisites are live. This is convenient for developers since it
1260 saves rebuilds or downloads.
1261
1262 @item --impersonate-linux-2.6
1263 On Linux-based systems, impersonate Linux 2.6. This means that the
1264 kernel's @code{uname} system call will report 2.6 as the release number.
1265
1266 This might be helpful to build programs that (usually wrongfully) depend
1267 on the kernel version number.
1268
1269 @item --lose-logs
1270 Do not keep build logs. By default they are kept under
1271 @code{@var{localstatedir}/guix/log}.
1272
1273 @item --system=@var{system}
1274 Assume @var{system} as the current system type. By default it is the
1275 architecture/kernel pair found at configure time, such as
1276 @code{x86_64-linux}.
1277
1278 @item --listen=@var{endpoint}
1279 Listen for connections on @var{endpoint}. @var{endpoint} is interpreted
1280 as the file name of a Unix-domain socket if it starts with
1281 @code{/} (slash sign). Otherwise, @var{endpoint} is interpreted as a
1282 host name or host name and port to listen to. Here are a few examples:
1283
1284 @table @code
1285 @item --listen=/gnu/var/daemon
1286 Listen for connections on the @file{/gnu/var/daemon} Unix-domain socket,
1287 creating it if needed.
1288
1289 @item --listen=localhost
1290 @cindex daemon, remote access
1291 @cindex remote access to the daemon
1292 @cindex daemon, cluster setup
1293 @cindex clusters, daemon setup
1294 Listen for TCP connections on the network interface corresponding to
1295 @code{localhost}, on port 44146.
1296
1297 @item --listen=128.0.0.42:1234
1298 Listen for TCP connections on the network interface corresponding to
1299 @code{128.0.0.42}, on port 1234.
1300 @end table
1301
1302 This option can be repeated multiple times, in which case
1303 @command{guix-daemon} accepts connections on all the specified
1304 endpoints. Users can tell client commands what endpoint to connect to
1305 by setting the @code{GUIX_DAEMON_SOCKET} environment variable
1306 (@pxref{The Store, @code{GUIX_DAEMON_SOCKET}}).
1307
1308 @quotation Note
1309 The daemon protocol is @emph{unauthenticated and unencrypted}. Using
1310 @code{--listen=@var{host}} is suitable on local networks, such as
1311 clusters, where only trusted nodes may connect to the build daemon. In
1312 other cases where remote access to the daemon is needed, we recommend
1313 using Unix-domain sockets along with SSH.
1314 @end quotation
1315
1316 When @code{--listen} is omitted, @command{guix-daemon} listens for
1317 connections on the Unix-domain socket located at
1318 @file{@var{localstatedir}/daemon-socket/socket}.
1319 @end table
1320
1321
1322 @node Application Setup
1323 @section Application Setup
1324
1325 @cindex foreign distro
1326 When using Guix on top of GNU/Linux distribution other than GuixSD---a
1327 so-called @dfn{foreign distro}---a few additional steps are needed to
1328 get everything in place. Here are some of them.
1329
1330 @subsection Locales
1331
1332 @anchor{locales-and-locpath}
1333 @cindex locales, when not on GuixSD
1334 @vindex LOCPATH
1335 @vindex GUIX_LOCPATH
1336 Packages installed @i{via} Guix will not use the locale data of the
1337 host system. Instead, you must first install one of the locale packages
1338 available with Guix and then define the @code{GUIX_LOCPATH} environment
1339 variable:
1340
1341 @example
1342 $ guix package -i glibc-locales
1343 $ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale
1344 @end example
1345
1346 Note that the @code{glibc-locales} package contains data for all the
1347 locales supported by the GNU@tie{}libc and weighs in at around
1348 110@tie{}MiB. Alternatively, the @code{glibc-utf8-locales} is smaller but
1349 limited to a few UTF-8 locales.
1350
1351 The @code{GUIX_LOCPATH} variable plays a role similar to @code{LOCPATH}
1352 (@pxref{Locale Names, @code{LOCPATH},, libc, The GNU C Library Reference
1353 Manual}). There are two important differences though:
1354
1355 @enumerate
1356 @item
1357 @code{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc
1358 provided by foreign distros. Thus, using @code{GUIX_LOCPATH} allows you
1359 to make sure the programs of the foreign distro will not end up loading
1360 incompatible locale data.
1361
1362 @item
1363 libc suffixes each entry of @code{GUIX_LOCPATH} with @code{/X.Y}, where
1364 @code{X.Y} is the libc version---e.g., @code{2.22}. This means that,
1365 should your Guix profile contain a mixture of programs linked against
1366 different libc version, each libc version will only try to load locale
1367 data in the right format.
1368 @end enumerate
1369
1370 This is important because the locale data format used by different libc
1371 versions may be incompatible.
1372
1373 @subsection Name Service Switch
1374
1375 @cindex name service switch, glibc
1376 @cindex NSS (name service switch), glibc
1377 @cindex nscd (name service caching daemon)
1378 @cindex name service caching daemon (nscd)
1379 When using Guix on a foreign distro, we @emph{strongly recommend} that
1380 the system run the GNU C library's @dfn{name service cache daemon},
1381 @command{nscd}, which should be listening on the
1382 @file{/var/run/nscd/socket} socket. Failing to do that, applications
1383 installed with Guix may fail to look up host names or user accounts, or
1384 may even crash. The next paragraphs explain why.
1385
1386 @cindex @file{nsswitch.conf}
1387 The GNU C library implements a @dfn{name service switch} (NSS), which is
1388 an extensible mechanism for ``name lookups'' in general: host name
1389 resolution, user accounts, and more (@pxref{Name Service Switch,,, libc,
1390 The GNU C Library Reference Manual}).
1391
1392 @cindex Network information service (NIS)
1393 @cindex NIS (Network information service)
1394 Being extensible, the NSS supports @dfn{plugins}, which provide new name
1395 lookup implementations: for example, the @code{nss-mdns} plugin allow
1396 resolution of @code{.local} host names, the @code{nis} plugin allows
1397 user account lookup using the Network information service (NIS), and so
1398 on. These extra ``lookup services'' are configured system-wide in
1399 @file{/etc/nsswitch.conf}, and all the programs running on the system
1400 honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C
1401 Reference Manual}).
1402
1403 When they perform a name lookup---for instance by calling the
1404 @code{getaddrinfo} function in C---applications first try to connect to
1405 the nscd; on success, nscd performs name lookups on their behalf. If
1406 the nscd is not running, then they perform the name lookup by
1407 themselves, by loading the name lookup services into their own address
1408 space and running it. These name lookup services---the
1409 @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from
1410 the host system's C library, rather than from the C library the
1411 application is linked against (the C library coming from Guix).
1412
1413 And this is where the problem is: if your application is linked against
1414 Guix's C library (say, glibc 2.24) and tries to load NSS plugins from
1415 another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will
1416 likely crash or have its name lookups fail unexpectedly.
1417
1418 Running @command{nscd} on the system, among other advantages, eliminates
1419 this binary incompatibility problem because those @code{libnss_*.so}
1420 files are loaded in the @command{nscd} process, not in applications
1421 themselves.
1422
1423 @subsection X11 Fonts
1424
1425 @cindex fonts
1426 The majority of graphical applications use Fontconfig to locate and
1427 load fonts and perform X11-client-side rendering. The @code{fontconfig}
1428 package in Guix looks for fonts in @file{$HOME/.guix-profile}
1429 by default. Thus, to allow graphical applications installed with Guix
1430 to display fonts, you have to install fonts with Guix as well.
1431 Essential font packages include @code{gs-fonts}, @code{font-dejavu}, and
1432 @code{font-gnu-freefont-ttf}.
1433
1434 To display text written in Chinese languages, Japanese, or Korean in
1435 graphical applications, consider installing
1436 @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former
1437 has multiple outputs, one per language family (@pxref{Packages with
1438 Multiple Outputs}). For instance, the following command installs fonts
1439 for Chinese languages:
1440
1441 @example
1442 guix package -i font-adobe-source-han-sans:cn
1443 @end example
1444
1445 @cindex @code{xterm}
1446 Older programs such as @command{xterm} do not use Fontconfig and instead
1447 rely on server-side font rendering. Such programs require to specify a
1448 full name of a font using XLFD (X Logical Font Description), like this:
1449
1450 @example
1451 -*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1
1452 @end example
1453
1454 To be able to use such full names for the TrueType fonts installed in
1455 your Guix profile, you need to extend the font path of the X server:
1456
1457 @example
1458 xset +fp ~/.guix-profile/share/fonts/truetype
1459 @end example
1460
1461 @cindex @code{xlsfonts}
1462 After that, you can run @code{xlsfonts} (from @code{xlsfonts} package)
1463 to make sure your TrueType fonts are listed there.
1464
1465 @cindex @code{fc-cache}
1466 @cindex font cache
1467 After installing fonts you may have to refresh the font cache to use
1468 them in applications. The same applies when applications installed via
1469 Guix do not seem to find fonts. To force rebuilding of the font cache
1470 run @code{fc-cache -f}. The @code{fc-cache} command is provided by the
1471 @code{fontconfig} package.
1472
1473 @subsection X.509 Certificates
1474
1475 @cindex @code{nss-certs}
1476 The @code{nss-certs} package provides X.509 certificates, which allow
1477 programs to authenticate Web servers accessed over HTTPS.
1478
1479 When using Guix on a foreign distro, you can install this package and
1480 define the relevant environment variables so that packages know where to
1481 look for certificates. @xref{X.509 Certificates}, for detailed
1482 information.
1483
1484 @subsection Emacs Packages
1485
1486 @cindex @code{emacs}
1487 When you install Emacs packages with Guix, the elisp files may be placed
1488 either in @file{$HOME/.guix-profile/share/emacs/site-lisp/} or in
1489 sub-directories of
1490 @file{$HOME/.guix-profile/share/emacs/site-lisp/guix.d/}. The latter
1491 directory exists because potentially there may exist thousands of Emacs
1492 packages and storing all their files in a single directory may be not
1493 reliable (because of name conflicts). So we think using a separate
1494 directory for each package is a good idea. It is very similar to how
1495 the Emacs package system organizes the file structure (@pxref{Package
1496 Files,,, emacs, The GNU Emacs Manual}).
1497
1498 By default, Emacs (installed with Guix) ``knows'' where these packages
1499 are placed, so you do not need to perform any configuration. If, for
1500 some reason, you want to avoid auto-loading Emacs packages installed
1501 with Guix, you can do so by running Emacs with @code{--no-site-file}
1502 option (@pxref{Init File,,, emacs, The GNU Emacs Manual}).
1503
1504 @subsection The GCC toolchain
1505
1506 @cindex GCC
1507 @cindex ld-wrapper
1508
1509 Guix offers individual compiler packages such as @code{gcc} but if you
1510 are in need of a complete toolchain for compiling and linking source
1511 code what you really want is the @code{gcc-toolchain} package. This
1512 package provides a complete GCC toolchain for C/C++ development,
1513 including GCC itself, the GNU C Library (headers and binaries, plus
1514 debugging symbols in the @code{debug} output), Binutils, and a linker
1515 wrapper.
1516
1517 @cindex attempt to use impure library, error message
1518
1519 The wrapper's purpose is to inspect the @code{-L} and @code{-l} switches
1520 passed to the linker, add corresponding @code{-rpath} arguments, and
1521 invoke the actual linker with this new set of arguments. By default,
1522 the linker wrapper refuses to link to libraries outside the store to
1523 ensure ``purity''. This can be annoying when using the toolchain to
1524 link with local libraries. To allow references to libraries outside the
1525 store you need to define the environment variable
1526 @code{GUIX_LD_WRAPPER_ALLOW_IMPURITIES}.
1527
1528 @c TODO What else?
1529
1530 @c *********************************************************************
1531 @node Package Management
1532 @chapter Package Management
1533
1534 @cindex packages
1535 The purpose of GNU Guix is to allow users to easily install, upgrade, and
1536 remove software packages, without having to know about their build
1537 procedures or dependencies. Guix also goes beyond this obvious set of
1538 features.
1539
1540 This chapter describes the main features of Guix, as well as the
1541 package management tools it provides. Along with the command-line
1542 interface described below (@pxref{Invoking guix package, @code{guix
1543 package}}), you may also use Emacs Interface (@pxref{Top,,,
1544 emacs-guix, The Emacs-Guix Reference Manual}), after installing
1545 @code{emacs-guix} package (run @kbd{M-x guix-help} command to start
1546 with it):
1547
1548 @example
1549 guix package -i emacs-guix
1550 @end example
1551
1552 @menu
1553 * Features:: How Guix will make your life brighter.
1554 * Invoking guix package:: Package installation, removal, etc.
1555 * Substitutes:: Downloading pre-built binaries.
1556 * Packages with Multiple Outputs:: Single source package, multiple outputs.
1557 * Invoking guix gc:: Running the garbage collector.
1558 * Invoking guix pull:: Fetching the latest Guix and distribution.
1559 * Invoking guix pack:: Creating software bundles.
1560 * Invoking guix archive:: Exporting and importing store files.
1561 @end menu
1562
1563 @node Features
1564 @section Features
1565
1566 When using Guix, each package ends up in the @dfn{package store}, in its
1567 own directory---something that resembles
1568 @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string.
1569
1570 Instead of referring to these directories, users have their own
1571 @dfn{profile}, which points to the packages that they actually want to
1572 use. These profiles are stored within each user's home directory, at
1573 @code{$HOME/.guix-profile}.
1574
1575 For example, @code{alice} installs GCC 4.7.2. As a result,
1576 @file{/home/alice/.guix-profile/bin/gcc} points to
1577 @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine,
1578 @code{bob} had already installed GCC 4.8.0. The profile of @code{bob}
1579 simply continues to point to
1580 @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC
1581 coexist on the same system without any interference.
1582
1583 The @command{guix package} command is the central tool to manage
1584 packages (@pxref{Invoking guix package}). It operates on the per-user
1585 profiles, and can be used @emph{with normal user privileges}.
1586
1587 @cindex transactions
1588 The command provides the obvious install, remove, and upgrade
1589 operations. Each invocation is actually a @emph{transaction}: either
1590 the specified operation succeeds, or nothing happens. Thus, if the
1591 @command{guix package} process is terminated during the transaction,
1592 or if a power outage occurs during the transaction, then the user's
1593 profile remains in its previous state, and remains usable.
1594
1595 In addition, any package transaction may be @emph{rolled back}. So, if,
1596 for example, an upgrade installs a new version of a package that turns
1597 out to have a serious bug, users may roll back to the previous instance
1598 of their profile, which was known to work well. Similarly, the global
1599 system configuration on GuixSD is subject to
1600 transactional upgrades and roll-back
1601 (@pxref{Using the Configuration System}).
1602
1603 All packages in the package store may be @emph{garbage-collected}.
1604 Guix can determine which packages are still referenced by user
1605 profiles, and remove those that are provably no longer referenced
1606 (@pxref{Invoking guix gc}). Users may also explicitly remove old
1607 generations of their profile so that the packages they refer to can be
1608 collected.
1609
1610 @cindex reproducibility
1611 @cindex reproducible builds
1612 Finally, Guix takes a @dfn{purely functional} approach to package
1613 management, as described in the introduction (@pxref{Introduction}).
1614 Each @file{/gnu/store} package directory name contains a hash of all the
1615 inputs that were used to build that package---compiler, libraries, build
1616 scripts, etc. This direct correspondence allows users to make sure a
1617 given package installation matches the current state of their
1618 distribution. It also helps maximize @dfn{build reproducibility}:
1619 thanks to the isolated build environments that are used, a given build
1620 is likely to yield bit-identical files when performed on different
1621 machines (@pxref{Invoking guix-daemon, container}).
1622
1623 @cindex substitutes
1624 This foundation allows Guix to support @dfn{transparent binary/source
1625 deployment}. When a pre-built binary for a @file{/gnu/store} item is
1626 available from an external source---a @dfn{substitute}, Guix just
1627 downloads it and unpacks it;
1628 otherwise, it builds the package from source, locally
1629 (@pxref{Substitutes}). Because build results are usually bit-for-bit
1630 reproducible, users do not have to trust servers that provide
1631 substitutes: they can force a local build and @emph{challenge} providers
1632 (@pxref{Invoking guix challenge}).
1633
1634 Control over the build environment is a feature that is also useful for
1635 developers. The @command{guix environment} command allows developers of
1636 a package to quickly set up the right development environment for their
1637 package, without having to manually install the dependencies of the
1638 package into their profile (@pxref{Invoking guix environment}).
1639
1640 @node Invoking guix package
1641 @section Invoking @command{guix package}
1642
1643 @cindex installing packages
1644 @cindex removing packages
1645 @cindex package installation
1646 @cindex package removal
1647 The @command{guix package} command is the tool that allows users to
1648 install, upgrade, and remove packages, as well as rolling back to
1649 previous configurations. It operates only on the user's own profile,
1650 and works with normal user privileges (@pxref{Features}). Its syntax
1651 is:
1652
1653 @example
1654 guix package @var{options}
1655 @end example
1656 @cindex transactions
1657 Primarily, @var{options} specifies the operations to be performed during
1658 the transaction. Upon completion, a new profile is created, but
1659 previous @dfn{generations} of the profile remain available, should the user
1660 want to roll back.
1661
1662 For example, to remove @code{lua} and install @code{guile} and
1663 @code{guile-cairo} in a single transaction:
1664
1665 @example
1666 guix package -r lua -i guile guile-cairo
1667 @end example
1668
1669 @command{guix package} also supports a @dfn{declarative approach}
1670 whereby the user specifies the exact set of packages to be available and
1671 passes it @i{via} the @option{--manifest} option
1672 (@pxref{profile-manifest, @option{--manifest}}).
1673
1674 @cindex profile
1675 For each user, a symlink to the user's default profile is automatically
1676 created in @file{$HOME/.guix-profile}. This symlink always points to the
1677 current generation of the user's default profile. Thus, users can add
1678 @file{$HOME/.guix-profile/bin} to their @code{PATH} environment
1679 variable, and so on.
1680 @cindex search paths
1681 If you are not using the Guix System Distribution, consider adding the
1682 following lines to your @file{~/.bash_profile} (@pxref{Bash Startup
1683 Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned
1684 shells get all the right environment variable definitions:
1685
1686 @example
1687 GUIX_PROFILE="$HOME/.guix-profile" \
1688 source "$HOME/.guix-profile/etc/profile"
1689 @end example
1690
1691 In a multi-user setup, user profiles are stored in a place registered as
1692 a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points
1693 to (@pxref{Invoking guix gc}). That directory is normally
1694 @code{@var{localstatedir}/profiles/per-user/@var{user}}, where
1695 @var{localstatedir} is the value passed to @code{configure} as
1696 @code{--localstatedir}, and @var{user} is the user name. The
1697 @file{per-user} directory is created when @command{guix-daemon} is
1698 started, and the @var{user} sub-directory is created by @command{guix
1699 package}.
1700
1701 The @var{options} can be among the following:
1702
1703 @table @code
1704
1705 @item --install=@var{package} @dots{}
1706 @itemx -i @var{package} @dots{}
1707 Install the specified @var{package}s.
1708
1709 Each @var{package} may specify either a simple package name, such as
1710 @code{guile}, or a package name followed by an at-sign and version number,
1711 such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter
1712 case, the newest version prefixed by @code{1.8} is selected.)
1713
1714 If no version number is specified, the
1715 newest available version will be selected. In addition, @var{package}
1716 may contain a colon, followed by the name of one of the outputs of the
1717 package, as in @code{gcc:doc} or @code{binutils@@2.22:lib}
1718 (@pxref{Packages with Multiple Outputs}). Packages with a corresponding
1719 name (and optionally version) are searched for among the GNU
1720 distribution modules (@pxref{Package Modules}).
1721
1722 @cindex propagated inputs
1723 Sometimes packages have @dfn{propagated inputs}: these are dependencies
1724 that automatically get installed along with the required package
1725 (@pxref{package-propagated-inputs, @code{propagated-inputs} in
1726 @code{package} objects}, for information about propagated inputs in
1727 package definitions).
1728
1729 @anchor{package-cmd-propagated-inputs}
1730 An example is the GNU MPC library: its C header files refer to those of
1731 the GNU MPFR library, which in turn refer to those of the GMP library.
1732 Thus, when installing MPC, the MPFR and GMP libraries also get installed
1733 in the profile; removing MPC also removes MPFR and GMP---unless they had
1734 also been explicitly installed by the user.
1735
1736 Besides, packages sometimes rely on the definition of environment
1737 variables for their search paths (see explanation of
1738 @code{--search-paths} below). Any missing or possibly incorrect
1739 environment variable definitions are reported here.
1740
1741 @item --install-from-expression=@var{exp}
1742 @itemx -e @var{exp}
1743 Install the package @var{exp} evaluates to.
1744
1745 @var{exp} must be a Scheme expression that evaluates to a
1746 @code{<package>} object. This option is notably useful to disambiguate
1747 between same-named variants of a package, with expressions such as
1748 @code{(@@ (gnu packages base) guile-final)}.
1749
1750 Note that this option installs the first output of the specified
1751 package, which may be insufficient when needing a specific output of a
1752 multiple-output package.
1753
1754 @item --install-from-file=@var{file}
1755 @itemx -f @var{file}
1756 Install the package that the code within @var{file} evaluates to.
1757
1758 As an example, @var{file} might contain a definition like this
1759 (@pxref{Defining Packages}):
1760
1761 @example
1762 @verbatiminclude package-hello.scm
1763 @end example
1764
1765 Developers may find it useful to include such a @file{guix.scm} file
1766 in the root of their project source tree that can be used to test
1767 development snapshots and create reproducible development environments
1768 (@pxref{Invoking guix environment}).
1769
1770 @item --remove=@var{package} @dots{}
1771 @itemx -r @var{package} @dots{}
1772 Remove the specified @var{package}s.
1773
1774 As for @code{--install}, each @var{package} may specify a version number
1775 and/or output name in addition to the package name. For instance,
1776 @code{-r glibc:debug} would remove the @code{debug} output of
1777 @code{glibc}.
1778
1779 @item --upgrade[=@var{regexp} @dots{}]
1780 @itemx -u [@var{regexp} @dots{}]
1781 @cindex upgrading packages
1782 Upgrade all the installed packages. If one or more @var{regexp}s are
1783 specified, upgrade only installed packages whose name matches a
1784 @var{regexp}. Also see the @code{--do-not-upgrade} option below.
1785
1786 Note that this upgrades package to the latest version of packages found
1787 in the distribution currently installed. To update your distribution,
1788 you should regularly run @command{guix pull} (@pxref{Invoking guix
1789 pull}).
1790
1791 @item --do-not-upgrade[=@var{regexp} @dots{}]
1792 When used together with the @code{--upgrade} option, do @emph{not}
1793 upgrade any packages whose name matches a @var{regexp}. For example, to
1794 upgrade all packages in the current profile except those containing the
1795 substring ``emacs'':
1796
1797 @example
1798 $ guix package --upgrade . --do-not-upgrade emacs
1799 @end example
1800
1801 @item @anchor{profile-manifest}--manifest=@var{file}
1802 @itemx -m @var{file}
1803 @cindex profile declaration
1804 @cindex profile manifest
1805 Create a new generation of the profile from the manifest object
1806 returned by the Scheme code in @var{file}.
1807
1808 This allows you to @emph{declare} the profile's contents rather than
1809 constructing it through a sequence of @code{--install} and similar
1810 commands. The advantage is that @var{file} can be put under version
1811 control, copied to different machines to reproduce the same profile, and
1812 so on.
1813
1814 @c FIXME: Add reference to (guix profile) documentation when available.
1815 @var{file} must return a @dfn{manifest} object, which is roughly a list
1816 of packages:
1817
1818 @findex packages->manifest
1819 @example
1820 (use-package-modules guile emacs)
1821
1822 (packages->manifest
1823 (list emacs
1824 guile-2.0
1825 ;; Use a specific package output.
1826 (list guile-2.0 "debug")))
1827 @end example
1828
1829 @findex specifications->manifest
1830 In this example we have to know which modules define the @code{emacs}
1831 and @code{guile-2.0} variables to provide the right
1832 @code{use-package-modules} line, which can be cumbersome. We can
1833 instead provide regular package specifications and let
1834 @code{specifications->manifest} look up the corresponding package
1835 objects, like this:
1836
1837 @example
1838 (specifications->manifest
1839 '("emacs" "guile@@2.2" "guile@@2.2:debug"))
1840 @end example
1841
1842 @item --roll-back
1843 @cindex rolling back
1844 @cindex undoing transactions
1845 @cindex transactions, undoing
1846 Roll back to the previous @dfn{generation} of the profile---i.e., undo
1847 the last transaction.
1848
1849 When combined with options such as @code{--install}, roll back occurs
1850 before any other actions.
1851
1852 When rolling back from the first generation that actually contains
1853 installed packages, the profile is made to point to the @dfn{zeroth
1854 generation}, which contains no files apart from its own metadata.
1855
1856 After having rolled back, installing, removing, or upgrading packages
1857 overwrites previous future generations. Thus, the history of the
1858 generations in a profile is always linear.
1859
1860 @item --switch-generation=@var{pattern}
1861 @itemx -S @var{pattern}
1862 @cindex generations
1863 Switch to a particular generation defined by @var{pattern}.
1864
1865 @var{pattern} may be either a generation number or a number prefixed
1866 with ``+'' or ``-''. The latter means: move forward/backward by a
1867 specified number of generations. For example, if you want to return to
1868 the latest generation after @code{--roll-back}, use
1869 @code{--switch-generation=+1}.
1870
1871 The difference between @code{--roll-back} and
1872 @code{--switch-generation=-1} is that @code{--switch-generation} will
1873 not make a zeroth generation, so if a specified generation does not
1874 exist, the current generation will not be changed.
1875
1876 @item --search-paths[=@var{kind}]
1877 @cindex search paths
1878 Report environment variable definitions, in Bash syntax, that may be
1879 needed in order to use the set of installed packages. These environment
1880 variables are used to specify @dfn{search paths} for files used by some
1881 of the installed packages.
1882
1883 For example, GCC needs the @code{CPATH} and @code{LIBRARY_PATH}
1884 environment variables to be defined so it can look for headers and
1885 libraries in the user's profile (@pxref{Environment Variables,,, gcc,
1886 Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C
1887 library are installed in the profile, then @code{--search-paths} will
1888 suggest setting these variables to @code{@var{profile}/include} and
1889 @code{@var{profile}/lib}, respectively.
1890
1891 The typical use case is to define these environment variables in the
1892 shell:
1893
1894 @example
1895 $ eval `guix package --search-paths`
1896 @end example
1897
1898 @var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix},
1899 meaning that the returned environment variable definitions will either
1900 be exact settings, or prefixes or suffixes of the current value of these
1901 variables. When omitted, @var{kind} defaults to @code{exact}.
1902
1903 This option can also be used to compute the @emph{combined} search paths
1904 of several profiles. Consider this example:
1905
1906 @example
1907 $ guix package -p foo -i guile
1908 $ guix package -p bar -i guile-json
1909 $ guix package -p foo -p bar --search-paths
1910 @end example
1911
1912 The last command above reports about the @code{GUILE_LOAD_PATH}
1913 variable, even though, taken individually, neither @file{foo} nor
1914 @file{bar} would lead to that recommendation.
1915
1916
1917 @item --profile=@var{profile}
1918 @itemx -p @var{profile}
1919 Use @var{profile} instead of the user's default profile.
1920
1921 @item --verbose
1922 Produce verbose output. In particular, emit the build log of the
1923 environment on the standard error port.
1924
1925 @item --bootstrap
1926 Use the bootstrap Guile to build the profile. This option is only
1927 useful to distribution developers.
1928
1929 @end table
1930
1931 In addition to these actions, @command{guix package} supports the
1932 following options to query the current state of a profile, or the
1933 availability of packages:
1934
1935 @table @option
1936
1937 @item --search=@var{regexp}
1938 @itemx -s @var{regexp}
1939 @cindex searching for packages
1940 List the available packages whose name, synopsis, or description matches
1941 @var{regexp}, sorted by relevance. Print all the metadata of matching packages in
1942 @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils,
1943 GNU recutils manual}).
1944
1945 This allows specific fields to be extracted using the @command{recsel}
1946 command, for instance:
1947
1948 @example
1949 $ guix package -s malloc | recsel -p name,version,relevance
1950 name: jemalloc
1951 version: 4.5.0
1952 relevance: 6
1953
1954 name: glibc
1955 version: 2.25
1956 relevance: 1
1957
1958 name: libgc
1959 version: 7.6.0
1960 relevance: 1
1961 @end example
1962
1963 Similarly, to show the name of all the packages available under the
1964 terms of the GNU@tie{}LGPL version 3:
1965
1966 @example
1967 $ guix package -s "" | recsel -p name -e 'license ~ "LGPL 3"'
1968 name: elfutils
1969
1970 name: gmp
1971 @dots{}
1972 @end example
1973
1974 It is also possible to refine search results using several @code{-s}
1975 flags. For example, the following command returns a list of board
1976 games:
1977
1978 @example
1979 $ guix package -s '\<board\>' -s game | recsel -p name
1980 name: gnubg
1981 @dots{}
1982 @end example
1983
1984 If we were to omit @code{-s game}, we would also get software packages
1985 that deal with printed circuit boards; removing the angle brackets
1986 around @code{board} would further add packages that have to do with
1987 keyboards.
1988
1989 And now for a more elaborate example. The following command searches
1990 for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby
1991 libraries, and prints the name and synopsis of the matching packages:
1992
1993 @example
1994 $ guix package -s crypto -s library | \
1995 recsel -e '! (name ~ "^(ghc|perl|python|ruby)")' -p name,synopsis
1996 @end example
1997
1998 @noindent
1999 @xref{Selection Expressions,,, recutils, GNU recutils manual}, for more
2000 information on @dfn{selection expressions} for @code{recsel -e}.
2001
2002 @item --show=@var{package}
2003 Show details about @var{package}, taken from the list of available packages, in
2004 @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU
2005 recutils manual}).
2006
2007 @example
2008 $ guix package --show=python | recsel -p name,version
2009 name: python
2010 version: 2.7.6
2011
2012 name: python
2013 version: 3.3.5
2014 @end example
2015
2016 You may also specify the full name of a package to only get details about a
2017 specific version of it:
2018 @example
2019 $ guix package --show=python@@3.4 | recsel -p name,version
2020 name: python
2021 version: 3.4.3
2022 @end example
2023
2024
2025
2026 @item --list-installed[=@var{regexp}]
2027 @itemx -I [@var{regexp}]
2028 List the currently installed packages in the specified profile, with the
2029 most recently installed packages shown last. When @var{regexp} is
2030 specified, list only installed packages whose name matches @var{regexp}.
2031
2032 For each installed package, print the following items, separated by
2033 tabs: the package name, its version string, the part of the package that
2034 is installed (for instance, @code{out} for the default output,
2035 @code{include} for its headers, etc.), and the path of this package in
2036 the store.
2037
2038 @item --list-available[=@var{regexp}]
2039 @itemx -A [@var{regexp}]
2040 List packages currently available in the distribution for this system
2041 (@pxref{GNU Distribution}). When @var{regexp} is specified, list only
2042 installed packages whose name matches @var{regexp}.
2043
2044 For each package, print the following items separated by tabs: its name,
2045 its version string, the parts of the package (@pxref{Packages with
2046 Multiple Outputs}), and the source location of its definition.
2047
2048 @item --list-generations[=@var{pattern}]
2049 @itemx -l [@var{pattern}]
2050 @cindex generations
2051 Return a list of generations along with their creation dates; for each
2052 generation, show the installed packages, with the most recently
2053 installed packages shown last. Note that the zeroth generation is never
2054 shown.
2055
2056 For each installed package, print the following items, separated by
2057 tabs: the name of a package, its version string, the part of the package
2058 that is installed (@pxref{Packages with Multiple Outputs}), and the
2059 location of this package in the store.
2060
2061 When @var{pattern} is used, the command returns only matching
2062 generations. Valid patterns include:
2063
2064 @itemize
2065 @item @emph{Integers and comma-separated integers}. Both patterns denote
2066 generation numbers. For instance, @code{--list-generations=1} returns
2067 the first one.
2068
2069 And @code{--list-generations=1,8,2} outputs three generations in the
2070 specified order. Neither spaces nor trailing commas are allowed.
2071
2072 @item @emph{Ranges}. @code{--list-generations=2..9} prints the
2073 specified generations and everything in between. Note that the start of
2074 a range must be smaller than its end.
2075
2076 It is also possible to omit the endpoint. For example,
2077 @code{--list-generations=2..}, returns all generations starting from the
2078 second one.
2079
2080 @item @emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks,
2081 or months by passing an integer along with the first letter of the
2082 duration. For example, @code{--list-generations=20d} lists generations
2083 that are up to 20 days old.
2084 @end itemize
2085
2086 @item --delete-generations[=@var{pattern}]
2087 @itemx -d [@var{pattern}]
2088 When @var{pattern} is omitted, delete all generations except the current
2089 one.
2090
2091 This command accepts the same patterns as @option{--list-generations}.
2092 When @var{pattern} is specified, delete the matching generations. When
2093 @var{pattern} specifies a duration, generations @emph{older} than the
2094 specified duration match. For instance, @code{--delete-generations=1m}
2095 deletes generations that are more than one month old.
2096
2097 If the current generation matches, it is @emph{not} deleted. Also, the
2098 zeroth generation is never deleted.
2099
2100 Note that deleting generations prevents rolling back to them.
2101 Consequently, this command must be used with care.
2102
2103 @end table
2104
2105 Finally, since @command{guix package} may actually start build
2106 processes, it supports all the common build options (@pxref{Common Build
2107 Options}). It also supports package transformation options, such as
2108 @option{--with-source} (@pxref{Package Transformation Options}).
2109 However, note that package transformations are lost when upgrading; to
2110 preserve transformations across upgrades, you should define your own
2111 package variant in a Guile module and add it to @code{GUIX_PACKAGE_PATH}
2112 (@pxref{Defining Packages}).
2113
2114
2115 @node Substitutes
2116 @section Substitutes
2117
2118 @cindex substitutes
2119 @cindex pre-built binaries
2120 Guix supports transparent source/binary deployment, which means that it
2121 can either build things locally, or download pre-built items from a
2122 server. We call these pre-built items @dfn{substitutes}---they are
2123 substitutes for local build results. In many cases, downloading a
2124 substitute is much faster than building things locally.
2125
2126 Substitutes can be anything resulting from a derivation build
2127 (@pxref{Derivations}). Of course, in the common case, they are
2128 pre-built package binaries, but source tarballs, for instance, which
2129 also result from derivation builds, can be available as substitutes.
2130
2131 The @code{hydra.gnu.org} server is a front-end to a build farm that
2132 builds packages from the GNU distribution continuously for some
2133 architectures, and makes them available as substitutes. This is the
2134 default source of substitutes; it can be overridden by passing the
2135 @option{--substitute-urls} option either to @command{guix-daemon}
2136 (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}})
2137 or to client tools such as @command{guix package}
2138 (@pxref{client-substitute-urls,, client @option{--substitute-urls}
2139 option}).
2140
2141 Substitute URLs can be either HTTP or HTTPS.
2142 HTTPS is recommended because communications are encrypted; conversely,
2143 using HTTP makes all communications visible to an eavesdropper, who
2144 could use the information gathered to determine, for instance, whether
2145 your system has unpatched security vulnerabilities.
2146
2147 @cindex security
2148 @cindex digital signatures
2149 @cindex substitutes, authorization thereof
2150 @cindex access control list (ACL), for substitutes
2151 @cindex ACL (access control list), for substitutes
2152 To allow Guix to download substitutes from @code{hydra.gnu.org} or a
2153 mirror thereof, you
2154 must add its public key to the access control list (ACL) of archive
2155 imports, using the @command{guix archive} command (@pxref{Invoking guix
2156 archive}). Doing so implies that you trust @code{hydra.gnu.org} to not
2157 be compromised and to serve genuine substitutes.
2158
2159 This public key is installed along with Guix, in
2160 @code{@var{prefix}/share/guix/hydra.gnu.org.pub}, where @var{prefix} is
2161 the installation prefix of Guix. If you installed Guix from source,
2162 make sure you checked the GPG signature of
2163 @file{guix-@value{VERSION}.tar.gz}, which contains this public key file.
2164 Then, you can run something like this:
2165
2166 @example
2167 # guix archive --authorize < hydra.gnu.org.pub
2168 @end example
2169
2170 Once this is in place, the output of a command like @code{guix build}
2171 should change from something like:
2172
2173 @example
2174 $ guix build emacs --dry-run
2175 The following derivations would be built:
2176 /gnu/store/yr7bnx8xwcayd6j95r2clmkdl1qh688w-emacs-24.3.drv
2177 /gnu/store/x8qsh1hlhgjx6cwsjyvybnfv2i37z23w-dbus-1.6.4.tar.gz.drv
2178 /gnu/store/1ixwp12fl950d15h2cj11c73733jay0z-alsa-lib-1.0.27.1.tar.bz2.drv
2179 /gnu/store/nlma1pw0p603fpfiqy7kn4zm105r5dmw-util-linux-2.21.drv
2180 @dots{}
2181 @end example
2182
2183 @noindent
2184 to something like:
2185
2186 @example
2187 $ guix build emacs --dry-run
2188 The following files would be downloaded:
2189 /gnu/store/pk3n22lbq6ydamyymqkkz7i69wiwjiwi-emacs-24.3
2190 /gnu/store/2ygn4ncnhrpr61rssa6z0d9x22si0va3-libjpeg-8d
2191 /gnu/store/71yz6lgx4dazma9dwn2mcjxaah9w77jq-cairo-1.12.16
2192 /gnu/store/7zdhgp0n1518lvfn8mb96sxqfmvqrl7v-libxrender-0.9.7
2193 @dots{}
2194 @end example
2195
2196 @noindent
2197 This indicates that substitutes from @code{hydra.gnu.org} are usable and
2198 will be downloaded, when possible, for future builds.
2199
2200 Guix detects and raises an error when attempting to use a substitute
2201 that has been tampered with. Likewise, it ignores substitutes that are
2202 not signed, or that are not signed by one of the keys listed in the ACL.
2203
2204 There is one exception though: if an unauthorized server provides
2205 substitutes that are @emph{bit-for-bit identical} to those provided by
2206 an authorized server, then the unauthorized server becomes eligible for
2207 downloads. For example, assume we have chosen two substitute servers
2208 with this option:
2209
2210 @example
2211 --substitute-urls="https://a.example.org https://b.example.org"
2212 @end example
2213
2214 @noindent
2215 @cindex reproducible builds
2216 If the ACL contains only the key for @code{b.example.org}, and if
2217 @code{a.example.org} happens to serve the @emph{exact same} substitutes,
2218 then Guix will download substitutes from @code{a.example.org} because it
2219 comes first in the list and can be considered a mirror of
2220 @code{b.example.org}. In practice, independent build machines usually
2221 produce the same binaries, thanks to bit-reproducible builds (see
2222 below).
2223
2224 @vindex http_proxy
2225 Substitutes are downloaded over HTTP or HTTPS.
2226 The @code{http_proxy} environment
2227 variable can be set in the environment of @command{guix-daemon} and is
2228 honored for downloads of substitutes. Note that the value of
2229 @code{http_proxy} in the environment where @command{guix build},
2230 @command{guix package}, and other client commands are run has
2231 @emph{absolutely no effect}.
2232
2233 When using HTTPS, the server's X.509 certificate is @emph{not} validated
2234 (in other words, the server is not authenticated), contrary to what
2235 HTTPS clients such as Web browsers usually do. This is because Guix
2236 authenticates substitute information itself, as explained above, which
2237 is what we care about (whereas X.509 certificates are about
2238 authenticating bindings between domain names and public keys.)
2239
2240 You can get statistics on the substitutes provided by a server using the
2241 @command{guix weather} command (@pxref{Invoking guix weather}).
2242
2243 The substitute mechanism can be disabled globally by running
2244 @code{guix-daemon} with @code{--no-substitutes} (@pxref{Invoking
2245 guix-daemon}). It can also be disabled temporarily by passing the
2246 @code{--no-substitutes} option to @command{guix package}, @command{guix
2247 build}, and other command-line tools.
2248
2249
2250 @unnumberedsubsec On Trusting Binaries
2251
2252 Today, each individual's control over their own computing is at the
2253 mercy of institutions, corporations, and groups with enough power and
2254 determination to subvert the computing infrastructure and exploit its
2255 weaknesses. While using @code{hydra.gnu.org} substitutes can be
2256 convenient, we encourage users to also build on their own, or even run
2257 their own build farm, such that @code{hydra.gnu.org} is less of an
2258 interesting target. One way to help is by publishing the software you
2259 build using @command{guix publish} so that others have one more choice
2260 of server to download substitutes from (@pxref{Invoking guix publish}).
2261
2262 Guix has the foundations to maximize build reproducibility
2263 (@pxref{Features}). In most cases, independent builds of a given
2264 package or derivation should yield bit-identical results. Thus, through
2265 a diverse set of independent package builds, we can strengthen the
2266 integrity of our systems. The @command{guix challenge} command aims to
2267 help users assess substitute servers, and to assist developers in
2268 finding out about non-deterministic package builds (@pxref{Invoking guix
2269 challenge}). Similarly, the @option{--check} option of @command{guix
2270 build} allows users to check whether previously-installed substitutes
2271 are genuine by rebuilding them locally (@pxref{build-check,
2272 @command{guix build --check}}).
2273
2274 In the future, we want Guix to have support to publish and retrieve
2275 binaries to/from other users, in a peer-to-peer fashion. If you would
2276 like to discuss this project, join us on @email{guix-devel@@gnu.org}.
2277
2278
2279 @node Packages with Multiple Outputs
2280 @section Packages with Multiple Outputs
2281
2282 @cindex multiple-output packages
2283 @cindex package outputs
2284 @cindex outputs
2285
2286 Often, packages defined in Guix have a single @dfn{output}---i.e., the
2287 source package leads to exactly one directory in the store. When running
2288 @command{guix package -i glibc}, one installs the default output of the
2289 GNU libc package; the default output is called @code{out}, but its name
2290 can be omitted as shown in this command. In this particular case, the
2291 default output of @code{glibc} contains all the C header files, shared
2292 libraries, static libraries, Info documentation, and other supporting
2293 files.
2294
2295 Sometimes it is more appropriate to separate the various types of files
2296 produced from a single source package into separate outputs. For
2297 instance, the GLib C library (used by GTK+ and related packages)
2298 installs more than 20 MiB of reference documentation as HTML pages.
2299 To save space for users who do not need it, the documentation goes to a
2300 separate output, called @code{doc}. To install the main GLib output,
2301 which contains everything but the documentation, one would run:
2302
2303 @example
2304 guix package -i glib
2305 @end example
2306
2307 @cindex documentation
2308 The command to install its documentation is:
2309
2310 @example
2311 guix package -i glib:doc
2312 @end example
2313
2314 Some packages install programs with different ``dependency footprints''.
2315 For instance, the WordNet package installs both command-line tools and
2316 graphical user interfaces (GUIs). The former depend solely on the C
2317 library, whereas the latter depend on Tcl/Tk and the underlying X
2318 libraries. In this case, we leave the command-line tools in the default
2319 output, whereas the GUIs are in a separate output. This allows users
2320 who do not need the GUIs to save space. The @command{guix size} command
2321 can help find out about such situations (@pxref{Invoking guix size}).
2322 @command{guix graph} can also be helpful (@pxref{Invoking guix graph}).
2323
2324 There are several such multiple-output packages in the GNU distribution.
2325 Other conventional output names include @code{lib} for libraries and
2326 possibly header files, @code{bin} for stand-alone programs, and
2327 @code{debug} for debugging information (@pxref{Installing Debugging
2328 Files}). The outputs of a packages are listed in the third column of
2329 the output of @command{guix package --list-available} (@pxref{Invoking
2330 guix package}).
2331
2332
2333 @node Invoking guix gc
2334 @section Invoking @command{guix gc}
2335
2336 @cindex garbage collector
2337 @cindex disk space
2338 Packages that are installed, but not used, may be @dfn{garbage-collected}.
2339 The @command{guix gc} command allows users to explicitly run the garbage
2340 collector to reclaim space from the @file{/gnu/store} directory. It is
2341 the @emph{only} way to remove files from @file{/gnu/store}---removing
2342 files or directories manually may break it beyond repair!
2343
2344 @cindex GC roots
2345 @cindex garbage collector roots
2346 The garbage collector has a set of known @dfn{roots}: any file under
2347 @file{/gnu/store} reachable from a root is considered @dfn{live} and
2348 cannot be deleted; any other file is considered @dfn{dead} and may be
2349 deleted. The set of garbage collector roots (``GC roots'' for short)
2350 includes default user profiles; by default, the symlinks under
2351 @file{/var/guix/gcroots} represent these GC roots. New GC roots can be
2352 added with @command{guix build --root}, for example (@pxref{Invoking
2353 guix build}).
2354
2355 Prior to running @code{guix gc --collect-garbage} to make space, it is
2356 often useful to remove old generations from user profiles; that way, old
2357 package builds referenced by those generations can be reclaimed. This
2358 is achieved by running @code{guix package --delete-generations}
2359 (@pxref{Invoking guix package}).
2360
2361 Our recommendation is to run a garbage collection periodically, or when
2362 you are short on disk space. For instance, to guarantee that at least
2363 5@tie{}GB are available on your disk, simply run:
2364
2365 @example
2366 guix gc -F 5G
2367 @end example
2368
2369 It is perfectly safe to run as a non-interactive periodic job
2370 (@pxref{Scheduled Job Execution}, for how to set up such a job on
2371 GuixSD). Running @command{guix gc} with no arguments will collect as
2372 much garbage as it can, but that is often inconvenient: you may find
2373 yourself having to rebuild or re-download software that is ``dead'' from
2374 the GC viewpoint but that is necessary to build other pieces of
2375 software---e.g., the compiler tool chain.
2376
2377 The @command{guix gc} command has three modes of operation: it can be
2378 used to garbage-collect any dead files (the default), to delete specific
2379 files (the @code{--delete} option), to print garbage-collector
2380 information, or for more advanced queries. The garbage collection
2381 options are as follows:
2382
2383 @table @code
2384 @item --collect-garbage[=@var{min}]
2385 @itemx -C [@var{min}]
2386 Collect garbage---i.e., unreachable @file{/gnu/store} files and
2387 sub-directories. This is the default operation when no option is
2388 specified.
2389
2390 When @var{min} is given, stop once @var{min} bytes have been collected.
2391 @var{min} may be a number of bytes, or it may include a unit as a
2392 suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes
2393 (@pxref{Block size, size specifications,, coreutils, GNU Coreutils}).
2394
2395 When @var{min} is omitted, collect all the garbage.
2396
2397 @item --free-space=@var{free}
2398 @itemx -F @var{free}
2399 Collect garbage until @var{free} space is available under
2400 @file{/gnu/store}, if possible; @var{free} denotes storage space, such
2401 as @code{500MiB}, as described above.
2402
2403 When @var{free} or more is already available in @file{/gnu/store}, do
2404 nothing and exit immediately.
2405
2406 @item --delete
2407 @itemx -d
2408 Attempt to delete all the store files and directories specified as
2409 arguments. This fails if some of the files are not in the store, or if
2410 they are still live.
2411
2412 @item --list-failures
2413 List store items corresponding to cached build failures.
2414
2415 This prints nothing unless the daemon was started with
2416 @option{--cache-failures} (@pxref{Invoking guix-daemon,
2417 @option{--cache-failures}}).
2418
2419 @item --clear-failures
2420 Remove the specified store items from the failed-build cache.
2421
2422 Again, this option only makes sense when the daemon is started with
2423 @option{--cache-failures}. Otherwise, it does nothing.
2424
2425 @item --list-dead
2426 Show the list of dead files and directories still present in the
2427 store---i.e., files and directories no longer reachable from any root.
2428
2429 @item --list-live
2430 Show the list of live store files and directories.
2431
2432 @end table
2433
2434 In addition, the references among existing store files can be queried:
2435
2436 @table @code
2437
2438 @item --references
2439 @itemx --referrers
2440 @cindex package dependencies
2441 List the references (respectively, the referrers) of store files given
2442 as arguments.
2443
2444 @item --requisites
2445 @itemx -R
2446 @cindex closure
2447 List the requisites of the store files passed as arguments. Requisites
2448 include the store files themselves, their references, and the references
2449 of these, recursively. In other words, the returned list is the
2450 @dfn{transitive closure} of the store files.
2451
2452 @xref{Invoking guix size}, for a tool to profile the size of the closure
2453 of an element. @xref{Invoking guix graph}, for a tool to visualize
2454 the graph of references.
2455
2456 @end table
2457
2458 Lastly, the following options allow you to check the integrity of the
2459 store and to control disk usage.
2460
2461 @table @option
2462
2463 @item --verify[=@var{options}]
2464 @cindex integrity, of the store
2465 @cindex integrity checking
2466 Verify the integrity of the store.
2467
2468 By default, make sure that all the store items marked as valid in the
2469 database of the daemon actually exist in @file{/gnu/store}.
2470
2471 When provided, @var{options} must be a comma-separated list containing one
2472 or more of @code{contents} and @code{repair}.
2473
2474 When passing @option{--verify=contents}, the daemon computes the
2475 content hash of each store item and compares it against its hash in the
2476 database. Hash mismatches are reported as data corruptions. Because it
2477 traverses @emph{all the files in the store}, this command can take a
2478 long time, especially on systems with a slow disk drive.
2479
2480 @cindex repairing the store
2481 @cindex corruption, recovering from
2482 Using @option{--verify=repair} or @option{--verify=contents,repair}
2483 causes the daemon to try to repair corrupt store items by fetching
2484 substitutes for them (@pxref{Substitutes}). Because repairing is not
2485 atomic, and thus potentially dangerous, it is available only to the
2486 system administrator. A lightweight alternative, when you know exactly
2487 which items in the store are corrupt, is @command{guix build --repair}
2488 (@pxref{Invoking guix build}).
2489
2490 @item --optimize
2491 @cindex deduplication
2492 Optimize the store by hard-linking identical files---this is
2493 @dfn{deduplication}.
2494
2495 The daemon performs deduplication after each successful build or archive
2496 import, unless it was started with @code{--disable-deduplication}
2497 (@pxref{Invoking guix-daemon, @code{--disable-deduplication}}). Thus,
2498 this option is primarily useful when the daemon was running with
2499 @code{--disable-deduplication}.
2500
2501 @end table
2502
2503 @node Invoking guix pull
2504 @section Invoking @command{guix pull}
2505
2506 @cindex upgrading Guix
2507 @cindex updating Guix
2508 @cindex @command{guix pull}
2509 @cindex pull
2510 Packages are installed or upgraded to the latest version available in
2511 the distribution currently available on your local machine. To update
2512 that distribution, along with the Guix tools, you must run @command{guix
2513 pull}: the command downloads the latest Guix source code and package
2514 descriptions, and deploys it. Source code is downloaded from a
2515 @uref{https://git-scm.com, Git} repository.
2516
2517 On completion, @command{guix package} will use packages and package
2518 versions from this just-retrieved copy of Guix. Not only that, but all
2519 the Guix commands and Scheme modules will also be taken from that latest
2520 version. New @command{guix} sub-commands added by the update also
2521 become available.
2522
2523 Any user can update their Guix copy using @command{guix pull}, and the
2524 effect is limited to the user who run @command{guix pull}. For
2525 instance, when user @code{root} runs @command{guix pull}, this has no
2526 effect on the version of Guix that user @code{alice} sees, and vice
2527 versa@footnote{Under the hood, @command{guix pull} updates the
2528 @file{~/.config/guix/latest} symbolic link to point to the latest Guix,
2529 and the @command{guix} command loads code from there. Currently, the
2530 only way to roll back an invocation of @command{guix pull} is to
2531 manually update this symlink to point to the previous Guix.}.
2532
2533 The @command{guix pull} command is usually invoked with no arguments,
2534 but it supports the following options:
2535
2536 @table @code
2537 @item --verbose
2538 Produce verbose output, writing build logs to the standard error output.
2539
2540 @item --url=@var{url}
2541 Download Guix from the Git repository at @var{url}.
2542
2543 @vindex GUIX_PULL_URL
2544 By default, the source is taken from its canonical Git repository at
2545 @code{gnu.org}, for the stable branch of Guix. To use a different source,
2546 set the @code{GUIX_PULL_URL} environment variable.
2547
2548 @item --commit=@var{commit}
2549 Deploy @var{commit}, a valid Git commit ID represented as a hexadecimal
2550 string.
2551
2552 @item --branch=@var{branch}
2553 Deploy the tip of @var{branch}, the name of a Git branch available on
2554 the repository at @var{url}.
2555
2556 @item --bootstrap
2557 Use the bootstrap Guile to build the latest Guix. This option is only
2558 useful to Guix developers.
2559 @end table
2560
2561 In addition, @command{guix pull} supports all the common build options
2562 (@pxref{Common Build Options}).
2563
2564 @node Invoking guix pack
2565 @section Invoking @command{guix pack}
2566
2567 Occasionally you want to pass software to people who are not (yet!)
2568 lucky enough to be using Guix. You'd tell them to run @command{guix
2569 package -i @var{something}}, but that's not possible in this case. This
2570 is where @command{guix pack} comes in.
2571
2572 @cindex pack
2573 @cindex bundle
2574 @cindex application bundle
2575 @cindex software bundle
2576 The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or
2577 @dfn{software bundle}: it creates a tarball or some other archive
2578 containing the binaries of the software you're interested in, and all
2579 its dependencies. The resulting archive can be used on any machine that
2580 does not have Guix, and people can run the exact same binaries as those
2581 you have with Guix. The pack itself is created in a bit-reproducible
2582 fashion, so anyone can verify that it really contains the build results
2583 that you pretend to be shipping.
2584
2585 For example, to create a bundle containing Guile, Emacs, Geiser, and all
2586 their dependencies, you can run:
2587
2588 @example
2589 $ guix pack guile emacs geiser
2590 @dots{}
2591 /gnu/store/@dots{}-pack.tar.gz
2592 @end example
2593
2594 The result here is a tarball containing a @file{/gnu/store} directory
2595 with all the relevant packages. The resulting tarball contains a
2596 @dfn{profile} with the three packages of interest; the profile is the
2597 same as would be created by @command{guix package -i}. It is this
2598 mechanism that is used to create Guix's own standalone binary tarball
2599 (@pxref{Binary Installation}).
2600
2601 Users of this pack would have to run
2602 @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may
2603 find inconvenient. To work around it, you can create, say, a
2604 @file{/opt/gnu/bin} symlink to the profile:
2605
2606 @example
2607 guix pack -S /opt/gnu/bin=bin guile emacs geiser
2608 @end example
2609
2610 @noindent
2611 That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy.
2612
2613 Alternatively, you can produce a pack in the Docker image format using
2614 the following command:
2615
2616 @example
2617 guix pack -f docker guile emacs geiser
2618 @end example
2619
2620 @noindent
2621 The result is a tarball that can be passed to the @command{docker load}
2622 command. See the
2623 @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker
2624 documentation} for more information.
2625
2626 Several command-line options allow you to customize your pack:
2627
2628 @table @code
2629 @item --format=@var{format}
2630 @itemx -f @var{format}
2631 Produce a pack in the given @var{format}.
2632
2633 The available formats are:
2634
2635 @table @code
2636 @item tarball
2637 This is the default format. It produces a tarball containing all the
2638 specified binaries and symlinks.
2639
2640 @item docker
2641 This produces a tarball that follows the
2642 @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md,
2643 Docker Image Specification}.
2644 @end table
2645
2646 @item --expression=@var{expr}
2647 @itemx -e @var{expr}
2648 Consider the package @var{expr} evaluates to.
2649
2650 This has the same purpose as the same-named option in @command{guix
2651 build} (@pxref{Additional Build Options, @code{--expression} in
2652 @command{guix build}}).
2653
2654 @item --system=@var{system}
2655 @itemx -s @var{system}
2656 Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
2657 the system type of the build host.
2658
2659 @item --target=@var{triplet}
2660 @cindex cross-compilation
2661 Cross-build for @var{triplet}, which must be a valid GNU triplet, such
2662 as @code{"mips64el-linux-gnu"} (@pxref{Specifying target triplets, GNU
2663 configuration triplets,, autoconf, Autoconf}).
2664
2665 @item --compression=@var{tool}
2666 @itemx -C @var{tool}
2667 Compress the resulting tarball using @var{tool}---one of @code{gzip},
2668 @code{bzip2}, @code{xz}, @code{lzip}, or @code{none} for no compression.
2669
2670 @item --symlink=@var{spec}
2671 @itemx -S @var{spec}
2672 Add the symlinks specified by @var{spec} to the pack. This option can
2673 appear several times.
2674
2675 @var{spec} has the form @code{@var{source}=@var{target}}, where
2676 @var{source} is the symlink that will be created and @var{target} is the
2677 symlink target.
2678
2679 For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin}
2680 symlink pointing to the @file{bin} sub-directory of the profile.
2681
2682 @item --localstatedir
2683 Include the ``local state directory'', @file{/var/guix}, in the
2684 resulting pack.
2685
2686 @file{/var/guix} contains the store database (@pxref{The Store}) as well
2687 as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in
2688 the pack means that the store is ``complete'' and manageable by Guix;
2689 not providing it pack means that the store is ``dead'': items cannot be
2690 added to it or removed from it after extraction of the pack.
2691
2692 One use case for this is the Guix self-contained binary tarball
2693 (@pxref{Binary Installation}).
2694 @end table
2695
2696 In addition, @command{guix pack} supports all the common build options
2697 (@pxref{Common Build Options}) and all the package transformation
2698 options (@pxref{Package Transformation Options}).
2699
2700
2701 @node Invoking guix archive
2702 @section Invoking @command{guix archive}
2703
2704 @cindex @command{guix archive}
2705 @cindex archive
2706 The @command{guix archive} command allows users to @dfn{export} files
2707 from the store into a single archive, and to later @dfn{import} them.
2708 In particular, it allows store files to be transferred from one machine
2709 to the store on another machine.
2710
2711 @cindex exporting store items
2712 To export store files as an archive to standard output, run:
2713
2714 @example
2715 guix archive --export @var{options} @var{specifications}...
2716 @end example
2717
2718 @var{specifications} may be either store file names or package
2719 specifications, as for @command{guix package} (@pxref{Invoking guix
2720 package}). For instance, the following command creates an archive
2721 containing the @code{gui} output of the @code{git} package and the main
2722 output of @code{emacs}:
2723
2724 @example
2725 guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar
2726 @end example
2727
2728 If the specified packages are not built yet, @command{guix archive}
2729 automatically builds them. The build process may be controlled with the
2730 common build options (@pxref{Common Build Options}).
2731
2732 To transfer the @code{emacs} package to a machine connected over SSH,
2733 one would run:
2734
2735 @example
2736 guix archive --export -r emacs | ssh the-machine guix archive --import
2737 @end example
2738
2739 @noindent
2740 Similarly, a complete user profile may be transferred from one machine
2741 to another like this:
2742
2743 @example
2744 guix archive --export -r $(readlink -f ~/.guix-profile) | \
2745 ssh the-machine guix-archive --import
2746 @end example
2747
2748 @noindent
2749 However, note that, in both examples, all of @code{emacs} and the
2750 profile as well as all of their dependencies are transferred (due to
2751 @code{-r}), regardless of what is already available in the store on the
2752 target machine. The @code{--missing} option can help figure out which
2753 items are missing from the target store. The @command{guix copy}
2754 command simplifies and optimizes this whole process, so this is probably
2755 what you should use in this case (@pxref{Invoking guix copy}).
2756
2757 @cindex nar, archive format
2758 @cindex normalized archive (nar)
2759 Archives are stored in the ``normalized archive'' or ``nar'' format, which is
2760 comparable in spirit to `tar', but with differences
2761 that make it more appropriate for our purposes. First, rather than
2762 recording all Unix metadata for each file, the nar format only mentions
2763 the file type (regular, directory, or symbolic link); Unix permissions
2764 and owner/group are dismissed. Second, the order in which directory
2765 entries are stored always follows the order of file names according to
2766 the C locale collation order. This makes archive production fully
2767 deterministic.
2768
2769 When exporting, the daemon digitally signs the contents of the archive,
2770 and that digital signature is appended. When importing, the daemon
2771 verifies the signature and rejects the import in case of an invalid
2772 signature or if the signing key is not authorized.
2773 @c FIXME: Add xref to daemon doc about signatures.
2774
2775 The main options are:
2776
2777 @table @code
2778 @item --export
2779 Export the specified store files or packages (see below.) Write the
2780 resulting archive to the standard output.
2781
2782 Dependencies are @emph{not} included in the output, unless
2783 @code{--recursive} is passed.
2784
2785 @item -r
2786 @itemx --recursive
2787 When combined with @code{--export}, this instructs @command{guix
2788 archive} to include dependencies of the given items in the archive.
2789 Thus, the resulting archive is self-contained: it contains the closure
2790 of the exported store items.
2791
2792 @item --import
2793 Read an archive from the standard input, and import the files listed
2794 therein into the store. Abort if the archive has an invalid digital
2795 signature, or if it is signed by a public key not among the authorized
2796 keys (see @code{--authorize} below.)
2797
2798 @item --missing
2799 Read a list of store file names from the standard input, one per line,
2800 and write on the standard output the subset of these files missing from
2801 the store.
2802
2803 @item --generate-key[=@var{parameters}]
2804 @cindex signing, archives
2805 Generate a new key pair for the daemon. This is a prerequisite before
2806 archives can be exported with @code{--export}. Note that this operation
2807 usually takes time, because it needs to gather enough entropy to
2808 generate the key pair.
2809
2810 The generated key pair is typically stored under @file{/etc/guix}, in
2811 @file{signing-key.pub} (public key) and @file{signing-key.sec} (private
2812 key, which must be kept secret.) When @var{parameters} is omitted,
2813 an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt
2814 versions before 1.6.0, it is a 4096-bit RSA key.
2815 Alternatively, @var{parameters} can specify
2816 @code{genkey} parameters suitable for Libgcrypt (@pxref{General
2817 public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The
2818 Libgcrypt Reference Manual}).
2819
2820 @item --authorize
2821 @cindex authorizing, archives
2822 Authorize imports signed by the public key passed on standard input.
2823 The public key must be in ``s-expression advanced format''---i.e., the
2824 same format as the @file{signing-key.pub} file.
2825
2826 The list of authorized keys is kept in the human-editable file
2827 @file{/etc/guix/acl}. The file contains
2828 @url{http://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format
2829 s-expressions''} and is structured as an access-control list in the
2830 @url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure
2831 (SPKI)}.
2832
2833 @item --extract=@var{directory}
2834 @itemx -x @var{directory}
2835 Read a single-item archive as served by substitute servers
2836 (@pxref{Substitutes}) and extract it to @var{directory}. This is a
2837 low-level operation needed in only very narrow use cases; see below.
2838
2839 For example, the following command extracts the substitute for Emacs
2840 served by @code{hydra.gnu.org} to @file{/tmp/emacs}:
2841
2842 @example
2843 $ wget -O - \
2844 https://hydra.gnu.org/nar/@dots{}-emacs-24.5 \
2845 | bunzip2 | guix archive -x /tmp/emacs
2846 @end example
2847
2848 Single-item archives are different from multiple-item archives produced
2849 by @command{guix archive --export}; they contain a single store item,
2850 and they do @emph{not} embed a signature. Thus this operation does
2851 @emph{no} signature verification and its output should be considered
2852 unsafe.
2853
2854 The primary purpose of this operation is to facilitate inspection of
2855 archive contents coming from possibly untrusted substitute servers.
2856
2857 @end table
2858
2859 @c *********************************************************************
2860 @node Programming Interface
2861 @chapter Programming Interface
2862
2863 GNU Guix provides several Scheme programming interfaces (APIs) to
2864 define, build, and query packages. The first interface allows users to
2865 write high-level package definitions. These definitions refer to
2866 familiar packaging concepts, such as the name and version of a package,
2867 its build system, and its dependencies. These definitions can then be
2868 turned into concrete build actions.
2869
2870 Build actions are performed by the Guix daemon, on behalf of users. In a
2871 standard setup, the daemon has write access to the store---the
2872 @file{/gnu/store} directory---whereas users do not. The recommended
2873 setup also has the daemon perform builds in chroots, under a specific
2874 build users, to minimize interference with the rest of the system.
2875
2876 @cindex derivation
2877 Lower-level APIs are available to interact with the daemon and the
2878 store. To instruct the daemon to perform a build action, users actually
2879 provide it with a @dfn{derivation}. A derivation is a low-level
2880 representation of the build actions to be taken, and the environment in
2881 which they should occur---derivations are to package definitions what
2882 assembly is to C programs. The term ``derivation'' comes from the fact
2883 that build results @emph{derive} from them.
2884
2885 This chapter describes all these APIs in turn, starting from high-level
2886 package definitions.
2887
2888 @menu
2889 * Defining Packages:: Defining new packages.
2890 * Build Systems:: Specifying how packages are built.
2891 * The Store:: Manipulating the package store.
2892 * Derivations:: Low-level interface to package derivations.
2893 * The Store Monad:: Purely functional interface to the store.
2894 * G-Expressions:: Manipulating build expressions.
2895 @end menu
2896
2897 @node Defining Packages
2898 @section Defining Packages
2899
2900 The high-level interface to package definitions is implemented in the
2901 @code{(guix packages)} and @code{(guix build-system)} modules. As an
2902 example, the package definition, or @dfn{recipe}, for the GNU Hello
2903 package looks like this:
2904
2905 @example
2906 (define-module (gnu packages hello)
2907 #:use-module (guix packages)
2908 #:use-module (guix download)
2909 #:use-module (guix build-system gnu)
2910 #:use-module (guix licenses)
2911 #:use-module (gnu packages gawk))
2912
2913 (define-public hello
2914 (package
2915 (name "hello")
2916 (version "2.10")
2917 (source (origin
2918 (method url-fetch)
2919 (uri (string-append "mirror://gnu/hello/hello-" version
2920 ".tar.gz"))
2921 (sha256
2922 (base32
2923 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
2924 (build-system gnu-build-system)
2925 (arguments '(#:configure-flags '("--enable-silent-rules")))
2926 (inputs `(("gawk" ,gawk)))
2927 (synopsis "Hello, GNU world: An example GNU package")
2928 (description "Guess what GNU Hello prints!")
2929 (home-page "http://www.gnu.org/software/hello/")
2930 (license gpl3+)))
2931 @end example
2932
2933 @noindent
2934 Without being a Scheme expert, the reader may have guessed the meaning
2935 of the various fields here. This expression binds the variable
2936 @code{hello} to a @code{<package>} object, which is essentially a record
2937 (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}).
2938 This package object can be inspected using procedures found in the
2939 @code{(guix packages)} module; for instance, @code{(package-name hello)}
2940 returns---surprise!---@code{"hello"}.
2941
2942 With luck, you may be able to import part or all of the definition of
2943 the package you are interested in from another repository, using the
2944 @code{guix import} command (@pxref{Invoking guix import}).
2945
2946 In the example above, @var{hello} is defined in a module of its own,
2947 @code{(gnu packages hello)}. Technically, this is not strictly
2948 necessary, but it is convenient to do so: all the packages defined in
2949 modules under @code{(gnu packages @dots{})} are automatically known to
2950 the command-line tools (@pxref{Package Modules}).
2951
2952 There are a few points worth noting in the above package definition:
2953
2954 @itemize
2955 @item
2956 The @code{source} field of the package is an @code{<origin>} object
2957 (@pxref{origin Reference}, for the complete reference).
2958 Here, the @code{url-fetch} method from @code{(guix download)} is used,
2959 meaning that the source is a file to be downloaded over FTP or HTTP.
2960
2961 The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of
2962 the GNU mirrors defined in @code{(guix download)}.
2963
2964 The @code{sha256} field specifies the expected SHA256 hash of the file
2965 being downloaded. It is mandatory, and allows Guix to check the
2966 integrity of the file. The @code{(base32 @dots{})} form introduces the
2967 base32 representation of the hash. You can obtain this information with
2968 @code{guix download} (@pxref{Invoking guix download}) and @code{guix
2969 hash} (@pxref{Invoking guix hash}).
2970
2971 @cindex patches
2972 When needed, the @code{origin} form can also have a @code{patches} field
2973 listing patches to be applied, and a @code{snippet} field giving a
2974 Scheme expression to modify the source code.
2975
2976 @item
2977 @cindex GNU Build System
2978 The @code{build-system} field specifies the procedure to build the
2979 package (@pxref{Build Systems}). Here, @var{gnu-build-system}
2980 represents the familiar GNU Build System, where packages may be
2981 configured, built, and installed with the usual @code{./configure &&
2982 make && make check && make install} command sequence.
2983
2984 @item
2985 The @code{arguments} field specifies options for the build system
2986 (@pxref{Build Systems}). Here it is interpreted by
2987 @var{gnu-build-system} as a request run @file{configure} with the
2988 @code{--enable-silent-rules} flag.
2989
2990 @cindex quote
2991 @cindex quoting
2992 @findex '
2993 @findex quote
2994 What about these quote (@code{'}) characters? They are Scheme syntax to
2995 introduce a literal list; @code{'} is synonymous with @code{quote}.
2996 @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual},
2997 for details. Here the value of the @code{arguments} field is a list of
2998 arguments passed to the build system down the road, as with @code{apply}
2999 (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference
3000 Manual}).
3001
3002 The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword}
3003 (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and
3004 @code{#:configure-flags} is a keyword used to pass a keyword argument
3005 to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile
3006 Reference Manual}).
3007
3008 @item
3009 The @code{inputs} field specifies inputs to the build process---i.e.,
3010 build-time or run-time dependencies of the package. Here, we define an
3011 input called @code{"gawk"} whose value is that of the @var{gawk}
3012 variable; @var{gawk} is itself bound to a @code{<package>} object.
3013
3014 @cindex backquote (quasiquote)
3015 @findex `
3016 @findex quasiquote
3017 @cindex comma (unquote)
3018 @findex ,
3019 @findex unquote
3020 @findex ,@@
3021 @findex unquote-splicing
3022 Again, @code{`} (a backquote, synonymous with @code{quasiquote}) allows
3023 us to introduce a literal list in the @code{inputs} field, while
3024 @code{,} (a comma, synonymous with @code{unquote}) allows us to insert a
3025 value in that list (@pxref{Expression Syntax, unquote,, guile, GNU Guile
3026 Reference Manual}).
3027
3028 Note that GCC, Coreutils, Bash, and other essential tools do not need to
3029 be specified as inputs here. Instead, @var{gnu-build-system} takes care
3030 of ensuring that they are present (@pxref{Build Systems}).
3031
3032 However, any other dependencies need to be specified in the
3033 @code{inputs} field. Any dependency not specified here will simply be
3034 unavailable to the build process, possibly leading to a build failure.
3035 @end itemize
3036
3037 @xref{package Reference}, for a full description of possible fields.
3038
3039 Once a package definition is in place, the
3040 package may actually be built using the @code{guix build} command-line
3041 tool (@pxref{Invoking guix build}), troubleshooting any build failures
3042 you encounter (@pxref{Debugging Build Failures}). You can easily jump back to the
3043 package definition using the @command{guix edit} command
3044 (@pxref{Invoking guix edit}).
3045 @xref{Packaging Guidelines}, for
3046 more information on how to test package definitions, and
3047 @ref{Invoking guix lint}, for information on how to check a definition
3048 for style conformance.
3049 @vindex GUIX_PACKAGE_PATH
3050 Lastly, @pxref{Package Modules}, for information
3051 on how to extend the distribution by adding your own package definitions
3052 to @code{GUIX_PACKAGE_PATH}.
3053
3054 Finally, updating the package definition to a new upstream version
3055 can be partly automated by the @command{guix refresh} command
3056 (@pxref{Invoking guix refresh}).
3057
3058 Behind the scenes, a derivation corresponding to the @code{<package>}
3059 object is first computed by the @code{package-derivation} procedure.
3060 That derivation is stored in a @code{.drv} file under @file{/gnu/store}.
3061 The build actions it prescribes may then be realized by using the
3062 @code{build-derivations} procedure (@pxref{The Store}).
3063
3064 @deffn {Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]
3065 Return the @code{<derivation>} object of @var{package} for @var{system}
3066 (@pxref{Derivations}).
3067
3068 @var{package} must be a valid @code{<package>} object, and @var{system}
3069 must be a string denoting the target system type---e.g.,
3070 @code{"x86_64-linux"} for an x86_64 Linux-based GNU system. @var{store}
3071 must be a connection to the daemon, which operates on the store
3072 (@pxref{The Store}).
3073 @end deffn
3074
3075 @noindent
3076 @cindex cross-compilation
3077 Similarly, it is possible to compute a derivation that cross-builds a
3078 package for some other system:
3079
3080 @deffn {Scheme Procedure} package-cross-derivation @var{store} @
3081 @var{package} @var{target} [@var{system}]
3082 Return the @code{<derivation>} object of @var{package} cross-built from
3083 @var{system} to @var{target}.
3084
3085 @var{target} must be a valid GNU triplet denoting the target hardware
3086 and operating system, such as @code{"mips64el-linux-gnu"}
3087 (@pxref{Configuration Names, GNU configuration triplets,, configure, GNU
3088 Configure and Build System}).
3089 @end deffn
3090
3091 @cindex package transformations
3092 @cindex input rewriting
3093 @cindex dependency tree rewriting
3094 Packages can be manipulated in arbitrary ways. An example of a useful
3095 transformation is @dfn{input rewriting}, whereby the dependency tree of
3096 a package is rewritten by replacing specific inputs by others:
3097
3098 @deffn {Scheme Procedure} package-input-rewriting @var{replacements} @
3099 [@var{rewrite-name}]
3100 Return a procedure that, when passed a package, replaces its direct and
3101 indirect dependencies (but not its implicit inputs) according to
3102 @var{replacements}. @var{replacements} is a list of package pairs; the
3103 first element of each pair is the package to replace, and the second one
3104 is the replacement.
3105
3106 Optionally, @var{rewrite-name} is a one-argument procedure that takes
3107 the name of a package and returns its new name after rewrite.
3108 @end deffn
3109
3110 @noindent
3111 Consider this example:
3112
3113 @example
3114 (define libressl-instead-of-openssl
3115 ;; This is a procedure to replace OPENSSL by LIBRESSL,
3116 ;; recursively.
3117 (package-input-rewriting `((,openssl . ,libressl))))
3118
3119 (define git-with-libressl
3120 (libressl-instead-of-openssl git))
3121 @end example
3122
3123 @noindent
3124 Here we first define a rewriting procedure that replaces @var{openssl}
3125 with @var{libressl}. Then we use it to define a @dfn{variant} of the
3126 @var{git} package that uses @var{libressl} instead of @var{openssl}.
3127 This is exactly what the @option{--with-input} command-line option does
3128 (@pxref{Package Transformation Options, @option{--with-input}}).
3129
3130 A more generic procedure to rewrite a package dependency graph is
3131 @code{package-mapping}: it supports arbitrary changes to nodes in the
3132 graph.
3133
3134 @deffn {Scheme Procedure} package-mapping @var{proc} [@var{cut?}]
3135 Return a procedure that, given a package, applies @var{proc} to all the packages
3136 depended on and returns the resulting package. The procedure stops recursion
3137 when @var{cut?} returns true for a given package.
3138 @end deffn
3139
3140 @menu
3141 * package Reference :: The package data type.
3142 * origin Reference:: The origin data type.
3143 @end menu
3144
3145
3146 @node package Reference
3147 @subsection @code{package} Reference
3148
3149 This section summarizes all the options available in @code{package}
3150 declarations (@pxref{Defining Packages}).
3151
3152 @deftp {Data Type} package
3153 This is the data type representing a package recipe.
3154
3155 @table @asis
3156 @item @code{name}
3157 The name of the package, as a string.
3158
3159 @item @code{version}
3160 The version of the package, as a string.
3161
3162 @item @code{source}
3163 An object telling how the source code for the package should be
3164 acquired. Most of the time, this is an @code{origin} object, which
3165 denotes a file fetched from the Internet (@pxref{origin Reference}). It
3166 can also be any other ``file-like'' object such as a @code{local-file},
3167 which denotes a file from the local file system (@pxref{G-Expressions,
3168 @code{local-file}}).
3169
3170 @item @code{build-system}
3171 The build system that should be used to build the package (@pxref{Build
3172 Systems}).
3173
3174 @item @code{arguments} (default: @code{'()})
3175 The arguments that should be passed to the build system. This is a
3176 list, typically containing sequential keyword-value pairs.
3177
3178 @item @code{inputs} (default: @code{'()})
3179 @itemx @code{native-inputs} (default: @code{'()})
3180 @itemx @code{propagated-inputs} (default: @code{'()})
3181 @cindex inputs, of packages
3182 These fields list dependencies of the package. Each one is a list of
3183 tuples, where each tuple has a label for the input (a string) as its
3184 first element, a package, origin, or derivation as its second element,
3185 and optionally the name of the output thereof that should be used, which
3186 defaults to @code{"out"} (@pxref{Packages with Multiple Outputs}, for
3187 more on package outputs). For example, the list below specifies three
3188 inputs:
3189
3190 @example
3191 `(("libffi" ,libffi)
3192 ("libunistring" ,libunistring)
3193 ("glib:bin" ,glib "bin")) ;the "bin" output of Glib
3194 @end example
3195
3196 @cindex cross compilation, package dependencies
3197 The distinction between @code{native-inputs} and @code{inputs} is
3198 necessary when considering cross-compilation. When cross-compiling,
3199 dependencies listed in @code{inputs} are built for the @emph{target}
3200 architecture; conversely, dependencies listed in @code{native-inputs}
3201 are built for the architecture of the @emph{build} machine.
3202
3203 @code{native-inputs} is typically used to list tools needed at
3204 build time, but not at run time, such as Autoconf, Automake, pkg-config,
3205 Gettext, or Bison. @command{guix lint} can report likely mistakes in
3206 this area (@pxref{Invoking guix lint}).
3207
3208 @anchor{package-propagated-inputs}
3209 Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the
3210 specified packages will be automatically installed alongside the package
3211 they belong to (@pxref{package-cmd-propagated-inputs, @command{guix
3212 package}}, for information on how @command{guix package} deals with
3213 propagated inputs.)
3214
3215 For example this is necessary when a C/C++ library needs headers of
3216 another library to compile, or when a pkg-config file refers to another
3217 one @i{via} its @code{Requires} field.
3218
3219 Another example where @code{propagated-inputs} is useful is for languages
3220 that lack a facility to record the run-time search path akin to the
3221 @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and
3222 more. To ensure that libraries written in those languages can find
3223 library code they depend on at run time, run-time dependencies must be
3224 listed in @code{propagated-inputs} rather than @code{inputs}.
3225
3226 @item @code{self-native-input?} (default: @code{#f})
3227 This is a Boolean field telling whether the package should use itself as
3228 a native input when cross-compiling.
3229
3230 @item @code{outputs} (default: @code{'("out")})
3231 The list of output names of the package. @xref{Packages with Multiple
3232 Outputs}, for typical uses of additional outputs.
3233
3234 @item @code{native-search-paths} (default: @code{'()})
3235 @itemx @code{search-paths} (default: @code{'()})
3236 A list of @code{search-path-specification} objects describing
3237 search-path environment variables honored by the package.
3238
3239 @item @code{replacement} (default: @code{#f})
3240 This must be either @code{#f} or a package object that will be used as a
3241 @dfn{replacement} for this package. @xref{Security Updates, grafts},
3242 for details.
3243
3244 @item @code{synopsis}
3245 A one-line description of the package.
3246
3247 @item @code{description}
3248 A more elaborate description of the package.
3249
3250 @item @code{license}
3251 @cindex license, of packages
3252 The license of the package; a value from @code{(guix licenses)},
3253 or a list of such values.
3254
3255 @item @code{home-page}
3256 The URL to the home-page of the package, as a string.
3257
3258 @item @code{supported-systems} (default: @var{%supported-systems})
3259 The list of systems supported by the package, as strings of the form
3260 @code{architecture-kernel}, for example @code{"x86_64-linux"}.
3261
3262 @item @code{maintainers} (default: @code{'()})
3263 The list of maintainers of the package, as @code{maintainer} objects.
3264
3265 @item @code{location} (default: source location of the @code{package} form)
3266 The source location of the package. It is useful to override this when
3267 inheriting from another package, in which case this field is not
3268 automatically corrected.
3269 @end table
3270 @end deftp
3271
3272
3273 @node origin Reference
3274 @subsection @code{origin} Reference
3275
3276 This section summarizes all the options available in @code{origin}
3277 declarations (@pxref{Defining Packages}).
3278
3279 @deftp {Data Type} origin
3280 This is the data type representing a source code origin.
3281
3282 @table @asis
3283 @item @code{uri}
3284 An object containing the URI of the source. The object type depends on
3285 the @code{method} (see below). For example, when using the
3286 @var{url-fetch} method of @code{(guix download)}, the valid @code{uri}
3287 values are: a URL represented as a string, or a list thereof.
3288
3289 @item @code{method}
3290 A procedure that handles the URI.
3291
3292 Examples include:
3293
3294 @table @asis
3295 @item @var{url-fetch} from @code{(guix download)}
3296 download a file from the HTTP, HTTPS, or FTP URL specified in the
3297 @code{uri} field;
3298
3299 @vindex git-fetch
3300 @item @var{git-fetch} from @code{(guix git-download)}
3301 clone the Git version control repository, and check out the revision
3302 specified in the @code{uri} field as a @code{git-reference} object; a
3303 @code{git-reference} looks like this:
3304
3305 @example
3306 (git-reference
3307 (url "git://git.debian.org/git/pkg-shadow/shadow")
3308 (commit "v4.1.5.1"))
3309 @end example
3310 @end table
3311
3312 @item @code{sha256}
3313 A bytevector containing the SHA-256 hash of the source. Typically the
3314 @code{base32} form is used here to generate the bytevector from a
3315 base-32 string.
3316
3317 You can obtain this information using @code{guix download}
3318 (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking
3319 guix hash}).
3320
3321 @item @code{file-name} (default: @code{#f})
3322 The file name under which the source code should be saved. When this is
3323 @code{#f}, a sensible default value will be used in most cases. In case
3324 the source is fetched from a URL, the file name from the URL will be
3325 used. For version control checkouts, it is recommended to provide the
3326 file name explicitly because the default is not very descriptive.
3327
3328 @item @code{patches} (default: @code{'()})
3329 A list of file names, origins, or file-like objects (@pxref{G-Expressions,
3330 file-like objects}) pointing to patches to be applied to the source.
3331
3332 This list of patches must be unconditional. In particular, it cannot
3333 depend on the value of @code{%current-system} or
3334 @code{%current-target-system}.
3335
3336 @item @code{snippet} (default: @code{#f})
3337 A G-expression (@pxref{G-Expressions}) or S-expression that will be run
3338 in the source directory. This is a convenient way to modify the source,
3339 sometimes more convenient than a patch.
3340
3341 @item @code{patch-flags} (default: @code{'("-p1")})
3342 A list of command-line flags that should be passed to the @code{patch}
3343 command.
3344
3345 @item @code{patch-inputs} (default: @code{#f})
3346 Input packages or derivations to the patching process. When this is
3347 @code{#f}, the usual set of inputs necessary for patching are provided,
3348 such as GNU@tie{}Patch.
3349
3350 @item @code{modules} (default: @code{'()})
3351 A list of Guile modules that should be loaded during the patching
3352 process and while running the code in the @code{snippet} field.
3353
3354 @item @code{patch-guile} (default: @code{#f})
3355 The Guile package that should be used in the patching process. When
3356 this is @code{#f}, a sensible default is used.
3357 @end table
3358 @end deftp
3359
3360
3361 @node Build Systems
3362 @section Build Systems
3363
3364 @cindex build system
3365 Each package definition specifies a @dfn{build system} and arguments for
3366 that build system (@pxref{Defining Packages}). This @code{build-system}
3367 field represents the build procedure of the package, as well as implicit
3368 dependencies of that build procedure.
3369
3370 Build systems are @code{<build-system>} objects. The interface to
3371 create and manipulate them is provided by the @code{(guix build-system)}
3372 module, and actual build systems are exported by specific modules.
3373
3374 @cindex bag (low-level package representation)
3375 Under the hood, build systems first compile package objects to
3376 @dfn{bags}. A @dfn{bag} is like a package, but with less
3377 ornamentation---in other words, a bag is a lower-level representation of
3378 a package, which includes all the inputs of that package, including some
3379 that were implicitly added by the build system. This intermediate
3380 representation is then compiled to a derivation (@pxref{Derivations}).
3381
3382 Build systems accept an optional list of @dfn{arguments}. In package
3383 definitions, these are passed @i{via} the @code{arguments} field
3384 (@pxref{Defining Packages}). They are typically keyword arguments
3385 (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU
3386 Guile Reference Manual}). The value of these arguments is usually
3387 evaluated in the @dfn{build stratum}---i.e., by a Guile process launched
3388 by the daemon (@pxref{Derivations}).
3389
3390 The main build system is @var{gnu-build-system}, which implements the
3391 standard build procedure for GNU and many other packages. It
3392 is provided by the @code{(guix build-system gnu)} module.
3393
3394 @defvr {Scheme Variable} gnu-build-system
3395 @var{gnu-build-system} represents the GNU Build System, and variants
3396 thereof (@pxref{Configuration, configuration and makefile conventions,,
3397 standards, GNU Coding Standards}).
3398
3399 @cindex build phases
3400 In a nutshell, packages using it are configured, built, and installed with
3401 the usual @code{./configure && make && make check && make install}
3402 command sequence. In practice, a few additional steps are often needed.
3403 All these steps are split up in separate @dfn{phases},
3404 notably@footnote{Please see the @code{(guix build gnu-build-system)}
3405 modules for more details about the build phases.}:
3406
3407 @table @code
3408 @item unpack
3409 Unpack the source tarball, and change the current directory to the
3410 extracted source tree. If the source is actually a directory, copy it
3411 to the build tree, and enter that directory.
3412
3413 @item patch-source-shebangs
3414 Patch shebangs encountered in source files so they refer to the right
3415 store file names. For instance, this changes @code{#!/bin/sh} to
3416 @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}.
3417
3418 @item configure
3419 Run the @file{configure} script with a number of default options, such
3420 as @code{--prefix=/gnu/store/@dots{}}, as well as the options specified
3421 by the @code{#:configure-flags} argument.
3422
3423 @item build
3424 Run @code{make} with the list of flags specified with
3425 @code{#:make-flags}. If the @code{#:parallel-build?} argument is true
3426 (the default), build with @code{make -j}.
3427
3428 @item check
3429 Run @code{make check}, or some other target specified with
3430 @code{#:test-target}, unless @code{#:tests? #f} is passed. If the
3431 @code{#:parallel-tests?} argument is true (the default), run @code{make
3432 check -j}.
3433
3434 @item install
3435 Run @code{make install} with the flags listed in @code{#:make-flags}.
3436
3437 @item patch-shebangs
3438 Patch shebangs on the installed executable files.
3439
3440 @item strip
3441 Strip debugging symbols from ELF files (unless @code{#:strip-binaries?}
3442 is false), copying them to the @code{debug} output when available
3443 (@pxref{Installing Debugging Files}).
3444 @end table
3445
3446 @vindex %standard-phases
3447 The build-side module @code{(guix build gnu-build-system)} defines
3448 @var{%standard-phases} as the default list of build phases.
3449 @var{%standard-phases} is a list of symbol/procedure pairs, where the
3450 procedure implements the actual phase.
3451
3452 The list of phases used for a particular package can be changed with the
3453 @code{#:phases} parameter. For instance, passing:
3454
3455 @example
3456 #:phases (modify-phases %standard-phases (delete 'configure))
3457 @end example
3458
3459 means that all the phases described above will be used, except the
3460 @code{configure} phase.
3461
3462 In addition, this build system ensures that the ``standard'' environment
3463 for GNU packages is available. This includes tools such as GCC, libc,
3464 Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix
3465 build-system gnu)} module for a complete list). We call these the
3466 @dfn{implicit inputs} of a package, because package definitions do not
3467 have to mention them.
3468 @end defvr
3469
3470 Other @code{<build-system>} objects are defined to support other
3471 conventions and tools used by free software packages. They inherit most
3472 of @var{gnu-build-system}, and differ mainly in the set of inputs
3473 implicitly added to the build process, and in the list of phases
3474 executed. Some of these build systems are listed below.
3475
3476 @defvr {Scheme Variable} ant-build-system
3477 This variable is exported by @code{(guix build-system ant)}. It
3478 implements the build procedure for Java packages that can be built with
3479 @url{http://ant.apache.org/, Ant build tool}.
3480
3481 It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as
3482 provided by the @code{icedtea} package to the set of inputs. Different
3483 packages can be specified with the @code{#:ant} and @code{#:jdk}
3484 parameters, respectively.
3485
3486 When the original package does not provide a suitable Ant build file,
3487 the parameter @code{#:jar-name} can be used to generate a minimal Ant
3488 build file @file{build.xml} with tasks to build the specified jar
3489 archive. In this case the parameter @code{#:source-dir} can be used to
3490 specify the source sub-directory, defaulting to ``src''.
3491
3492 The @code{#:main-class} parameter can be used with the minimal ant
3493 buildfile to specify the main class of the resulting jar. This makes the
3494 jar file executable. The @code{#:test-include} parameter can be used to
3495 specify the list of junit tests to run. It defaults to
3496 @code{(list "**/*Test.java")}. The @code{#:test-exclude} can be used to
3497 disable some tests. It defaults to @code{(list "**/Abstract*.java")},
3498 because abstract classes cannot be run as tests.
3499
3500 The parameter @code{#:build-target} can be used to specify the Ant task
3501 that should be run during the @code{build} phase. By default the
3502 ``jar'' task will be run.
3503
3504 @end defvr
3505
3506 @defvr {Scheme Variable} asdf-build-system/source
3507 @defvrx {Scheme Variable} asdf-build-system/sbcl
3508 @defvrx {Scheme Variable} asdf-build-system/ecl
3509
3510 These variables, exported by @code{(guix build-system asdf)}, implement
3511 build procedures for Common Lisp packages using
3512 @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system
3513 definition facility for Common Lisp programs and libraries.
3514
3515 The @code{asdf-build-system/source} system installs the packages in
3516 source form, and can be loaded using any common lisp implementation, via
3517 ASDF. The others, such as @code{asdf-build-system/sbcl}, install binary
3518 systems in the format which a particular implementation understands.
3519 These build systems can also be used to produce executable programs, or
3520 lisp images which contain a set of packages pre-loaded.
3521
3522 The build system uses naming conventions. For binary packages, the
3523 package name should be prefixed with the lisp implementation, such as
3524 @code{sbcl-} for @code{asdf-build-system/sbcl}.
3525
3526 Additionally, the corresponding source package should be labeled using
3527 the same convention as python packages (see @ref{Python Modules}), using
3528 the @code{cl-} prefix.
3529
3530 For binary packages, each system should be defined as a Guix package.
3531 If one package @code{origin} contains several systems, package variants
3532 can be created in order to build all the systems. Source packages,
3533 which use @code{asdf-build-system/source}, may contain several systems.
3534
3535 In order to create executable programs and images, the build-side
3536 procedures @code{build-program} and @code{build-image} can be used.
3537 They should be called in a build phase after the @code{create-symlinks}
3538 phase, so that the system which was just built can be used within the
3539 resulting image. @code{build-program} requires a list of Common Lisp
3540 expressions to be passed as the @code{#:entry-program} argument.
3541
3542 If the system is not defined within its own @code{.asd} file of the same
3543 name, then the @code{#:asd-file} parameter should be used to specify
3544 which file the system is defined in. Furthermore, if the package
3545 defines a system for its tests in a separate file, it will be loaded
3546 before the tests are run if it is specified by the
3547 @code{#:test-asd-file} parameter. If it is not set, the files
3548 @code{<system>-tests.asd}, @code{<system>-test.asd}, @code{tests.asd},
3549 and @code{test.asd} will be tried if they exist.
3550
3551 If for some reason the package must be named in a different way than the
3552 naming conventions suggest, the @code{#:asd-system-name} parameter can
3553 be used to specify the name of the system.
3554
3555 @end defvr
3556
3557 @defvr {Scheme Variable} cargo-build-system
3558 @cindex Rust programming language
3559 @cindex Cargo (Rust build system)
3560 This variable is exported by @code{(guix build-system cargo)}. It
3561 supports builds of packages using Cargo, the build tool of the
3562 @uref{https://www.rust-lang.org, Rust programming language}.
3563
3564 In its @code{configure} phase, this build system replaces dependencies
3565 specified in the @file{Carto.toml} file with inputs to the Guix package.
3566 The @code{install} phase installs the binaries, and it also installs the
3567 source code and @file{Cargo.toml} file.
3568 @end defvr
3569
3570 @defvr {Scheme Variable} cmake-build-system
3571 This variable is exported by @code{(guix build-system cmake)}. It
3572 implements the build procedure for packages using the
3573 @url{http://www.cmake.org, CMake build tool}.
3574
3575 It automatically adds the @code{cmake} package to the set of inputs.
3576 Which package is used can be specified with the @code{#:cmake}
3577 parameter.
3578
3579 The @code{#:configure-flags} parameter is taken as a list of flags
3580 passed to the @command{cmake} command. The @code{#:build-type}
3581 parameter specifies in abstract terms the flags passed to the compiler;
3582 it defaults to @code{"RelWithDebInfo"} (short for ``release mode with
3583 debugging information''), which roughly means that code is compiled with
3584 @code{-O2 -g}, as is the case for Autoconf-based packages by default.
3585 @end defvr
3586
3587 @defvr {Scheme Variable} go-build-system
3588 This variable is exported by @code{(guix build-system go)}. It
3589 implements a build procedure for Go packages using the standard
3590 @url{https://golang.org/cmd/go/#hdr-Compile_packages_and_dependencies,
3591 Go build mechanisms}.
3592
3593 The user is expected to provide a value for the key @code{#:import-path}
3594 and, in some cases, @code{#:unpack-path}. The
3595 @url{https://golang.org/doc/code.html#ImportPaths, import path}
3596 corresponds to the filesystem path expected by the package's build
3597 scripts and any referring packages, and provides a unique way to
3598 refer to a Go package. It is typically based on a combination of the
3599 package source code's remote URI and filesystem hierarchy structure. In
3600 some cases, you will need to unpack the package's source code to a
3601 different directory structure than the one indicated by the import path,
3602 and @code{#:unpack-path} should be used in such cases.
3603
3604 Packages that provide Go libraries should be installed along with their
3605 source code. The key @code{#:install-source?}, which defaults to
3606 @code{#t}, controls whether or not the source code is installed. It can
3607 be set to @code{#f} for packages that only provide executable files.
3608 @end defvr
3609
3610 @defvr {Scheme Variable} glib-or-gtk-build-system
3611 This variable is exported by @code{(guix build-system glib-or-gtk)}. It
3612 is intended for use with packages making use of GLib or GTK+.
3613
3614 This build system adds the following two phases to the ones defined by
3615 @var{gnu-build-system}:
3616
3617 @table @code
3618 @item glib-or-gtk-wrap
3619 The phase @code{glib-or-gtk-wrap} ensures that programs in
3620 @file{bin/} are able to find GLib ``schemas'' and
3621 @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+
3622 modules}. This is achieved by wrapping the programs in launch scripts
3623 that appropriately set the @code{XDG_DATA_DIRS} and @code{GTK_PATH}
3624 environment variables.
3625
3626 It is possible to exclude specific package outputs from that wrapping
3627 process by listing their names in the
3628 @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful
3629 when an output is known not to contain any GLib or GTK+ binaries, and
3630 where wrapping would gratuitously add a dependency of that output on
3631 GLib and GTK+.
3632
3633 @item glib-or-gtk-compile-schemas
3634 The phase @code{glib-or-gtk-compile-schemas} makes sure that all
3635 @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html,
3636 GSettings schemas} of GLib are compiled. Compilation is performed by the
3637 @command{glib-compile-schemas} program. It is provided by the package
3638 @code{glib:bin} which is automatically imported by the build system.
3639 The @code{glib} package providing @command{glib-compile-schemas} can be
3640 specified with the @code{#:glib} parameter.
3641 @end table
3642
3643 Both phases are executed after the @code{install} phase.
3644 @end defvr
3645
3646 @defvr {Scheme Variable} minify-build-system
3647 This variable is exported by @code{(guix build-system minify)}. It
3648 implements a minification procedure for simple JavaScript packages.
3649
3650 It adds @code{uglify-js} to the set of inputs and uses it to compress
3651 all JavaScript files in the @file{src} directory. A different minifier
3652 package can be specified with the @code{#:uglify-js} parameter, but it
3653 is expected that the package writes the minified code to the standard
3654 output.
3655
3656 When the input JavaScript files are not all located in the @file{src}
3657 directory, the parameter @code{#:javascript-files} can be used to
3658 specify a list of file names to feed to the minifier.
3659 @end defvr
3660
3661 @defvr {Scheme Variable} ocaml-build-system
3662 This variable is exported by @code{(guix build-system ocaml)}. It implements
3663 a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists
3664 of choosing the correct set of commands to run for each package. OCaml
3665 packages can expect many different commands to be run. This build system will
3666 try some of them.
3667
3668 When the package has a @file{setup.ml} file present at the top-level, it will
3669 run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and
3670 @code{ocaml setup.ml -install}. The build system will assume that this file
3671 was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take
3672 care of setting the prefix and enabling tests if they are not disabled. You
3673 can pass configure and build flags with the @code{#:configure-flags} and
3674 @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the
3675 set of flags used to enable tests. The @code{#:use-make?} key can be used to
3676 bypass this system in the build and install phases.
3677
3678 When the package has a @file{configure} file, it is assumed that it is a
3679 hand-made configure script that requires a different argument format than
3680 in the @code{gnu-build-system}. You can add more flags with the
3681 @code{#:configure-flags} key.
3682
3683 When the package has a @file{Makefile} file (or @code{#:use-make?} is
3684 @code{#t}), it will be used and more flags can be passed to the build and
3685 install phases with the @code{#:make-flags} key.
3686
3687 Finally, some packages do not have these files and use a somewhat standard
3688 location for its build system. In that case, the build system will run
3689 @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of
3690 providing the path to the required findlib module. Additional flags can
3691 be passed via the @code{#:build-flags} key. Install is taken care of by
3692 @command{opam-installer}. In this case, the @code{opam} package must
3693 be added to the @code{native-inputs} field of the package definition.
3694
3695 Note that most OCaml packages assume they will be installed in the same
3696 directory as OCaml, which is not what we want in guix. In particular, they
3697 will install @file{.so} files in their module's directory, which is usually
3698 fine because it is in the OCaml compiler directory. In guix though, these
3699 libraries cannot be found and we use @code{CAML_LD_LIBRARY_PATH}. This
3700 variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where
3701 @file{.so} libraries should be installed.
3702 @end defvr
3703
3704 @defvr {Scheme Variable} python-build-system
3705 This variable is exported by @code{(guix build-system python)}. It
3706 implements the more or less standard build procedure used by Python
3707 packages, which consists in running @code{python setup.py build} and
3708 then @code{python setup.py install --prefix=/gnu/store/@dots{}}.
3709
3710 For packages that install stand-alone Python programs under @code{bin/},
3711 it takes care of wrapping these programs so that their @code{PYTHONPATH}
3712 environment variable points to all the Python libraries they depend on.
3713
3714 Which Python package is used to perform the build can be specified with
3715 the @code{#:python} parameter. This is a useful way to force a package
3716 to be built for a specific version of the Python interpreter, which
3717 might be necessary if the package is only compatible with a single
3718 interpreter version.
3719
3720 By default guix calls @code{setup.py} under control of
3721 @code{setuptools}, much like @command{pip} does. Some packages are not
3722 compatible with setuptools (and pip), thus you can disable this by
3723 setting the @code{#:use-setuptools} parameter to @code{#f}.
3724 @end defvr
3725
3726 @defvr {Scheme Variable} perl-build-system
3727 This variable is exported by @code{(guix build-system perl)}. It
3728 implements the standard build procedure for Perl packages, which either
3729 consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}},
3730 followed by @code{Build} and @code{Build install}; or in running
3731 @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by
3732 @code{make} and @code{make install}, depending on which of
3733 @code{Build.PL} or @code{Makefile.PL} is present in the package
3734 distribution. Preference is given to the former if both @code{Build.PL}
3735 and @code{Makefile.PL} exist in the package distribution. This
3736 preference can be reversed by specifying @code{#t} for the
3737 @code{#:make-maker?} parameter.
3738
3739 The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation
3740 passes flags specified by the @code{#:make-maker-flags} or
3741 @code{#:module-build-flags} parameter, respectively.
3742
3743 Which Perl package is used can be specified with @code{#:perl}.
3744 @end defvr
3745
3746 @defvr {Scheme Variable} r-build-system
3747 This variable is exported by @code{(guix build-system r)}. It
3748 implements the build procedure used by @uref{http://r-project.org, R}
3749 packages, which essentially is little more than running @code{R CMD
3750 INSTALL --library=/gnu/store/@dots{}} in an environment where
3751 @code{R_LIBS_SITE} contains the paths to all R package inputs. Tests
3752 are run after installation using the R function
3753 @code{tools::testInstalledPackage}.
3754 @end defvr
3755
3756 @defvr {Scheme Variable} texlive-build-system
3757 This variable is exported by @code{(guix build-system texlive)}. It is
3758 used to build TeX packages in batch mode with a specified engine. The
3759 build system sets the @code{TEXINPUTS} variable to find all TeX source
3760 files in the inputs.
3761
3762 By default it runs @code{luatex} on all files ending on @code{ins}. A
3763 different engine and format can be specified with the
3764 @code{#:tex-format} argument. Different build targets can be specified
3765 with the @code{#:build-targets} argument, which expects a list of file
3766 names. The build system adds only @code{texlive-bin} and
3767 @code{texlive-latex-base} (both from @code{(gnu packages tex}) to the
3768 inputs. Both can be overridden with the arguments @code{#:texlive-bin}
3769 and @code{#:texlive-latex-base}, respectively.
3770
3771 The @code{#:tex-directory} parameter tells the build system where to
3772 install the built files under the texmf tree.
3773 @end defvr
3774
3775 @defvr {Scheme Variable} ruby-build-system
3776 This variable is exported by @code{(guix build-system ruby)}. It
3777 implements the RubyGems build procedure used by Ruby packages, which
3778 involves running @code{gem build} followed by @code{gem install}.
3779
3780 The @code{source} field of a package that uses this build system
3781 typically references a gem archive, since this is the format that Ruby
3782 developers use when releasing their software. The build system unpacks
3783 the gem archive, potentially patches the source, runs the test suite,
3784 repackages the gem, and installs it. Additionally, directories and
3785 tarballs may be referenced to allow building unreleased gems from Git or
3786 a traditional source release tarball.
3787
3788 Which Ruby package is used can be specified with the @code{#:ruby}
3789 parameter. A list of additional flags to be passed to the @command{gem}
3790 command can be specified with the @code{#:gem-flags} parameter.
3791 @end defvr
3792
3793 @defvr {Scheme Variable} waf-build-system
3794 This variable is exported by @code{(guix build-system waf)}. It
3795 implements a build procedure around the @code{waf} script. The common
3796 phases---@code{configure}, @code{build}, and @code{install}---are
3797 implemented by passing their names as arguments to the @code{waf}
3798 script.
3799
3800 The @code{waf} script is executed by the Python interpreter. Which
3801 Python package is used to run the script can be specified with the
3802 @code{#:python} parameter.
3803 @end defvr
3804
3805 @defvr {Scheme Variable} haskell-build-system
3806 This variable is exported by @code{(guix build-system haskell)}. It
3807 implements the Cabal build procedure used by Haskell packages, which
3808 involves running @code{runhaskell Setup.hs configure
3809 --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}.
3810 Instead of installing the package by running @code{runhaskell Setup.hs
3811 install}, to avoid trying to register libraries in the read-only
3812 compiler store directory, the build system uses @code{runhaskell
3813 Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In
3814 addition, the build system generates the package documentation by
3815 running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f}
3816 is passed. Optional Haddock parameters can be passed with the help of
3817 the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is
3818 not found, the build system looks for @code{Setup.lhs} instead.
3819
3820 Which Haskell compiler is used can be specified with the @code{#:haskell}
3821 parameter which defaults to @code{ghc}.
3822 @end defvr
3823
3824 @defvr {Scheme Variable} dub-build-system
3825 This variable is exported by @code{(guix build-system dub)}. It
3826 implements the Dub build procedure used by D packages, which
3827 involves running @code{dub build} and @code{dub run}.
3828 Installation is done by copying the files manually.
3829
3830 Which D compiler is used can be specified with the @code{#:ldc}
3831 parameter which defaults to @code{ldc}.
3832 @end defvr
3833
3834 @defvr {Scheme Variable} emacs-build-system
3835 This variable is exported by @code{(guix build-system emacs)}. It
3836 implements an installation procedure similar to the packaging system
3837 of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
3838
3839 It first creates the @code{@var{package}-autoloads.el} file, then it
3840 byte compiles all Emacs Lisp files. Differently from the Emacs
3841 packaging system, the Info documentation files are moved to the standard
3842 documentation directory and the @file{dir} file is deleted. Each
3843 package is installed in its own directory under
3844 @file{share/emacs/site-lisp/guix.d}.
3845 @end defvr
3846
3847 @defvr {Scheme Variable} font-build-system
3848 This variable is exported by @code{(guix build-system font)}. It
3849 implements an installation procedure for font packages where upstream
3850 provides pre-compiled TrueType, OpenType, etc. font files that merely
3851 need to be copied into place. It copies font files to standard
3852 locations in the output directory.
3853 @end defvr
3854
3855 @defvr {Scheme Variable} meson-build-system
3856 This variable is exported by @code{(guix build-system meson)}. It
3857 implements the build procedure for packages that use
3858 @url{http://mesonbuild.com, Meson} as their build system.
3859
3860 It adds both Meson and @uref{https://ninja-build.org/, Ninja} to the set
3861 of inputs, and they can be changed with the parameters @code{#:meson}
3862 and @code{#:ninja} if needed. The default Meson is
3863 @code{meson-for-build}, which is special because it doesn't clear the
3864 @code{RUNPATH} of binaries and libraries when they are installed.
3865
3866 This build system is an extension of @var{gnu-build-system}, but with the
3867 following phases changed to some specific for Meson:
3868
3869 @table @code
3870
3871 @item configure
3872 The phase runs @code{meson} with the flags specified in
3873 @code{#:configure-flags}. The flag @code{--build-type} is always set to
3874 @code{plain} unless something else is specified in @code{#:build-type}.
3875
3876 @item build
3877 The phase runs @code{ninja} to build the package in parallel by default, but
3878 this can be changed with @code{#:parallel-build?}.
3879
3880 @item check
3881 The phase runs @code{ninja} with the target specified in @code{#:test-target},
3882 which is @code{"test"} by default.
3883
3884 @item install
3885 The phase runs @code{ninja install} and can not be changed.
3886 @end table
3887
3888 Apart from that, the build system also adds the following phases:
3889
3890 @table @code
3891
3892 @item fix-runpath
3893 This phase tries to locate the local directories in the package being build,
3894 which has libraries that some of the binaries need. If any are found, they will
3895 be added to the programs @code{RUNPATH}. It is needed because
3896 @code{meson-for-build} keeps the @code{RUNPATH} of binaries and libraries from
3897 when they are build, but often that is not the @code{RUNPATH} we want.
3898 Therefor it is also shrinked to the minimum needed by the program.
3899
3900 @item glib-or-gtk-wrap
3901 This phase is the phase provided by @code{glib-or-gtk-build-system}, and it
3902 is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}.
3903
3904 @item glib-or-gtk-compile-schemas
3905 This phase is the phase provided by @code{glib-or-gtk-build-system}, and it
3906 is not enabled by default. It can be enabled with @code{#:glib-or-gtk?}.
3907 @end table
3908 @end defvr
3909
3910 Lastly, for packages that do not need anything as sophisticated, a
3911 ``trivial'' build system is provided. It is trivial in the sense that
3912 it provides basically no support: it does not pull any implicit inputs,
3913 and does not have a notion of build phases.
3914
3915 @defvr {Scheme Variable} trivial-build-system
3916 This variable is exported by @code{(guix build-system trivial)}.
3917
3918 This build system requires a @code{#:builder} argument. This argument
3919 must be a Scheme expression that builds the package output(s)---as
3920 with @code{build-expression->derivation} (@pxref{Derivations,
3921 @code{build-expression->derivation}}).
3922 @end defvr
3923
3924 @node The Store
3925 @section The Store
3926
3927 @cindex store
3928 @cindex store items
3929 @cindex store paths
3930
3931 Conceptually, the @dfn{store} is the place where derivations that have
3932 been built successfully are stored---by default, @file{/gnu/store}.
3933 Sub-directories in the store are referred to as @dfn{store items} or
3934 sometimes @dfn{store paths}. The store has an associated database that
3935 contains information such as the store paths referred to by each store
3936 path, and the list of @emph{valid} store items---results of successful
3937 builds. This database resides in @file{@var{localstatedir}/guix/db},
3938 where @var{localstatedir} is the state directory specified @i{via}
3939 @option{--localstatedir} at configure time, usually @file{/var}.
3940
3941 The store is @emph{always} accessed by the daemon on behalf of its clients
3942 (@pxref{Invoking guix-daemon}). To manipulate the store, clients
3943 connect to the daemon over a Unix-domain socket, send requests to it,
3944 and read the result---these are remote procedure calls, or RPCs.
3945
3946 @quotation Note
3947 Users must @emph{never} modify files under @file{/gnu/store} directly.
3948 This would lead to inconsistencies and break the immutability
3949 assumptions of Guix's functional model (@pxref{Introduction}).
3950
3951 @xref{Invoking guix gc, @command{guix gc --verify}}, for information on
3952 how to check the integrity of the store and attempt recovery from
3953 accidental modifications.
3954 @end quotation
3955
3956 The @code{(guix store)} module provides procedures to connect to the
3957 daemon, and to perform RPCs. These are described below. By default,
3958 @code{open-connection}, and thus all the @command{guix} commands,
3959 connect to the local daemon or to the URI specified by the
3960 @code{GUIX_DAEMON_SOCKET} environment variable.
3961
3962 @defvr {Environment Variable} GUIX_DAEMON_SOCKET
3963 When set, the value of this variable should be a file name or a URI
3964 designating the daemon endpoint. When it is a file name, it denotes a
3965 Unix-domain socket to connect to. In addition to file names, the
3966 supported URI schemes are:
3967
3968 @table @code
3969 @item file
3970 @itemx unix
3971 These are for Unix-domain sockets.
3972 @code{file:///var/guix/daemon-socket/socket} is equivalent to
3973 @file{/var/guix/daemon-socket/socket}.
3974
3975 @item guix
3976 @cindex daemon, remote access
3977 @cindex remote access to the daemon
3978 @cindex daemon, cluster setup
3979 @cindex clusters, daemon setup
3980 These URIs denote connections over TCP/IP, without encryption nor
3981 authentication of the remote host. The URI must specify the host name
3982 and optionally a port number (by default port 44146 is used):
3983
3984 @example
3985 guix://master.guix.example.org:1234
3986 @end example
3987
3988 This setup is suitable on local networks, such as clusters, where only
3989 trusted nodes may connect to the build daemon at
3990 @code{master.guix.example.org}.
3991
3992 The @code{--listen} option of @command{guix-daemon} can be used to
3993 instruct it to listen for TCP connections (@pxref{Invoking guix-daemon,
3994 @code{--listen}}).
3995
3996 @item ssh
3997 @cindex SSH access to build daemons
3998 These URIs allow you to connect to a remote daemon over
3999 SSH@footnote{This feature requires Guile-SSH (@pxref{Requirements}).}.
4000 A typical URL might look like this:
4001
4002 @example
4003 ssh://charlie@@guix.example.org:22
4004 @end example
4005
4006 As for @command{guix copy}, the usual OpenSSH client configuration files
4007 are honored (@pxref{Invoking guix copy}).
4008 @end table
4009
4010 Additional URI schemes may be supported in the future.
4011
4012 @c XXX: Remove this note when the protocol incurs fewer round trips
4013 @c and when (guix derivations) no longer relies on file system access.
4014 @quotation Note
4015 The ability to connect to remote build daemons is considered
4016 experimental as of @value{VERSION}. Please get in touch with us to
4017 share any problems or suggestions you may have (@pxref{Contributing}).
4018 @end quotation
4019 @end defvr
4020
4021 @deffn {Scheme Procedure} open-connection [@var{uri}] [#:reserve-space? #t]
4022 Connect to the daemon over the Unix-domain socket at @var{uri} (a string). When
4023 @var{reserve-space?} is true, instruct it to reserve a little bit of
4024 extra space on the file system so that the garbage collector can still
4025 operate should the disk become full. Return a server object.
4026
4027 @var{file} defaults to @var{%default-socket-path}, which is the normal
4028 location given the options that were passed to @command{configure}.
4029 @end deffn
4030
4031 @deffn {Scheme Procedure} close-connection @var{server}
4032 Close the connection to @var{server}.
4033 @end deffn
4034
4035 @defvr {Scheme Variable} current-build-output-port
4036 This variable is bound to a SRFI-39 parameter, which refers to the port
4037 where build and error logs sent by the daemon should be written.
4038 @end defvr
4039
4040 Procedures that make RPCs all take a server object as their first
4041 argument.
4042
4043 @deffn {Scheme Procedure} valid-path? @var{server} @var{path}
4044 @cindex invalid store items
4045 Return @code{#t} when @var{path} designates a valid store item and
4046 @code{#f} otherwise (an invalid item may exist on disk but still be
4047 invalid, for instance because it is the result of an aborted or failed
4048 build.)
4049
4050 A @code{&nix-protocol-error} condition is raised if @var{path} is not
4051 prefixed by the store directory (@file{/gnu/store}).
4052 @end deffn
4053
4054 @deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]
4055 Add @var{text} under file @var{name} in the store, and return its store
4056 path. @var{references} is the list of store paths referred to by the
4057 resulting store path.
4058 @end deffn
4059
4060 @deffn {Scheme Procedure} build-derivations @var{server} @var{derivations}
4061 Build @var{derivations} (a list of @code{<derivation>} objects or
4062 derivation paths), and return when the worker is done building them.
4063 Return @code{#t} on success.
4064 @end deffn
4065
4066 Note that the @code{(guix monads)} module provides a monad as well as
4067 monadic versions of the above procedures, with the goal of making it
4068 more convenient to work with code that accesses the store (@pxref{The
4069 Store Monad}).
4070
4071 @c FIXME
4072 @i{This section is currently incomplete.}
4073
4074 @node Derivations
4075 @section Derivations
4076
4077 @cindex derivations
4078 Low-level build actions and the environment in which they are performed
4079 are represented by @dfn{derivations}. A derivation contains the
4080 following pieces of information:
4081
4082 @itemize
4083 @item
4084 The outputs of the derivation---derivations produce at least one file or
4085 directory in the store, but may produce more.
4086
4087 @item
4088 The inputs of the derivations, which may be other derivations or plain
4089 files in the store (patches, build scripts, etc.)
4090
4091 @item
4092 The system type targeted by the derivation---e.g., @code{x86_64-linux}.
4093
4094 @item
4095 The file name of a build script in the store, along with the arguments
4096 to be passed.
4097
4098 @item
4099 A list of environment variables to be defined.
4100
4101 @end itemize
4102
4103 @cindex derivation path
4104 Derivations allow clients of the daemon to communicate build actions to
4105 the store. They exist in two forms: as an in-memory representation,
4106 both on the client- and daemon-side, and as files in the store whose
4107 name end in @code{.drv}---these files are referred to as @dfn{derivation
4108 paths}. Derivations paths can be passed to the @code{build-derivations}
4109 procedure to perform the build actions they prescribe (@pxref{The
4110 Store}).
4111
4112 The @code{(guix derivations)} module provides a representation of
4113 derivations as Scheme objects, along with procedures to create and
4114 otherwise manipulate derivations. The lowest-level primitive to create
4115 a derivation is the @code{derivation} procedure:
4116
4117 @deffn {Scheme Procedure} derivation @var{store} @var{name} @var{builder} @
4118 @var{args} [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
4119 [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @
4120 [#:system (%current-system)] [#:references-graphs #f] @
4121 [#:allowed-references #f] [#:disallowed-references #f] @
4122 [#:leaked-env-vars #f] [#:local-build? #f] @
4123 [#:substitutable? #t]
4124 Build a derivation with the given arguments, and return the resulting
4125 @code{<derivation>} object.
4126
4127 When @var{hash} and @var{hash-algo} are given, a
4128 @dfn{fixed-output derivation} is created---i.e., one whose result is
4129 known in advance, such as a file download. If, in addition,
4130 @var{recursive?} is true, then that fixed output may be an executable
4131 file or a directory and @var{hash} must be the hash of an archive
4132 containing this output.
4133
4134 When @var{references-graphs} is true, it must be a list of file
4135 name/store path pairs. In that case, the reference graph of each store
4136 path is exported in the build environment in the corresponding file, in
4137 a simple text format.
4138
4139 When @var{allowed-references} is true, it must be a list of store items
4140 or outputs that the derivation's output may refer to. Likewise,
4141 @var{disallowed-references}, if true, must be a list of things the
4142 outputs may @emph{not} refer to.
4143
4144 When @var{leaked-env-vars} is true, it must be a list of strings
4145 denoting environment variables that are allowed to ``leak'' from the
4146 daemon's environment to the build environment. This is only applicable
4147 to fixed-output derivations---i.e., when @var{hash} is true. The main
4148 use is to allow variables such as @code{http_proxy} to be passed to
4149 derivations that download files.
4150
4151 When @var{local-build?} is true, declare that the derivation is not a
4152 good candidate for offloading and should rather be built locally
4153 (@pxref{Daemon Offload Setup}). This is the case for small derivations
4154 where the costs of data transfers would outweigh the benefits.
4155
4156 When @var{substitutable?} is false, declare that substitutes of the
4157 derivation's output should not be used (@pxref{Substitutes}). This is
4158 useful, for instance, when building packages that capture details of the
4159 host CPU instruction set.
4160 @end deffn
4161
4162 @noindent
4163 Here's an example with a shell script as its builder, assuming
4164 @var{store} is an open connection to the daemon, and @var{bash} points
4165 to a Bash executable in the store:
4166
4167 @lisp
4168 (use-modules (guix utils)
4169 (guix store)
4170 (guix derivations))
4171
4172 (let ((builder ; add the Bash script to the store
4173 (add-text-to-store store "my-builder.sh"
4174 "echo hello world > $out\n" '())))
4175 (derivation store "foo"
4176 bash `("-e" ,builder)
4177 #:inputs `((,bash) (,builder))
4178 #:env-vars '(("HOME" . "/homeless"))))
4179 @result{} #<derivation /gnu/store/@dots{}-foo.drv => /gnu/store/@dots{}-foo>
4180 @end lisp
4181
4182 As can be guessed, this primitive is cumbersome to use directly. A
4183 better approach is to write build scripts in Scheme, of course! The
4184 best course of action for that is to write the build code as a
4185 ``G-expression'', and to pass it to @code{gexp->derivation}. For more
4186 information, @pxref{G-Expressions}.
4187
4188 Once upon a time, @code{gexp->derivation} did not exist and constructing
4189 derivations with build code written in Scheme was achieved with
4190 @code{build-expression->derivation}, documented below. This procedure
4191 is now deprecated in favor of the much nicer @code{gexp->derivation}.
4192
4193 @deffn {Scheme Procedure} build-expression->derivation @var{store} @
4194 @var{name} @var{exp} @
4195 [#:system (%current-system)] [#:inputs '()] @
4196 [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
4197 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
4198 [#:references-graphs #f] [#:allowed-references #f] @
4199 [#:disallowed-references #f] @
4200 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
4201 Return a derivation that executes Scheme expression @var{exp} as a
4202 builder for derivation @var{name}. @var{inputs} must be a list of
4203 @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted,
4204 @code{"out"} is assumed. @var{modules} is a list of names of Guile
4205 modules from the current search path to be copied in the store,
4206 compiled, and made available in the load path during the execution of
4207 @var{exp}---e.g., @code{((guix build utils) (guix build
4208 gnu-build-system))}.
4209
4210 @var{exp} is evaluated in an environment where @code{%outputs} is bound
4211 to a list of output/path pairs, and where @code{%build-inputs} is bound
4212 to a list of string/output-path pairs made from @var{inputs}.
4213 Optionally, @var{env-vars} is a list of string pairs specifying the name
4214 and value of environment variables visible to the builder. The builder
4215 terminates by passing the result of @var{exp} to @code{exit}; thus, when
4216 @var{exp} returns @code{#f}, the build is considered to have failed.
4217
4218 @var{exp} is built using @var{guile-for-build} (a derivation). When
4219 @var{guile-for-build} is omitted or is @code{#f}, the value of the
4220 @code{%guile-for-build} fluid is used instead.
4221
4222 See the @code{derivation} procedure for the meaning of
4223 @var{references-graphs}, @var{allowed-references},
4224 @var{disallowed-references}, @var{local-build?}, and
4225 @var{substitutable?}.
4226 @end deffn
4227
4228 @noindent
4229 Here's an example of a single-output derivation that creates a directory
4230 containing one file:
4231
4232 @lisp
4233 (let ((builder '(let ((out (assoc-ref %outputs "out")))
4234 (mkdir out) ; create /gnu/store/@dots{}-goo
4235 (call-with-output-file (string-append out "/test")
4236 (lambda (p)
4237 (display '(hello guix) p))))))
4238 (build-expression->derivation store "goo" builder))
4239
4240 @result{} #<derivation /gnu/store/@dots{}-goo.drv => @dots{}>
4241 @end lisp
4242
4243
4244 @node The Store Monad
4245 @section The Store Monad
4246
4247 @cindex monad
4248
4249 The procedures that operate on the store described in the previous
4250 sections all take an open connection to the build daemon as their first
4251 argument. Although the underlying model is functional, they either have
4252 side effects or depend on the current state of the store.
4253
4254 The former is inconvenient: the connection to the build daemon has to be
4255 carried around in all those functions, making it impossible to compose
4256 functions that do not take that parameter with functions that do. The
4257 latter can be problematic: since store operations have side effects
4258 and/or depend on external state, they have to be properly sequenced.
4259
4260 @cindex monadic values
4261 @cindex monadic functions
4262 This is where the @code{(guix monads)} module comes in. This module
4263 provides a framework for working with @dfn{monads}, and a particularly
4264 useful monad for our uses, the @dfn{store monad}. Monads are a
4265 construct that allows two things: associating ``context'' with values
4266 (in our case, the context is the store), and building sequences of
4267 computations (here computations include accesses to the store). Values
4268 in a monad---values that carry this additional context---are called
4269 @dfn{monadic values}; procedures that return such values are called
4270 @dfn{monadic procedures}.
4271
4272 Consider this ``normal'' procedure:
4273
4274 @example
4275 (define (sh-symlink store)
4276 ;; Return a derivation that symlinks the 'bash' executable.
4277 (let* ((drv (package-derivation store bash))
4278 (out (derivation->output-path drv))
4279 (sh (string-append out "/bin/bash")))
4280 (build-expression->derivation store "sh"
4281 `(symlink ,sh %output))))
4282 @end example
4283
4284 Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten
4285 as a monadic function:
4286
4287 @example
4288 (define (sh-symlink)
4289 ;; Same, but return a monadic value.
4290 (mlet %store-monad ((drv (package->derivation bash)))
4291 (gexp->derivation "sh"
4292 #~(symlink (string-append #$drv "/bin/bash")
4293 #$output))))
4294 @end example
4295
4296 There are several things to note in the second version: the @code{store}
4297 parameter is now implicit and is ``threaded'' in the calls to the
4298 @code{package->derivation} and @code{gexp->derivation} monadic
4299 procedures, and the monadic value returned by @code{package->derivation}
4300 is @dfn{bound} using @code{mlet} instead of plain @code{let}.
4301
4302 As it turns out, the call to @code{package->derivation} can even be
4303 omitted since it will take place implicitly, as we will see later
4304 (@pxref{G-Expressions}):
4305
4306 @example
4307 (define (sh-symlink)
4308 (gexp->derivation "sh"
4309 #~(symlink (string-append #$bash "/bin/bash")
4310 #$output)))
4311 @end example
4312
4313 @c See
4314 @c <https://syntaxexclamation.wordpress.com/2014/06/26/escaping-continuations/>
4315 @c for the funny quote.
4316 Calling the monadic @code{sh-symlink} has no effect. As someone once
4317 said, ``you exit a monad like you exit a building on fire: by running''.
4318 So, to exit the monad and get the desired effect, one must use
4319 @code{run-with-store}:
4320
4321 @example
4322 (run-with-store (open-connection) (sh-symlink))
4323 @result{} /gnu/store/...-sh-symlink
4324 @end example
4325
4326 Note that the @code{(guix monad-repl)} module extends the Guile REPL with
4327 new ``meta-commands'' to make it easier to deal with monadic procedures:
4328 @code{run-in-store}, and @code{enter-store-monad}. The former is used
4329 to ``run'' a single monadic value through the store:
4330
4331 @example
4332 scheme@@(guile-user)> ,run-in-store (package->derivation hello)
4333 $1 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
4334 @end example
4335
4336 The latter enters a recursive REPL, where all the return values are
4337 automatically run through the store:
4338
4339 @example
4340 scheme@@(guile-user)> ,enter-store-monad
4341 store-monad@@(guile-user) [1]> (package->derivation hello)
4342 $2 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
4343 store-monad@@(guile-user) [1]> (text-file "foo" "Hello!")
4344 $3 = "/gnu/store/@dots{}-foo"
4345 store-monad@@(guile-user) [1]> ,q
4346 scheme@@(guile-user)>
4347 @end example
4348
4349 @noindent
4350 Note that non-monadic values cannot be returned in the
4351 @code{store-monad} REPL.
4352
4353 The main syntactic forms to deal with monads in general are provided by
4354 the @code{(guix monads)} module and are described below.
4355
4356 @deffn {Scheme Syntax} with-monad @var{monad} @var{body} ...
4357 Evaluate any @code{>>=} or @code{return} forms in @var{body} as being
4358 in @var{monad}.
4359 @end deffn
4360
4361 @deffn {Scheme Syntax} return @var{val}
4362 Return a monadic value that encapsulates @var{val}.
4363 @end deffn
4364
4365 @deffn {Scheme Syntax} >>= @var{mval} @var{mproc} ...
4366 @dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic
4367 procedures @var{mproc}@dots{}@footnote{This operation is commonly
4368 referred to as ``bind'', but that name denotes an unrelated procedure in
4369 Guile. Thus we use this somewhat cryptic symbol inherited from the
4370 Haskell language.}. There can be one @var{mproc} or several of them, as
4371 in this example:
4372
4373 @example
4374 (run-with-state
4375 (with-monad %state-monad
4376 (>>= (return 1)
4377 (lambda (x) (return (+ 1 x)))
4378 (lambda (x) (return (* 2 x)))))
4379 'some-state)
4380
4381 @result{} 4
4382 @result{} some-state
4383 @end example
4384 @end deffn
4385
4386 @deffn {Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @
4387 @var{body} ...
4388 @deffnx {Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @
4389 @var{body} ...
4390 Bind the variables @var{var} to the monadic values @var{mval} in
4391 @var{body}, which is a sequence of expressions. As with the bind
4392 operator, this can be thought of as ``unpacking'' the raw, non-monadic
4393 value ``contained'' in @var{mval} and making @var{var} refer to that
4394 raw, non-monadic value within the scope of the @var{body}. The form
4395 (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value
4396 @var{val}, as per @code{let}. The binding operations occur in sequence
4397 from left to right. The last expression of @var{body} must be a monadic
4398 expression, and its result will become the result of the @code{mlet} or
4399 @code{mlet*} when run in the @var{monad}.
4400
4401 @code{mlet*} is to @code{mlet} what @code{let*} is to @code{let}
4402 (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}).
4403 @end deffn
4404
4405 @deffn {Scheme System} mbegin @var{monad} @var{mexp} ...
4406 Bind @var{mexp} and the following monadic expressions in sequence,
4407 returning the result of the last expression. Every expression in the
4408 sequence must be a monadic expression.
4409
4410 This is akin to @code{mlet}, except that the return values of the
4411 monadic expressions are ignored. In that sense, it is analogous to
4412 @code{begin}, but applied to monadic expressions.
4413 @end deffn
4414
4415 @deffn {Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ...
4416 When @var{condition} is true, evaluate the sequence of monadic
4417 expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When
4418 @var{condition} is false, return @code{*unspecified*} in the current
4419 monad. Every expression in the sequence must be a monadic expression.
4420 @end deffn
4421
4422 @deffn {Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ...
4423 When @var{condition} is false, evaluate the sequence of monadic
4424 expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When
4425 @var{condition} is true, return @code{*unspecified*} in the current
4426 monad. Every expression in the sequence must be a monadic expression.
4427 @end deffn
4428
4429 @cindex state monad
4430 The @code{(guix monads)} module provides the @dfn{state monad}, which
4431 allows an additional value---the state---to be @emph{threaded} through
4432 monadic procedure calls.
4433
4434 @defvr {Scheme Variable} %state-monad
4435 The state monad. Procedures in the state monad can access and change
4436 the state that is threaded.
4437
4438 Consider the example below. The @code{square} procedure returns a value
4439 in the state monad. It returns the square of its argument, but also
4440 increments the current state value:
4441
4442 @example
4443 (define (square x)
4444 (mlet %state-monad ((count (current-state)))
4445 (mbegin %state-monad
4446 (set-current-state (+ 1 count))
4447 (return (* x x)))))
4448
4449 (run-with-state (sequence %state-monad (map square (iota 3))) 0)
4450 @result{} (0 1 4)
4451 @result{} 3
4452 @end example
4453
4454 When ``run'' through @var{%state-monad}, we obtain that additional state
4455 value, which is the number of @code{square} calls.
4456 @end defvr
4457
4458 @deffn {Monadic Procedure} current-state
4459 Return the current state as a monadic value.
4460 @end deffn
4461
4462 @deffn {Monadic Procedure} set-current-state @var{value}
4463 Set the current state to @var{value} and return the previous state as a
4464 monadic value.
4465 @end deffn
4466
4467 @deffn {Monadic Procedure} state-push @var{value}
4468 Push @var{value} to the current state, which is assumed to be a list,
4469 and return the previous state as a monadic value.
4470 @end deffn
4471
4472 @deffn {Monadic Procedure} state-pop
4473 Pop a value from the current state and return it as a monadic value.
4474 The state is assumed to be a list.
4475 @end deffn
4476
4477 @deffn {Scheme Procedure} run-with-state @var{mval} [@var{state}]
4478 Run monadic value @var{mval} starting with @var{state} as the initial
4479 state. Return two values: the resulting value, and the resulting state.
4480 @end deffn
4481
4482 The main interface to the store monad, provided by the @code{(guix
4483 store)} module, is as follows.
4484
4485 @defvr {Scheme Variable} %store-monad
4486 The store monad---an alias for @var{%state-monad}.
4487
4488 Values in the store monad encapsulate accesses to the store. When its
4489 effect is needed, a value of the store monad must be ``evaluated'' by
4490 passing it to the @code{run-with-store} procedure (see below.)
4491 @end defvr
4492
4493 @deffn {Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]
4494 Run @var{mval}, a monadic value in the store monad, in @var{store}, an
4495 open store connection.
4496 @end deffn
4497
4498 @deffn {Monadic Procedure} text-file @var{name} @var{text} [@var{references}]
4499 Return as a monadic value the absolute file name in the store of the file
4500 containing @var{text}, a string. @var{references} is a list of store items that the
4501 resulting text file refers to; it defaults to the empty list.
4502 @end deffn
4503
4504 @deffn {Monadic Procedure} interned-file @var{file} [@var{name}] @
4505 [#:recursive? #t] [#:select? (const #t)]
4506 Return the name of @var{file} once interned in the store. Use
4507 @var{name} as its store name, or the basename of @var{file} if
4508 @var{name} is omitted.
4509
4510 When @var{recursive?} is true, the contents of @var{file} are added
4511 recursively; if @var{file} designates a flat file and @var{recursive?}
4512 is true, its contents are added, and its permission bits are kept.
4513
4514 When @var{recursive?} is true, call @code{(@var{select?} @var{file}
4515 @var{stat})} for each directory entry, where @var{file} is the entry's
4516 absolute file name and @var{stat} is the result of @code{lstat}; exclude
4517 entries for which @var{select?} does not return true.
4518
4519 The example below adds a file to the store, under two different names:
4520
4521 @example
4522 (run-with-store (open-connection)
4523 (mlet %store-monad ((a (interned-file "README"))
4524 (b (interned-file "README" "LEGU-MIN")))
4525 (return (list a b))))
4526
4527 @result{} ("/gnu/store/rwm@dots{}-README" "/gnu/store/44i@dots{}-LEGU-MIN")
4528 @end example
4529
4530 @end deffn
4531
4532 The @code{(guix packages)} module exports the following package-related
4533 monadic procedures:
4534
4535 @deffn {Monadic Procedure} package-file @var{package} [@var{file}] @
4536 [#:system (%current-system)] [#:target #f] @
4537 [#:output "out"]
4538 Return as a monadic
4539 value in the absolute file name of @var{file} within the @var{output}
4540 directory of @var{package}. When @var{file} is omitted, return the name
4541 of the @var{output} directory of @var{package}. When @var{target} is
4542 true, use it as a cross-compilation target triplet.
4543 @end deffn
4544
4545 @deffn {Monadic Procedure} package->derivation @var{package} [@var{system}]
4546 @deffnx {Monadic Procedure} package->cross-derivation @var{package} @
4547 @var{target} [@var{system}]
4548 Monadic version of @code{package-derivation} and
4549 @code{package-cross-derivation} (@pxref{Defining Packages}).
4550 @end deffn
4551
4552
4553 @node G-Expressions
4554 @section G-Expressions
4555
4556 @cindex G-expression
4557 @cindex build code quoting
4558 So we have ``derivations'', which represent a sequence of build actions
4559 to be performed to produce an item in the store (@pxref{Derivations}).
4560 These build actions are performed when asking the daemon to actually
4561 build the derivations; they are run by the daemon in a container
4562 (@pxref{Invoking guix-daemon}).
4563
4564 @cindex strata of code
4565 It should come as no surprise that we like to write these build actions
4566 in Scheme. When we do that, we end up with two @dfn{strata} of Scheme
4567 code@footnote{The term @dfn{stratum} in this context was coined by
4568 Manuel Serrano et al.@: in the context of their work on Hop. Oleg
4569 Kiselyov, who has written insightful
4570 @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code
4571 on this topic}, refers to this kind of code generation as
4572 @dfn{staging}.}: the ``host code''---code that defines packages, talks
4573 to the daemon, etc.---and the ``build code''---code that actually
4574 performs build actions, such as making directories, invoking
4575 @command{make}, etc.
4576
4577 To describe a derivation and its build actions, one typically needs to
4578 embed build code inside host code. It boils down to manipulating build
4579 code as data, and the homoiconicity of Scheme---code has a direct
4580 representation as data---comes in handy for that. But we need more than
4581 the normal @code{quasiquote} mechanism in Scheme to construct build
4582 expressions.
4583
4584 The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of
4585 S-expressions adapted to build expressions. G-expressions, or
4586 @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp},
4587 @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~},
4588 @code{#$}, and @code{#$@@}), which are comparable to
4589 @code{quasiquote}, @code{unquote}, and @code{unquote-splicing},
4590 respectively (@pxref{Expression Syntax, @code{quasiquote},, guile,
4591 GNU Guile Reference Manual}). However, there are major differences:
4592
4593 @itemize
4594 @item
4595 Gexps are meant to be written to a file and run or manipulated by other
4596 processes.
4597
4598 @item
4599 When a high-level object such as a package or derivation is unquoted
4600 inside a gexp, the result is as if its output file name had been
4601 introduced.
4602
4603 @item
4604 Gexps carry information about the packages or derivations they refer to,
4605 and these dependencies are automatically added as inputs to the build
4606 processes that use them.
4607 @end itemize
4608
4609 @cindex lowering, of high-level objects in gexps
4610 This mechanism is not limited to package and derivation
4611 objects: @dfn{compilers} able to ``lower'' other high-level objects to
4612 derivations or files in the store can be defined,
4613 such that these objects can also be inserted
4614 into gexps. For example, a useful type of high-level objects that can be
4615 inserted in a gexp is ``file-like objects'', which make it easy to
4616 add files to the store and to refer to them in
4617 derivations and such (see @code{local-file} and @code{plain-file}
4618 below.)
4619
4620 To illustrate the idea, here is an example of a gexp:
4621
4622 @example
4623 (define build-exp
4624 #~(begin
4625 (mkdir #$output)
4626 (chdir #$output)
4627 (symlink (string-append #$coreutils "/bin/ls")
4628 "list-files")))
4629 @end example
4630
4631 This gexp can be passed to @code{gexp->derivation}; we obtain a
4632 derivation that builds a directory containing exactly one symlink to
4633 @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:
4634
4635 @example
4636 (gexp->derivation "the-thing" build-exp)
4637 @end example
4638
4639 As one would expect, the @code{"/gnu/store/@dots{}-coreutils-8.22"} string is
4640 substituted to the reference to the @var{coreutils} package in the
4641 actual build code, and @var{coreutils} is automatically made an input to
4642 the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp
4643 output)}) is replaced by a string containing the directory name of the
4644 output of the derivation.
4645
4646 @cindex cross compilation
4647 In a cross-compilation context, it is useful to distinguish between
4648 references to the @emph{native} build of a package---that can run on the
4649 host---versus references to cross builds of a package. To that end, the
4650 @code{#+} plays the same role as @code{#$}, but is a reference to a
4651 native package build:
4652
4653 @example
4654 (gexp->derivation "vi"
4655 #~(begin
4656 (mkdir #$output)
4657 (system* (string-append #+coreutils "/bin/ln")
4658 "-s"
4659 (string-append #$emacs "/bin/emacs")
4660 (string-append #$output "/bin/vi")))
4661 #:target "mips64el-linux-gnu")
4662 @end example
4663
4664 @noindent
4665 In the example above, the native build of @var{coreutils} is used, so
4666 that @command{ln} can actually run on the host; but then the
4667 cross-compiled build of @var{emacs} is referenced.
4668
4669 @cindex imported modules, for gexps
4670 @findex with-imported-modules
4671 Another gexp feature is @dfn{imported modules}: sometimes you want to be
4672 able to use certain Guile modules from the ``host environment'' in the
4673 gexp, so those modules should be imported in the ``build environment''.
4674 The @code{with-imported-modules} form allows you to express that:
4675
4676 @example
4677 (let ((build (with-imported-modules '((guix build utils))
4678 #~(begin
4679 (use-modules (guix build utils))
4680 (mkdir-p (string-append #$output "/bin"))))))
4681 (gexp->derivation "empty-dir"
4682 #~(begin
4683 #$build
4684 (display "success!\n")
4685 #t)))
4686 @end example
4687
4688 @noindent
4689 In this example, the @code{(guix build utils)} module is automatically
4690 pulled into the isolated build environment of our gexp, such that
4691 @code{(use-modules (guix build utils))} works as expected.
4692
4693 @cindex module closure
4694 @findex source-module-closure
4695 Usually you want the @emph{closure} of the module to be imported---i.e.,
4696 the module itself and all the modules it depends on---rather than just
4697 the module; failing to do that, attempts to use the module will fail
4698 because of missing dependent modules. The @code{source-module-closure}
4699 procedure computes the closure of a module by looking at its source file
4700 headers, which comes in handy in this case:
4701
4702 @example
4703 (use-modules (guix modules)) ;for 'source-module-closure'
4704
4705 (with-imported-modules (source-module-closure
4706 '((guix build utils)
4707 (gnu build vm)))
4708 (gexp->derivation "something-with-vms"
4709 #~(begin
4710 (use-modules (guix build utils)
4711 (gnu build vm))
4712 @dots{})))
4713 @end example
4714
4715 The syntactic form to construct gexps is summarized below.
4716
4717 @deffn {Scheme Syntax} #~@var{exp}
4718 @deffnx {Scheme Syntax} (gexp @var{exp})
4719 Return a G-expression containing @var{exp}. @var{exp} may contain one
4720 or more of the following forms:
4721
4722 @table @code
4723 @item #$@var{obj}
4724 @itemx (ungexp @var{obj})
4725 Introduce a reference to @var{obj}. @var{obj} may have one of the
4726 supported types, for example a package or a
4727 derivation, in which case the @code{ungexp} form is replaced by its
4728 output file name---e.g., @code{"/gnu/store/@dots{}-coreutils-8.22}.
4729
4730 If @var{obj} is a list, it is traversed and references to supported
4731 objects are substituted similarly.
4732
4733 If @var{obj} is another gexp, its contents are inserted and its
4734 dependencies are added to those of the containing gexp.
4735
4736 If @var{obj} is another kind of object, it is inserted as is.
4737
4738 @item #$@var{obj}:@var{output}
4739 @itemx (ungexp @var{obj} @var{output})
4740 This is like the form above, but referring explicitly to the
4741 @var{output} of @var{obj}---this is useful when @var{obj} produces
4742 multiple outputs (@pxref{Packages with Multiple Outputs}).
4743
4744 @item #+@var{obj}
4745 @itemx #+@var{obj}:output
4746 @itemx (ungexp-native @var{obj})
4747 @itemx (ungexp-native @var{obj} @var{output})
4748 Same as @code{ungexp}, but produces a reference to the @emph{native}
4749 build of @var{obj} when used in a cross compilation context.
4750
4751 @item #$output[:@var{output}]
4752 @itemx (ungexp output [@var{output}])
4753 Insert a reference to derivation output @var{output}, or to the main
4754 output when @var{output} is omitted.
4755
4756 This only makes sense for gexps passed to @code{gexp->derivation}.
4757
4758 @item #$@@@var{lst}
4759 @itemx (ungexp-splicing @var{lst})
4760 Like the above, but splices the contents of @var{lst} inside the
4761 containing list.
4762
4763 @item #+@@@var{lst}
4764 @itemx (ungexp-native-splicing @var{lst})
4765 Like the above, but refers to native builds of the objects listed in
4766 @var{lst}.
4767
4768 @end table
4769
4770 G-expressions created by @code{gexp} or @code{#~} are run-time objects
4771 of the @code{gexp?} type (see below.)
4772 @end deffn
4773
4774 @deffn {Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}
4775 Mark the gexps defined in @var{body}@dots{} as requiring @var{modules}
4776 in their execution environment.
4777
4778 Each item in @var{modules} can be the name of a module, such as
4779 @code{(guix build utils)}, or it can be a module name, followed by an
4780 arrow, followed by a file-like object:
4781
4782 @example
4783 `((guix build utils)
4784 (guix gcrypt)
4785 ((guix config) => ,(scheme-file "config.scm"
4786 #~(define-module @dots{}))))
4787 @end example
4788
4789 @noindent
4790 In the example above, the first two modules are taken from the search
4791 path, and the last one is created from the given file-like object.
4792
4793 This form has @emph{lexical} scope: it has an effect on the gexps
4794 directly defined in @var{body}@dots{}, but not on those defined, say, in
4795 procedures called from @var{body}@dots{}.
4796 @end deffn
4797
4798 @deffn {Scheme Procedure} gexp? @var{obj}
4799 Return @code{#t} if @var{obj} is a G-expression.
4800 @end deffn
4801
4802 G-expressions are meant to be written to disk, either as code building
4803 some derivation, or as plain files in the store. The monadic procedures
4804 below allow you to do that (@pxref{The Store Monad}, for more
4805 information about monads.)
4806
4807 @deffn {Monadic Procedure} gexp->derivation @var{name} @var{exp} @
4808 [#:system (%current-system)] [#:target #f] [#:graft? #t] @
4809 [#:hash #f] [#:hash-algo #f] @
4810 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
4811 [#:module-path @var{%load-path}] @
4812 [#:references-graphs #f] [#:allowed-references #f] @
4813 [#:disallowed-references #f] @
4814 [#:leaked-env-vars #f] @
4815 [#:script-name (string-append @var{name} "-builder")] @
4816 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
4817 Return a derivation @var{name} that runs @var{exp} (a gexp) with
4818 @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is
4819 stored in a file called @var{script-name}. When @var{target} is true,
4820 it is used as the cross-compilation target triplet for packages referred
4821 to by @var{exp}.
4822
4823 @var{modules} is deprecated in favor of @code{with-imported-modules}.
4824 Its meaning is to
4825 make @var{modules} available in the evaluation context of @var{exp};
4826 @var{modules} is a list of names of Guile modules searched in
4827 @var{module-path} to be copied in the store, compiled, and made available in
4828 the load path during the execution of @var{exp}---e.g., @code{((guix
4829 build utils) (guix build gnu-build-system))}.
4830
4831 @var{graft?} determines whether packages referred to by @var{exp} should be grafted when
4832 applicable.
4833
4834 When @var{references-graphs} is true, it must be a list of tuples of one of the
4835 following forms:
4836
4837 @example
4838 (@var{file-name} @var{package})
4839 (@var{file-name} @var{package} @var{output})
4840 (@var{file-name} @var{derivation})
4841 (@var{file-name} @var{derivation} @var{output})
4842 (@var{file-name} @var{store-item})
4843 @end example
4844
4845 The right-hand-side of each element of @var{references-graphs} is automatically made
4846 an input of the build process of @var{exp}. In the build environment, each
4847 @var{file-name} contains the reference graph of the corresponding item, in a simple
4848 text format.
4849
4850 @var{allowed-references} must be either @code{#f} or a list of output names and packages.
4851 In the latter case, the list denotes store items that the result is allowed to
4852 refer to. Any reference to another store item will lead to a build error.
4853 Similarly for @var{disallowed-references}, which can list items that must not be
4854 referenced by the outputs.
4855
4856 The other arguments are as for @code{derivation} (@pxref{Derivations}).
4857 @end deffn
4858
4859 @cindex file-like objects
4860 The @code{local-file}, @code{plain-file}, @code{computed-file},
4861 @code{program-file}, and @code{scheme-file} procedures below return
4862 @dfn{file-like objects}. That is, when unquoted in a G-expression,
4863 these objects lead to a file in the store. Consider this G-expression:
4864
4865 @example
4866 #~(system* #$(file-append glibc "/sbin/nscd") "-f"
4867 #$(local-file "/tmp/my-nscd.conf"))
4868 @end example
4869
4870 The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it
4871 to the store. Once expanded, for instance @i{via}
4872 @code{gexp->derivation}, the G-expression refers to that copy under
4873 @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp}
4874 does not have any effect on what the G-expression does.
4875 @code{plain-file} can be used similarly; it differs in that the file
4876 content is directly passed as a string.
4877
4878 @deffn {Scheme Procedure} local-file @var{file} [@var{name}] @
4879 [#:recursive? #f] [#:select? (const #t)]
4880 Return an object representing local file @var{file} to add to the store; this
4881 object can be used in a gexp. If @var{file} is a relative file name, it is looked
4882 up relative to the source file where this form appears. @var{file} will be added to
4883 the store under @var{name}--by default the base name of @var{file}.
4884
4885 When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file}
4886 designates a flat file and @var{recursive?} is true, its contents are added, and its
4887 permission bits are kept.
4888
4889 When @var{recursive?} is true, call @code{(@var{select?} @var{file}
4890 @var{stat})} for each directory entry, where @var{file} is the entry's
4891 absolute file name and @var{stat} is the result of @code{lstat}; exclude
4892 entries for which @var{select?} does not return true.
4893
4894 This is the declarative counterpart of the @code{interned-file} monadic
4895 procedure (@pxref{The Store Monad, @code{interned-file}}).
4896 @end deffn
4897
4898 @deffn {Scheme Procedure} plain-file @var{name} @var{content}
4899 Return an object representing a text file called @var{name} with the given
4900 @var{content} (a string) to be added to the store.
4901
4902 This is the declarative counterpart of @code{text-file}.
4903 @end deffn
4904
4905 @deffn {Scheme Procedure} computed-file @var{name} @var{gexp} @
4906 [#:options '(#:local-build? #t)]
4907 Return an object representing the store item @var{name}, a file or
4908 directory computed by @var{gexp}. @var{options}
4909 is a list of additional arguments to pass to @code{gexp->derivation}.
4910
4911 This is the declarative counterpart of @code{gexp->derivation}.
4912 @end deffn
4913
4914 @deffn {Monadic Procedure} gexp->script @var{name} @var{exp}
4915 Return an executable script @var{name} that runs @var{exp} using
4916 @var{guile}, with @var{exp}'s imported modules in its search path.
4917
4918 The example below builds a script that simply invokes the @command{ls}
4919 command:
4920
4921 @example
4922 (use-modules (guix gexp) (gnu packages base))
4923
4924 (gexp->script "list-files"
4925 #~(execl #$(file-append coreutils "/bin/ls")
4926 "ls"))
4927 @end example
4928
4929 When ``running'' it through the store (@pxref{The Store Monad,
4930 @code{run-with-store}}), we obtain a derivation that produces an
4931 executable file @file{/gnu/store/@dots{}-list-files} along these lines:
4932
4933 @example
4934 #!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds
4935 !#
4936 (execl "/gnu/store/@dots{}-coreutils-8.22"/bin/ls" "ls")
4937 @end example
4938 @end deffn
4939
4940 @deffn {Scheme Procedure} program-file @var{name} @var{exp} @
4941 [#:guile #f]
4942 Return an object representing the executable store item @var{name} that
4943 runs @var{gexp}. @var{guile} is the Guile package used to execute that
4944 script.
4945
4946 This is the declarative counterpart of @code{gexp->script}.
4947 @end deffn
4948
4949 @deffn {Monadic Procedure} gexp->file @var{name} @var{exp} @
4950 [#:set-load-path? #t]
4951 Return a derivation that builds a file @var{name} containing @var{exp}.
4952 When @var{set-load-path?} is true, emit code in the resulting file to
4953 set @code{%load-path} and @code{%load-compiled-path} to honor
4954 @var{exp}'s imported modules.
4955
4956 The resulting file holds references to all the dependencies of @var{exp}
4957 or a subset thereof.
4958 @end deffn
4959
4960 @deffn {Scheme Procedure} scheme-file @var{name} @var{exp}
4961 Return an object representing the Scheme file @var{name} that contains
4962 @var{exp}.
4963
4964 This is the declarative counterpart of @code{gexp->file}.
4965 @end deffn
4966
4967 @deffn {Monadic Procedure} text-file* @var{name} @var{text} @dots{}
4968 Return as a monadic value a derivation that builds a text file
4969 containing all of @var{text}. @var{text} may list, in addition to
4970 strings, objects of any type that can be used in a gexp: packages,
4971 derivations, local file objects, etc. The resulting store file holds
4972 references to all these.
4973
4974 This variant should be preferred over @code{text-file} anytime the file
4975 to create will reference items from the store. This is typically the
4976 case when building a configuration file that embeds store file names,
4977 like this:
4978
4979 @example
4980 (define (profile.sh)
4981 ;; Return the name of a shell script in the store that
4982 ;; initializes the 'PATH' environment variable.
4983 (text-file* "profile.sh"
4984 "export PATH=" coreutils "/bin:"
4985 grep "/bin:" sed "/bin\n"))
4986 @end example
4987
4988 In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file
4989 will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby
4990 preventing them from being garbage-collected during its lifetime.
4991 @end deffn
4992
4993 @deffn {Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}
4994 Return an object representing store file @var{name} containing
4995 @var{text}. @var{text} is a sequence of strings and file-like objects,
4996 as in:
4997
4998 @example
4999 (mixed-text-file "profile"
5000 "export PATH=" coreutils "/bin:" grep "/bin")
5001 @end example
5002
5003 This is the declarative counterpart of @code{text-file*}.
5004 @end deffn
5005
5006 @deffn {Scheme Procedure} file-union @var{name} @var{files}
5007 Return a @code{<computed-file>} that builds a directory containing all of @var{files}.
5008 Each item in @var{files} must be a two-element list where the first element is the
5009 file name to use in the new directory, and the second element is a gexp
5010 denoting the target file. Here's an example:
5011
5012 @example
5013 (file-union "etc"
5014 `(("hosts" ,(plain-file "hosts"
5015 "127.0.0.1 localhost"))
5016 ("bashrc" ,(plain-file "bashrc"
5017 "alias ls='ls --color'"))))
5018 @end example
5019
5020 This yields an @code{etc} directory containing these two files.
5021 @end deffn
5022
5023 @deffn {Scheme Procedure} directory-union @var{name} @var{things}
5024 Return a directory that is the union of @var{things}, where @var{things} is a list of
5025 file-like objects denoting directories. For example:
5026
5027 @example
5028 (directory-union "guile+emacs" (list guile emacs))
5029 @end example
5030
5031 yields a directory that is the union of the @code{guile} and @code{emacs} packages.
5032 @end deffn
5033
5034 @deffn {Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}
5035 Return a file-like object that expands to the concatenation of @var{obj}
5036 and @var{suffix}, where @var{obj} is a lowerable object and each
5037 @var{suffix} is a string.
5038
5039 As an example, consider this gexp:
5040
5041 @example
5042 (gexp->script "run-uname"
5043 #~(system* #$(file-append coreutils
5044 "/bin/uname")))
5045 @end example
5046
5047 The same effect could be achieved with:
5048
5049 @example
5050 (gexp->script "run-uname"
5051 #~(system* (string-append #$coreutils
5052 "/bin/uname")))
5053 @end example
5054
5055 There is one difference though: in the @code{file-append} case, the
5056 resulting script contains the absolute file name as a string, whereas in
5057 the second case, the resulting script contains a @code{(string-append
5058 @dots{})} expression to construct the file name @emph{at run time}.
5059 @end deffn
5060
5061
5062 Of course, in addition to gexps embedded in ``host'' code, there are
5063 also modules containing build tools. To make it clear that they are
5064 meant to be used in the build stratum, these modules are kept in the
5065 @code{(guix build @dots{})} name space.
5066
5067 @cindex lowering, of high-level objects in gexps
5068 Internally, high-level objects are @dfn{lowered}, using their compiler,
5069 to either derivations or store items. For instance, lowering a package
5070 yields a derivation, and lowering a @code{plain-file} yields a store
5071 item. This is achieved using the @code{lower-object} monadic procedure.
5072
5073 @deffn {Monadic Procedure} lower-object @var{obj} [@var{system}] @
5074 [#:target #f]
5075 Return as a value in @var{%store-monad} the derivation or store item
5076 corresponding to @var{obj} for @var{system}, cross-compiling for
5077 @var{target} if @var{target} is true. @var{obj} must be an object that
5078 has an associated gexp compiler, such as a @code{<package>}.
5079 @end deffn
5080
5081
5082 @c *********************************************************************
5083 @node Utilities
5084 @chapter Utilities
5085
5086 This section describes Guix command-line utilities. Some of them are
5087 primarily targeted at developers and users who write new package
5088 definitions, while others are more generally useful. They complement
5089 the Scheme programming interface of Guix in a convenient way.
5090
5091 @menu
5092 * Invoking guix build:: Building packages from the command line.
5093 * Invoking guix edit:: Editing package definitions.
5094 * Invoking guix download:: Downloading a file and printing its hash.
5095 * Invoking guix hash:: Computing the cryptographic hash of a file.
5096 * Invoking guix import:: Importing package definitions.
5097 * Invoking guix refresh:: Updating package definitions.
5098 * Invoking guix lint:: Finding errors in package definitions.
5099 * Invoking guix size:: Profiling disk usage.
5100 * Invoking guix graph:: Visualizing the graph of packages.
5101 * Invoking guix environment:: Setting up development environments.
5102 * Invoking guix publish:: Sharing substitutes.
5103 * Invoking guix challenge:: Challenging substitute servers.
5104 * Invoking guix copy:: Copying to and from a remote store.
5105 * Invoking guix container:: Process isolation.
5106 * Invoking guix weather:: Assessing substitute availability.
5107 @end menu
5108
5109 @node Invoking guix build
5110 @section Invoking @command{guix build}
5111
5112 @cindex package building
5113 @cindex @command{guix build}
5114 The @command{guix build} command builds packages or derivations and
5115 their dependencies, and prints the resulting store paths. Note that it
5116 does not modify the user's profile---this is the job of the
5117 @command{guix package} command (@pxref{Invoking guix package}). Thus,
5118 it is mainly useful for distribution developers.
5119
5120 The general syntax is:
5121
5122 @example
5123 guix build @var{options} @var{package-or-derivation}@dots{}
5124 @end example
5125
5126 As an example, the following command builds the latest versions of Emacs
5127 and of Guile, displays their build logs, and finally displays the
5128 resulting directories:
5129
5130 @example
5131 guix build emacs guile
5132 @end example
5133
5134 Similarly, the following command builds all the available packages:
5135
5136 @example
5137 guix build --quiet --keep-going \
5138 `guix package -A | cut -f1,2 --output-delimiter=@@`
5139 @end example
5140
5141 @var{package-or-derivation} may be either the name of a package found in
5142 the software distribution such as @code{coreutils} or
5143 @code{coreutils@@8.20}, or a derivation such as
5144 @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a
5145 package with the corresponding name (and optionally version) is searched
5146 for among the GNU distribution modules (@pxref{Package Modules}).
5147
5148 Alternatively, the @code{--expression} option may be used to specify a
5149 Scheme expression that evaluates to a package; this is useful when
5150 disambiguating among several same-named packages or package variants is
5151 needed.
5152
5153 There may be zero or more @var{options}. The available options are
5154 described in the subsections below.
5155
5156 @menu
5157 * Common Build Options:: Build options for most commands.
5158 * Package Transformation Options:: Creating variants of packages.
5159 * Additional Build Options:: Options specific to 'guix build'.
5160 * Debugging Build Failures:: Real life packaging experience.
5161 @end menu
5162
5163 @node Common Build Options
5164 @subsection Common Build Options
5165
5166 A number of options that control the build process are common to
5167 @command{guix build} and other commands that can spawn builds, such as
5168 @command{guix package} or @command{guix archive}. These are the
5169 following:
5170
5171 @table @code
5172
5173 @item --load-path=@var{directory}
5174 @itemx -L @var{directory}
5175 Add @var{directory} to the front of the package module search path
5176 (@pxref{Package Modules}).
5177
5178 This allows users to define their own packages and make them visible to
5179 the command-line tools.
5180
5181 @item --keep-failed
5182 @itemx -K
5183 Keep the build tree of failed builds. Thus, if a build fails, its build
5184 tree is kept under @file{/tmp}, in a directory whose name is shown at
5185 the end of the build log. This is useful when debugging build issues.
5186 @xref{Debugging Build Failures}, for tips and tricks on how to debug
5187 build issues.
5188
5189 @item --keep-going
5190 @itemx -k
5191 Keep going when some of the derivations fail to build; return only once
5192 all the builds have either completed or failed.
5193
5194 The default behavior is to stop as soon as one of the specified
5195 derivations has failed.
5196
5197 @item --dry-run
5198 @itemx -n
5199 Do not build the derivations.
5200
5201 @item --fallback
5202 When substituting a pre-built binary fails, fall back to building
5203 packages locally.
5204
5205 @item --substitute-urls=@var{urls}
5206 @anchor{client-substitute-urls}
5207 Consider @var{urls} the whitespace-separated list of substitute source
5208 URLs, overriding the default list of URLs of @command{guix-daemon}
5209 (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs}).
5210
5211 This means that substitutes may be downloaded from @var{urls}, provided
5212 they are signed by a key authorized by the system administrator
5213 (@pxref{Substitutes}).
5214
5215 When @var{urls} is the empty string, substitutes are effectively
5216 disabled.
5217
5218 @item --no-substitutes
5219 Do not use substitutes for build products. That is, always build things
5220 locally instead of allowing downloads of pre-built binaries
5221 (@pxref{Substitutes}).
5222
5223 @item --no-grafts
5224 Do not ``graft'' packages. In practice, this means that package updates
5225 available as grafts are not applied. @xref{Security Updates}, for more
5226 information on grafts.
5227
5228 @item --rounds=@var{n}
5229 Build each derivation @var{n} times in a row, and raise an error if
5230 consecutive build results are not bit-for-bit identical.
5231
5232 This is a useful way to detect non-deterministic builds processes.
5233 Non-deterministic build processes are a problem because they make it
5234 practically impossible for users to @emph{verify} whether third-party
5235 binaries are genuine. @xref{Invoking guix challenge}, for more.
5236
5237 Note that, currently, the differing build results are not kept around,
5238 so you will have to manually investigate in case of an error---e.g., by
5239 stashing one of the build results with @code{guix archive --export}
5240 (@pxref{Invoking guix archive}), then rebuilding, and finally comparing
5241 the two results.
5242
5243 @item --no-build-hook
5244 Do not attempt to offload builds @i{via} the ``build hook'' of the daemon
5245 (@pxref{Daemon Offload Setup}). That is, always build things locally
5246 instead of offloading builds to remote machines.
5247
5248 @item --max-silent-time=@var{seconds}
5249 When the build or substitution process remains silent for more than
5250 @var{seconds}, terminate it and report a build failure.
5251
5252 By default, the daemon's setting is honored (@pxref{Invoking
5253 guix-daemon, @code{--max-silent-time}}).
5254
5255 @item --timeout=@var{seconds}
5256 Likewise, when the build or substitution process lasts for more than
5257 @var{seconds}, terminate it and report a build failure.
5258
5259 By default, the daemon's setting is honored (@pxref{Invoking
5260 guix-daemon, @code{--timeout}}).
5261
5262 @item --verbosity=@var{level}
5263 Use the given verbosity level. @var{level} must be an integer between 0
5264 and 5; higher means more verbose output. Setting a level of 4 or more
5265 may be helpful when debugging setup issues with the build daemon.
5266
5267 @item --cores=@var{n}
5268 @itemx -c @var{n}
5269 Allow the use of up to @var{n} CPU cores for the build. The special
5270 value @code{0} means to use as many CPU cores as available.
5271
5272 @item --max-jobs=@var{n}
5273 @itemx -M @var{n}
5274 Allow at most @var{n} build jobs in parallel. @xref{Invoking
5275 guix-daemon, @code{--max-jobs}}, for details about this option and the
5276 equivalent @command{guix-daemon} option.
5277
5278 @end table
5279
5280 Behind the scenes, @command{guix build} is essentially an interface to
5281 the @code{package-derivation} procedure of the @code{(guix packages)}
5282 module, and to the @code{build-derivations} procedure of the @code{(guix
5283 derivations)} module.
5284
5285 In addition to options explicitly passed on the command line,
5286 @command{guix build} and other @command{guix} commands that support
5287 building honor the @code{GUIX_BUILD_OPTIONS} environment variable.
5288
5289 @defvr {Environment Variable} GUIX_BUILD_OPTIONS
5290 Users can define this variable to a list of command line options that
5291 will automatically be used by @command{guix build} and other
5292 @command{guix} commands that can perform builds, as in the example
5293 below:
5294
5295 @example
5296 $ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar"
5297 @end example
5298
5299 These options are parsed independently, and the result is appended to
5300 the parsed command-line options.
5301 @end defvr
5302
5303
5304 @node Package Transformation Options
5305 @subsection Package Transformation Options
5306
5307 @cindex package variants
5308 Another set of command-line options supported by @command{guix build}
5309 and also @command{guix package} are @dfn{package transformation
5310 options}. These are options that make it possible to define @dfn{package
5311 variants}---for instance, packages built from different source code.
5312 This is a convenient way to create customized packages on the fly
5313 without having to type in the definitions of package variants
5314 (@pxref{Defining Packages}).
5315
5316 @table @code
5317
5318 @item --with-source=@var{source}
5319 Use @var{source} as the source of the corresponding package.
5320 @var{source} must be a file name or a URL, as for @command{guix
5321 download} (@pxref{Invoking guix download}).
5322
5323 The ``corresponding package'' is taken to be the one specified on the
5324 command line the name of which matches the base of @var{source}---e.g.,
5325 if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding
5326 package is @code{guile}. Likewise, the version string is inferred from
5327 @var{source}; in the previous example, it is @code{2.0.10}.
5328
5329 This option allows users to try out versions of packages other than the
5330 one provided by the distribution. The example below downloads
5331 @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for
5332 the @code{ed} package:
5333
5334 @example
5335 guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz
5336 @end example
5337
5338 As a developer, @code{--with-source} makes it easy to test release
5339 candidates:
5340
5341 @example
5342 guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz
5343 @end example
5344
5345 @dots{} or to build from a checkout in a pristine environment:
5346
5347 @example
5348 $ git clone git://git.sv.gnu.org/guix.git
5349 $ guix build guix --with-source=./guix
5350 @end example
5351
5352 @item --with-input=@var{package}=@var{replacement}
5353 Replace dependency on @var{package} by a dependency on
5354 @var{replacement}. @var{package} must be a package name, and
5355 @var{replacement} must be a package specification such as @code{guile}
5356 or @code{guile@@1.8}.
5357
5358 For instance, the following command builds Guix, but replaces its
5359 dependency on the current stable version of Guile with a dependency on
5360 the legacy version of Guile, @code{guile@@2.0}:
5361
5362 @example
5363 guix build --with-input=guile=guile@@2.0 guix
5364 @end example
5365
5366 This is a recursive, deep replacement. So in this example, both
5367 @code{guix} and its dependency @code{guile-json} (which also depends on
5368 @code{guile}) get rebuilt against @code{guile@@2.0}.
5369
5370 This is implemented using the @code{package-input-rewriting} Scheme
5371 procedure (@pxref{Defining Packages, @code{package-input-rewriting}}).
5372
5373 @item --with-graft=@var{package}=@var{replacement}
5374 This is similar to @code{--with-input} but with an important difference:
5375 instead of rebuilding the whole dependency chain, @var{replacement} is
5376 built and then @dfn{grafted} onto the binaries that were initially
5377 referring to @var{package}. @xref{Security Updates}, for more
5378 information on grafts.
5379
5380 For example, the command below grafts version 3.5.4 of GnuTLS onto Wget
5381 and all its dependencies, replacing references to the version of GnuTLS
5382 they currently refer to:
5383
5384 @example
5385 guix build --with-graft=gnutls=gnutls@@3.5.4 wget
5386 @end example
5387
5388 This has the advantage of being much faster than rebuilding everything.
5389 But there is a caveat: it works if and only if @var{package} and
5390 @var{replacement} are strictly compatible---for example, if they provide
5391 a library, the application binary interface (ABI) of those libraries
5392 must be compatible. If @var{replacement} is somehow incompatible with
5393 @var{package}, then the resulting package may be unusable. Use with
5394 care!
5395
5396 @end table
5397
5398 @node Additional Build Options
5399 @subsection Additional Build Options
5400
5401 The command-line options presented below are specific to @command{guix
5402 build}.
5403
5404 @table @code
5405
5406 @item --quiet
5407 @itemx -q
5408 Build quietly, without displaying the build log. Upon completion, the
5409 build log is kept in @file{/var} (or similar) and can always be
5410 retrieved using the @option{--log-file} option.
5411
5412 @item --file=@var{file}
5413 @itemx -f @var{file}
5414
5415 Build the package or derivation that the code within @var{file}
5416 evaluates to.
5417
5418 As an example, @var{file} might contain a package definition like this
5419 (@pxref{Defining Packages}):
5420
5421 @example
5422 @verbatiminclude package-hello.scm
5423 @end example
5424
5425 @item --expression=@var{expr}
5426 @itemx -e @var{expr}
5427 Build the package or derivation @var{expr} evaluates to.
5428
5429 For example, @var{expr} may be @code{(@@ (gnu packages guile)
5430 guile-1.8)}, which unambiguously designates this specific variant of
5431 version 1.8 of Guile.
5432
5433 Alternatively, @var{expr} may be a G-expression, in which case it is used
5434 as a build program passed to @code{gexp->derivation}
5435 (@pxref{G-Expressions}).
5436
5437 Lastly, @var{expr} may refer to a zero-argument monadic procedure
5438 (@pxref{The Store Monad}). The procedure must return a derivation as a
5439 monadic value, which is then passed through @code{run-with-store}.
5440
5441 @item --source
5442 @itemx -S
5443 Build the source derivations of the packages, rather than the packages
5444 themselves.
5445
5446 For instance, @code{guix build -S gcc} returns something like
5447 @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC
5448 source tarball.
5449
5450 The returned source tarball is the result of applying any patches and
5451 code snippets specified in the package @code{origin} (@pxref{Defining
5452 Packages}).
5453
5454 @item --sources
5455 Fetch and return the source of @var{package-or-derivation} and all their
5456 dependencies, recursively. This is a handy way to obtain a local copy
5457 of all the source code needed to build @var{packages}, allowing you to
5458 eventually build them even without network access. It is an extension
5459 of the @code{--source} option and can accept one of the following
5460 optional argument values:
5461
5462 @table @code
5463 @item package
5464 This value causes the @code{--sources} option to behave in the same way
5465 as the @code{--source} option.
5466
5467 @item all
5468 Build the source derivations of all packages, including any source that
5469 might be listed as @code{inputs}. This is the default value.
5470
5471 @example
5472 $ guix build --sources tzdata
5473 The following derivations will be built:
5474 /gnu/store/@dots{}-tzdata2015b.tar.gz.drv
5475 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
5476 @end example
5477
5478 @item transitive
5479 Build the source derivations of all packages, as well of all transitive
5480 inputs to the packages. This can be used e.g. to
5481 prefetch package source for later offline building.
5482
5483 @example
5484 $ guix build --sources=transitive tzdata
5485 The following derivations will be built:
5486 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
5487 /gnu/store/@dots{}-findutils-4.4.2.tar.xz.drv
5488 /gnu/store/@dots{}-grep-2.21.tar.xz.drv
5489 /gnu/store/@dots{}-coreutils-8.23.tar.xz.drv
5490 /gnu/store/@dots{}-make-4.1.tar.xz.drv
5491 /gnu/store/@dots{}-bash-4.3.tar.xz.drv
5492 @dots{}
5493 @end example
5494
5495 @end table
5496
5497 @item --system=@var{system}
5498 @itemx -s @var{system}
5499 Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
5500 the system type of the build host.
5501
5502 An example use of this is on Linux-based systems, which can emulate
5503 different personalities. For instance, passing
5504 @code{--system=i686-linux} on an @code{x86_64-linux} system allows users
5505 to build packages in a complete 32-bit environment.
5506
5507 @item --target=@var{triplet}
5508 @cindex cross-compilation
5509 Cross-build for @var{triplet}, which must be a valid GNU triplet, such
5510 as @code{"mips64el-linux-gnu"} (@pxref{Specifying target triplets, GNU
5511 configuration triplets,, autoconf, Autoconf}).
5512
5513 @anchor{build-check}
5514 @item --check
5515 @cindex determinism, checking
5516 @cindex reproducibility, checking
5517 Rebuild @var{package-or-derivation}, which are already available in the
5518 store, and raise an error if the build results are not bit-for-bit
5519 identical.
5520
5521 This mechanism allows you to check whether previously installed
5522 substitutes are genuine (@pxref{Substitutes}), or whether the build result
5523 of a package is deterministic. @xref{Invoking guix challenge}, for more
5524 background information and tools.
5525
5526 When used in conjunction with @option{--keep-failed}, the differing
5527 output is kept in the store, under @file{/gnu/store/@dots{}-check}.
5528 This makes it easy to look for differences between the two results.
5529
5530 @item --repair
5531 @cindex repairing store items
5532 @cindex corruption, recovering from
5533 Attempt to repair the specified store items, if they are corrupt, by
5534 re-downloading or rebuilding them.
5535
5536 This operation is not atomic and thus restricted to @code{root}.
5537
5538 @item --derivations
5539 @itemx -d
5540 Return the derivation paths, not the output paths, of the given
5541 packages.
5542
5543 @item --root=@var{file}
5544 @itemx -r @var{file}
5545 @cindex GC roots, adding
5546 @cindex garbage collector roots, adding
5547 Make @var{file} a symlink to the result, and register it as a garbage
5548 collector root.
5549
5550 Consequently, the results of this @command{guix build} invocation are
5551 protected from garbage collection until @var{file} is removed. When
5552 that option is omitted, build results are eligible for garbage
5553 collection as soon as the build completes. @xref{Invoking guix gc}, for
5554 more on GC roots.
5555
5556 @item --log-file
5557 Return the build log file names or URLs for the given
5558 @var{package-or-derivation}, or raise an error if build logs are
5559 missing.
5560
5561 This works regardless of how packages or derivations are specified. For
5562 instance, the following invocations are equivalent:
5563
5564 @example
5565 guix build --log-file `guix build -d guile`
5566 guix build --log-file `guix build guile`
5567 guix build --log-file guile
5568 guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'
5569 @end example
5570
5571 If a log is unavailable locally, and unless @code{--no-substitutes} is
5572 passed, the command looks for a corresponding log on one of the
5573 substitute servers (as specified with @code{--substitute-urls}.)
5574
5575 So for instance, imagine you want to see the build log of GDB on MIPS,
5576 but you are actually on an @code{x86_64} machine:
5577
5578 @example
5579 $ guix build --log-file gdb -s mips64el-linux
5580 https://hydra.gnu.org/log/@dots{}-gdb-7.10
5581 @end example
5582
5583 You can freely access a huge library of build logs!
5584 @end table
5585
5586 @node Debugging Build Failures
5587 @subsection Debugging Build Failures
5588
5589 @cindex build failures, debugging
5590 When defining a new package (@pxref{Defining Packages}), you will
5591 probably find yourself spending some time debugging and tweaking the
5592 build until it succeeds. To do that, you need to operate the build
5593 commands yourself in an environment as close as possible to the one the
5594 build daemon uses.
5595
5596 To that end, the first thing to do is to use the @option{--keep-failed}
5597 or @option{-K} option of @command{guix build}, which will keep the
5598 failed build tree in @file{/tmp} or whatever directory you specified as
5599 @code{TMPDIR} (@pxref{Invoking guix build, @code{--keep-failed}}).
5600
5601 From there on, you can @command{cd} to the failed build tree and source
5602 the @file{environment-variables} file, which contains all the
5603 environment variable definitions that were in place when the build
5604 failed. So let's say you're debugging a build failure in package
5605 @code{foo}; a typical session would look like this:
5606
5607 @example
5608 $ guix build foo -K
5609 @dots{} @i{build fails}
5610 $ cd /tmp/guix-build-foo.drv-0
5611 $ source ./environment-variables
5612 $ cd foo-1.2
5613 @end example
5614
5615 Now, you can invoke commands as if you were the daemon (almost) and
5616 troubleshoot your build process.
5617
5618 Sometimes it happens that, for example, a package's tests pass when you
5619 run them manually but they fail when the daemon runs them. This can
5620 happen because the daemon runs builds in containers where, unlike in our
5621 environment above, network access is missing, @file{/bin/sh} does not
5622 exist, etc. (@pxref{Build Environment Setup}).
5623
5624 In such cases, you may need to run inspect the build process from within
5625 a container similar to the one the build daemon creates:
5626
5627 @example
5628 $ guix build -K foo
5629 @dots{}
5630 $ cd /tmp/guix-build-foo.drv-0
5631 $ guix environment --no-grafts -C foo --ad-hoc strace gdb
5632 [env]# source ./environment-variables
5633 [env]# cd foo-1.2
5634 @end example
5635
5636 Here, @command{guix environment -C} creates a container and spawns a new
5637 shell in it (@pxref{Invoking guix environment}). The @command{--ad-hoc
5638 strace gdb} part adds the @command{strace} and @command{gdb} commands to
5639 the container, which would may find handy while debugging. The
5640 @option{--no-grafts} option makes sure we get the exact same
5641 environment, with ungrafted packages (@pxref{Security Updates}, for more
5642 info on grafts).
5643
5644 To get closer to a container like that used by the build daemon, we can
5645 remove @file{/bin/sh}:
5646
5647 @example
5648 [env]# rm /bin/sh
5649 @end example
5650
5651 (Don't worry, this is harmless: this is all happening in the throw-away
5652 container created by @command{guix environment}.)
5653
5654 The @command{strace} command is probably not in the search path, but we
5655 can run:
5656
5657 @example
5658 [env]# $GUIX_ENVIRONMENT/bin/strace -f -o log make check
5659 @end example
5660
5661 In this way, not only you will have reproduced the environment variables
5662 the daemon uses, you will also be running the build process in a container
5663 similar to the one the daemon uses.
5664
5665
5666 @node Invoking guix edit
5667 @section Invoking @command{guix edit}
5668
5669 @cindex @command{guix edit}
5670 @cindex package definition, editing
5671 So many packages, so many source files! The @command{guix edit} command
5672 facilitates the life of users and packagers by pointing their editor at
5673 the source file containing the definition of the specified packages.
5674 For instance:
5675
5676 @example
5677 guix edit gcc@@4.9 vim
5678 @end example
5679
5680 @noindent
5681 launches the program specified in the @code{VISUAL} or in the
5682 @code{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3
5683 and that of Vim.
5684
5685 If you are using a Guix Git checkout (@pxref{Building from Git}), or
5686 have created your own packages on @code{GUIX_PACKAGE_PATH}
5687 (@pxref{Defining Packages}), you will be able to edit the package
5688 recipes. Otherwise, you will be able to examine the read-only recipes
5689 for packages currently in the store.
5690
5691
5692 @node Invoking guix download
5693 @section Invoking @command{guix download}
5694
5695 @cindex @command{guix download}
5696 @cindex downloading package sources
5697 When writing a package definition, developers typically need to download
5698 a source tarball, compute its SHA256 hash, and write that
5699 hash in the package definition (@pxref{Defining Packages}). The
5700 @command{guix download} tool helps with this task: it downloads a file
5701 from the given URI, adds it to the store, and prints both its file name
5702 in the store and its SHA256 hash.
5703
5704 The fact that the downloaded file is added to the store saves bandwidth:
5705 when the developer eventually tries to build the newly defined package
5706 with @command{guix build}, the source tarball will not have to be
5707 downloaded again because it is already in the store. It is also a
5708 convenient way to temporarily stash files, which may be deleted
5709 eventually (@pxref{Invoking guix gc}).
5710
5711 The @command{guix download} command supports the same URIs as used in
5712 package definitions. In particular, it supports @code{mirror://} URIs.
5713 @code{https} URIs (HTTP over TLS) are supported @emph{provided} the
5714 Guile bindings for GnuTLS are available in the user's environment; when
5715 they are not available, an error is raised. @xref{Guile Preparations,
5716 how to install the GnuTLS bindings for Guile,, gnutls-guile,
5717 GnuTLS-Guile}, for more information.
5718
5719 @command{guix download} verifies HTTPS server certificates by loading
5720 the certificates of X.509 authorities from the directory pointed to by
5721 the @code{SSL_CERT_DIR} environment variable (@pxref{X.509
5722 Certificates}), unless @option{--no-check-certificate} is used.
5723
5724 The following options are available:
5725
5726 @table @code
5727 @item --format=@var{fmt}
5728 @itemx -f @var{fmt}
5729 Write the hash in the format specified by @var{fmt}. For more
5730 information on the valid values for @var{fmt}, @pxref{Invoking guix hash}.
5731
5732 @item --no-check-certificate
5733 Do not validate the X.509 certificates of HTTPS servers.
5734
5735 When using this option, you have @emph{absolutely no guarantee} that you
5736 are communicating with the authentic server responsible for the given
5737 URL, which makes you vulnerable to ``man-in-the-middle'' attacks.
5738
5739 @item --output=@var{file}
5740 @itemx -o @var{file}
5741 Save the downloaded file to @var{file} instead of adding it to the
5742 store.
5743 @end table
5744
5745 @node Invoking guix hash
5746 @section Invoking @command{guix hash}
5747
5748 @cindex @command{guix hash}
5749 The @command{guix hash} command computes the SHA256 hash of a file.
5750 It is primarily a convenience tool for anyone contributing to the
5751 distribution: it computes the cryptographic hash of a file, which can be
5752 used in the definition of a package (@pxref{Defining Packages}).
5753
5754 The general syntax is:
5755
5756 @example
5757 guix hash @var{option} @var{file}
5758 @end example
5759
5760 When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the
5761 hash of data read from standard input. @command{guix hash} has the
5762 following options:
5763
5764 @table @code
5765
5766 @item --format=@var{fmt}
5767 @itemx -f @var{fmt}
5768 Write the hash in the format specified by @var{fmt}.
5769
5770 Supported formats: @code{nix-base32}, @code{base32}, @code{base16}
5771 (@code{hex} and @code{hexadecimal} can be used as well).
5772
5773 If the @option{--format} option is not specified, @command{guix hash}
5774 will output the hash in @code{nix-base32}. This representation is used
5775 in the definitions of packages.
5776
5777 @item --recursive
5778 @itemx -r
5779 Compute the hash on @var{file} recursively.
5780
5781 In this case, the hash is computed on an archive containing @var{file},
5782 including its children if it is a directory. Some of the metadata of
5783 @var{file} is part of the archive; for instance, when @var{file} is a
5784 regular file, the hash is different depending on whether @var{file} is
5785 executable or not. Metadata such as time stamps has no impact on the
5786 hash (@pxref{Invoking guix archive}).
5787 @c FIXME: Replace xref above with xref to an ``Archive'' section when
5788 @c it exists.
5789
5790 @item --exclude-vcs
5791 @itemx -x
5792 When combined with @option{--recursive}, exclude version control system
5793 directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)
5794
5795 @vindex git-fetch
5796 As an example, here is how you would compute the hash of a Git checkout,
5797 which is useful when using the @code{git-fetch} method (@pxref{origin
5798 Reference}):
5799
5800 @example
5801 $ git clone http://example.org/foo.git
5802 $ cd foo
5803 $ guix hash -rx .
5804 @end example
5805 @end table
5806
5807 @node Invoking guix import
5808 @section Invoking @command{guix import}
5809
5810 @cindex importing packages
5811 @cindex package import
5812 @cindex package conversion
5813 @cindex Invoking @command{guix import}
5814 The @command{guix import} command is useful for people who would like to
5815 add a package to the distribution with as little work as
5816 possible---a legitimate demand. The command knows of a few
5817 repositories from which it can ``import'' package metadata. The result
5818 is a package definition, or a template thereof, in the format we know
5819 (@pxref{Defining Packages}).
5820
5821 The general syntax is:
5822
5823 @example
5824 guix import @var{importer} @var{options}@dots{}
5825 @end example
5826
5827 @var{importer} specifies the source from which to import package
5828 metadata, and @var{options} specifies a package identifier and other
5829 options specific to @var{importer}. Currently, the available
5830 ``importers'' are:
5831
5832 @table @code
5833 @item gnu
5834 Import metadata for the given GNU package. This provides a template
5835 for the latest version of that GNU package, including the hash of its
5836 source tarball, and its canonical synopsis and description.
5837
5838 Additional information such as the package dependencies and its
5839 license needs to be figured out manually.
5840
5841 For example, the following command returns a package definition for
5842 GNU@tie{}Hello:
5843
5844 @example
5845 guix import gnu hello
5846 @end example
5847
5848 Specific command-line options are:
5849
5850 @table @code
5851 @item --key-download=@var{policy}
5852 As for @code{guix refresh}, specify the policy to handle missing OpenPGP
5853 keys when verifying the package signature. @xref{Invoking guix
5854 refresh, @code{--key-download}}.
5855 @end table
5856
5857 @item pypi
5858 @cindex pypi
5859 Import metadata from the @uref{https://pypi.python.org/, Python Package
5860 Index}@footnote{This functionality requires Guile-JSON to be installed.
5861 @xref{Requirements}.}. Information is taken from the JSON-formatted
5862 description available at @code{pypi.python.org} and usually includes all
5863 the relevant information, including package dependencies. For maximum
5864 efficiency, it is recommended to install the @command{unzip} utility, so
5865 that the importer can unzip Python wheels and gather data from them.
5866
5867 The command below imports metadata for the @code{itsdangerous} Python
5868 package:
5869
5870 @example
5871 guix import pypi itsdangerous
5872 @end example
5873
5874 @item gem
5875 @cindex gem
5876 Import metadata from @uref{https://rubygems.org/,
5877 RubyGems}@footnote{This functionality requires Guile-JSON to be
5878 installed. @xref{Requirements}.}. Information is taken from the
5879 JSON-formatted description available at @code{rubygems.org} and includes
5880 most relevant information, including runtime dependencies. There are
5881 some caveats, however. The metadata doesn't distinguish between
5882 synopses and descriptions, so the same string is used for both fields.
5883 Additionally, the details of non-Ruby dependencies required to build
5884 native extensions is unavailable and left as an exercise to the
5885 packager.
5886
5887 The command below imports metadata for the @code{rails} Ruby package:
5888
5889 @example
5890 guix import gem rails
5891 @end example
5892
5893 @item cpan
5894 @cindex CPAN
5895 Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}@footnote{This
5896 functionality requires Guile-JSON to be installed.
5897 @xref{Requirements}.}.
5898 Information is taken from the JSON-formatted metadata provided through
5899 @uref{https://api.metacpan.org/, MetaCPAN's API} and includes most
5900 relevant information, such as module dependencies. License information
5901 should be checked closely. If Perl is available in the store, then the
5902 @code{corelist} utility will be used to filter core modules out of the
5903 list of dependencies.
5904
5905 The command command below imports metadata for the @code{Acme::Boolean}
5906 Perl module:
5907
5908 @example
5909 guix import cpan Acme::Boolean
5910 @end example
5911
5912 @item cran
5913 @cindex CRAN
5914 @cindex Bioconductor
5915 Import metadata from @uref{http://cran.r-project.org/, CRAN}, the
5916 central repository for the @uref{http://r-project.org, GNU@tie{}R
5917 statistical and graphical environment}.
5918
5919 Information is extracted from the @code{DESCRIPTION} file of the package.
5920
5921 The command command below imports metadata for the @code{Cairo}
5922 R package:
5923
5924 @example
5925 guix import cran Cairo
5926 @end example
5927
5928 When @code{--recursive} is added, the importer will traverse the
5929 dependency graph of the given upstream package recursively and generate
5930 package expressions for all those packages that are not yet in Guix.
5931
5932 When @code{--archive=bioconductor} is added, metadata is imported from
5933 @uref{https://www.bioconductor.org/, Bioconductor}, a repository of R
5934 packages for for the analysis and comprehension of high-throughput
5935 genomic data in bioinformatics.
5936
5937 Information is extracted from the @code{DESCRIPTION} file of a package
5938 published on the web interface of the Bioconductor SVN repository.
5939
5940 The command below imports metadata for the @code{GenomicRanges}
5941 R package:
5942
5943 @example
5944 guix import cran --archive=bioconductor GenomicRanges
5945 @end example
5946
5947 @item texlive
5948 @cindex TeX Live
5949 @cindex CTAN
5950 Import metadata from @uref{http://www.ctan.org/, CTAN}, the
5951 comprehensive TeX archive network for TeX packages that are part of the
5952 @uref{https://www.tug.org/texlive/, TeX Live distribution}.
5953
5954 Information about the package is obtained through the XML API provided
5955 by CTAN, while the source code is downloaded from the SVN repository of
5956 the Tex Live project. This is done because the CTAN does not keep
5957 versioned archives.
5958
5959 The command command below imports metadata for the @code{fontspec}
5960 TeX package:
5961
5962 @example
5963 guix import texlive fontspec
5964 @end example
5965
5966 When @code{--archive=DIRECTORY} is added, the source code is downloaded
5967 not from the @file{latex} sub-directory of the @file{texmf-dist/source}
5968 tree in the TeX Live SVN repository, but from the specified sibling
5969 directory under the same root.
5970
5971 The command below imports metadata for the @code{ifxetex} package from
5972 CTAN while fetching the sources from the directory
5973 @file{texmf/source/generic}:
5974
5975 @example
5976 guix import texlive --archive=generic ifxetex
5977 @end example
5978
5979 @item json
5980 @cindex JSON, import
5981 Import package metadata from a local JSON file@footnote{This
5982 functionality requires Guile-JSON to be installed.
5983 @xref{Requirements}.}. Consider the following example package
5984 definition in JSON format:
5985
5986 @example
5987 @{
5988 "name": "hello",
5989 "version": "2.10",
5990 "source": "mirror://gnu/hello/hello-2.10.tar.gz",
5991 "build-system": "gnu",
5992 "home-page": "https://www.gnu.org/software/hello/",
5993 "synopsis": "Hello, GNU world: An example GNU package",
5994 "description": "GNU Hello prints a greeting.",
5995 "license": "GPL-3.0+",
5996 "native-inputs": ["gcc@@6"]
5997 @}
5998 @end example
5999
6000 The field names are the same as for the @code{<package>} record
6001 (@xref{Defining Packages}). References to other packages are provided
6002 as JSON lists of quoted package specification strings such as
6003 @code{guile} or @code{guile@@2.0}.
6004
6005 The importer also supports a more explicit source definition using the
6006 common fields for @code{<origin>} records:
6007
6008 @example
6009 @{
6010 @dots{}
6011 "source": @{
6012 "method": "url-fetch",
6013 "uri": "mirror://gnu/hello/hello-2.10.tar.gz",
6014 "sha256": @{
6015 "base32": "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"
6016 @}
6017 @}
6018 @dots{}
6019 @}
6020 @end example
6021
6022 The command below reads metadata from the JSON file @code{hello.json}
6023 and outputs a package expression:
6024
6025 @example
6026 guix import json hello.json
6027 @end example
6028
6029 @item nix
6030 Import metadata from a local copy of the source of the
6031 @uref{http://nixos.org/nixpkgs/, Nixpkgs distribution}@footnote{This
6032 relies on the @command{nix-instantiate} command of
6033 @uref{http://nixos.org/nix/, Nix}.}. Package definitions in Nixpkgs are
6034 typically written in a mixture of Nix-language and Bash code. This
6035 command only imports the high-level package structure that is written in
6036 the Nix language. It normally includes all the basic fields of a
6037 package definition.
6038
6039 When importing a GNU package, the synopsis and descriptions are replaced
6040 by their canonical upstream variant.
6041
6042 Usually, you will first need to do:
6043
6044 @example
6045 export NIX_REMOTE=daemon
6046 @end example
6047
6048 @noindent
6049 so that @command{nix-instantiate} does not try to open the Nix database.
6050
6051 As an example, the command below imports the package definition of
6052 LibreOffice (more precisely, it imports the definition of the package
6053 bound to the @code{libreoffice} top-level attribute):
6054
6055 @example
6056 guix import nix ~/path/to/nixpkgs libreoffice
6057 @end example
6058
6059 @item hackage
6060 @cindex hackage
6061 Import metadata from the Haskell community's central package archive
6062 @uref{https://hackage.haskell.org/, Hackage}. Information is taken from
6063 Cabal files and includes all the relevant information, including package
6064 dependencies.
6065
6066 Specific command-line options are:
6067
6068 @table @code
6069 @item --stdin
6070 @itemx -s
6071 Read a Cabal file from standard input.
6072 @item --no-test-dependencies
6073 @itemx -t
6074 Do not include dependencies required only by the test suites.
6075 @item --cabal-environment=@var{alist}
6076 @itemx -e @var{alist}
6077 @var{alist} is a Scheme alist defining the environment in which the
6078 Cabal conditionals are evaluated. The accepted keys are: @code{os},
6079 @code{arch}, @code{impl} and a string representing the name of a flag.
6080 The value associated with a flag has to be either the symbol
6081 @code{true} or @code{false}. The value associated with other keys
6082 has to conform to the Cabal file format definition. The default value
6083 associated with the keys @code{os}, @code{arch} and @code{impl} is
6084 @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively.
6085 @end table
6086
6087 The command below imports metadata for the latest version of the
6088 @code{HTTP} Haskell package without including test dependencies and
6089 specifying the value of the flag @samp{network-uri} as @code{false}:
6090
6091 @example
6092 guix import hackage -t -e "'((\"network-uri\" . false))" HTTP
6093 @end example
6094
6095 A specific package version may optionally be specified by following the
6096 package name by an at-sign and a version number as in the following example:
6097
6098 @example
6099 guix import hackage mtl@@2.1.3.1
6100 @end example
6101
6102 @item stackage
6103 @cindex stackage
6104 The @code{stackage} importer is a wrapper around the @code{hackage} one.
6105 It takes a package name, looks up the package version included in a
6106 long-term support (LTS) @uref{https://www.stackage.org, Stackage}
6107 release and uses the @code{hackage} importer to retrieve its metadata.
6108 Note that it is up to you to select an LTS release compatible with the
6109 GHC compiler used by Guix.
6110
6111 Specific command-line options are:
6112
6113 @table @code
6114 @item --no-test-dependencies
6115 @itemx -t
6116 Do not include dependencies required only by the test suites.
6117 @item --lts-version=@var{version}
6118 @itemx -r @var{version}
6119 @var{version} is the desired LTS release version. If omitted the latest
6120 release is used.
6121 @end table
6122
6123 The command below imports metadata for the @code{HTTP} Haskell package
6124 included in the LTS Stackage release version 7.18:
6125
6126 @example
6127 guix import stackage --lts-version=7.18 HTTP
6128 @end example
6129
6130 @item elpa
6131 @cindex elpa
6132 Import metadata from an Emacs Lisp Package Archive (ELPA) package
6133 repository (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
6134
6135 Specific command-line options are:
6136
6137 @table @code
6138 @item --archive=@var{repo}
6139 @itemx -a @var{repo}
6140 @var{repo} identifies the archive repository from which to retrieve the
6141 information. Currently the supported repositories and their identifiers
6142 are:
6143 @itemize -
6144 @item
6145 @uref{http://elpa.gnu.org/packages, GNU}, selected by the @code{gnu}
6146 identifier. This is the default.
6147
6148 Packages from @code{elpa.gnu.org} are signed with one of the keys
6149 contained in the GnuPG keyring at
6150 @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the
6151 @code{emacs} package (@pxref{Package Installation, ELPA package
6152 signatures,, emacs, The GNU Emacs Manual}).
6153
6154 @item
6155 @uref{http://stable.melpa.org/packages, MELPA-Stable}, selected by the
6156 @code{melpa-stable} identifier.
6157
6158 @item
6159 @uref{http://melpa.org/packages, MELPA}, selected by the @code{melpa}
6160 identifier.
6161 @end itemize
6162 @end table
6163
6164 @item crate
6165 @cindex crate
6166 Import metadata from the crates.io Rust package repository
6167 @uref{https://crates.io, crates.io}.
6168 @end table
6169
6170 The structure of the @command{guix import} code is modular. It would be
6171 useful to have more importers for other package formats, and your help
6172 is welcome here (@pxref{Contributing}).
6173
6174 @node Invoking guix refresh
6175 @section Invoking @command{guix refresh}
6176
6177 @cindex @command {guix refresh}
6178 The primary audience of the @command{guix refresh} command is developers
6179 of the GNU software distribution. By default, it reports any packages
6180 provided by the distribution that are outdated compared to the latest
6181 upstream version, like this:
6182
6183 @example
6184 $ guix refresh
6185 gnu/packages/gettext.scm:29:13: gettext would be upgraded from 0.18.1.1 to 0.18.2.1
6186 gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0
6187 @end example
6188
6189 Alternately, one can specify packages to consider, in which case a
6190 warning is emitted for packages that lack an updater:
6191
6192 @example
6193 $ guix refresh coreutils guile guile-ssh
6194 gnu/packages/ssh.scm:205:2: warning: no updater for guile-ssh
6195 gnu/packages/guile.scm:136:12: guile would be upgraded from 2.0.12 to 2.0.13
6196 @end example
6197
6198 @command{guix refresh} browses the upstream repository of each package and determines
6199 the highest version number of the releases therein. The command
6200 knows how to update specific types of packages: GNU packages, ELPA
6201 packages, etc.---see the documentation for @option{--type} below. There
6202 are many packages, though, for which it lacks a method to determine
6203 whether a new upstream release is available. However, the mechanism is
6204 extensible, so feel free to get in touch with us to add a new method!
6205
6206 When passed @code{--update}, it modifies distribution source files to
6207 update the version numbers and source tarball hashes of those package
6208 recipes (@pxref{Defining Packages}). This is achieved by downloading
6209 each package's latest source tarball and its associated OpenPGP
6210 signature, authenticating the downloaded tarball against its signature
6211 using @command{gpg}, and finally computing its hash. When the public
6212 key used to sign the tarball is missing from the user's keyring, an
6213 attempt is made to automatically retrieve it from a public key server;
6214 when this is successful, the key is added to the user's keyring; otherwise,
6215 @command{guix refresh} reports an error.
6216
6217 The following options are supported:
6218
6219 @table @code
6220
6221 @item --expression=@var{expr}
6222 @itemx -e @var{expr}
6223 Consider the package @var{expr} evaluates to.
6224
6225 This is useful to precisely refer to a package, as in this example:
6226
6227 @example
6228 guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'
6229 @end example
6230
6231 This command lists the dependents of the ``final'' libc (essentially all
6232 the packages.)
6233
6234 @item --update
6235 @itemx -u
6236 Update distribution source files (package recipes) in place. This is
6237 usually run from a checkout of the Guix source tree (@pxref{Running
6238 Guix Before It Is Installed}):
6239
6240 @example
6241 $ ./pre-inst-env guix refresh -s non-core -u
6242 @end example
6243
6244 @xref{Defining Packages}, for more information on package definitions.
6245
6246 @item --select=[@var{subset}]
6247 @itemx -s @var{subset}
6248 Select all the packages in @var{subset}, one of @code{core} or
6249 @code{non-core}.
6250
6251 The @code{core} subset refers to all the packages at the core of the
6252 distribution---i.e., packages that are used to build ``everything
6253 else''. This includes GCC, libc, Binutils, Bash, etc. Usually,
6254 changing one of these packages in the distribution entails a rebuild of
6255 all the others. Thus, such updates are an inconvenience to users in
6256 terms of build time or bandwidth used to achieve the upgrade.
6257
6258 The @code{non-core} subset refers to the remaining packages. It is
6259 typically useful in cases where an update of the core packages would be
6260 inconvenient.
6261
6262 @item --manifest=@var{file}
6263 @itemx -m @var{file}
6264 Select all the packages from the manifest in @var{file}. This is useful to
6265 check if any packages of the user manifest can be updated.
6266
6267 @item --type=@var{updater}
6268 @itemx -t @var{updater}
6269 Select only packages handled by @var{updater} (may be a comma-separated
6270 list of updaters). Currently, @var{updater} may be one of:
6271
6272 @table @code
6273 @item gnu
6274 the updater for GNU packages;
6275 @item gnome
6276 the updater for GNOME packages;
6277 @item kde
6278 the updater for KDE packages;
6279 @item xorg
6280 the updater for X.org packages;
6281 @item kernel.org
6282 the updater for packages hosted on kernel.org;
6283 @item elpa
6284 the updater for @uref{http://elpa.gnu.org/, ELPA} packages;
6285 @item cran
6286 the updater for @uref{http://cran.r-project.org/, CRAN} packages;
6287 @item bioconductor
6288 the updater for @uref{https://www.bioconductor.org/, Bioconductor} R packages;
6289 @item cpan
6290 the updater for @uref{http://www.cpan.org/, CPAN} packages;
6291 @item pypi
6292 the updater for @uref{https://pypi.python.org, PyPI} packages.
6293 @item gem
6294 the updater for @uref{https://rubygems.org, RubyGems} packages.
6295 @item github
6296 the updater for @uref{https://github.com, GitHub} packages.
6297 @item hackage
6298 the updater for @uref{https://hackage.haskell.org, Hackage} packages.
6299 @item stackage
6300 the updater for @uref{https://www.stackage.org, Stackage} packages.
6301 @item crate
6302 the updater for @uref{https://crates.io, Crates} packages.
6303 @end table
6304
6305 For instance, the following command only checks for updates of Emacs
6306 packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:
6307
6308 @example
6309 $ guix refresh --type=elpa,cran
6310 gnu/packages/statistics.scm:819:13: r-testthat would be upgraded from 0.10.0 to 0.11.0
6311 gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9
6312 @end example
6313
6314 @end table
6315
6316 In addition, @command{guix refresh} can be passed one or more package
6317 names, as in this example:
6318
6319 @example
6320 $ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8
6321 @end example
6322
6323 @noindent
6324 The command above specifically updates the @code{emacs} and
6325 @code{idutils} packages. The @code{--select} option would have no
6326 effect in this case.
6327
6328 When considering whether to upgrade a package, it is sometimes
6329 convenient to know which packages would be affected by the upgrade and
6330 should be checked for compatibility. For this the following option may
6331 be used when passing @command{guix refresh} one or more package names:
6332
6333 @table @code
6334
6335 @item --list-updaters
6336 @itemx -L
6337 List available updaters and exit (see @option{--type} above.)
6338
6339 For each updater, display the fraction of packages it covers; at the
6340 end, display the fraction of packages covered by all these updaters.
6341
6342 @item --list-dependent
6343 @itemx -l
6344 List top-level dependent packages that would need to be rebuilt as a
6345 result of upgrading one or more packages.
6346
6347 @xref{Invoking guix graph, the @code{reverse-package} type of
6348 @command{guix graph}}, for information on how to visualize the list of
6349 dependents of a package.
6350
6351 @end table
6352
6353 Be aware that the @code{--list-dependent} option only
6354 @emph{approximates} the rebuilds that would be required as a result of
6355 an upgrade. More rebuilds might be required under some circumstances.
6356
6357 @example
6358 $ guix refresh --list-dependent flex
6359 Building the following 120 packages would ensure 213 dependent packages are rebuilt:
6360 hop@@2.4.0 geiser@@0.4 notmuch@@0.18 mu@@0.9.9.5 cflow@@1.4 idutils@@4.6 @dots{}
6361 @end example
6362
6363 The command above lists a set of packages that could be built to check
6364 for compatibility with an upgraded @code{flex} package.
6365
6366 The following options can be used to customize GnuPG operation:
6367
6368 @table @code
6369
6370 @item --gpg=@var{command}
6371 Use @var{command} as the GnuPG 2.x command. @var{command} is searched
6372 for in @code{$PATH}.
6373
6374 @item --key-download=@var{policy}
6375 Handle missing OpenPGP keys according to @var{policy}, which may be one
6376 of:
6377
6378 @table @code
6379 @item always
6380 Always download missing OpenPGP keys from the key server, and add them
6381 to the user's GnuPG keyring.
6382
6383 @item never
6384 Never try to download missing OpenPGP keys. Instead just bail out.
6385
6386 @item interactive
6387 When a package signed with an unknown OpenPGP key is encountered, ask
6388 the user whether to download it or not. This is the default behavior.
6389 @end table
6390
6391 @item --key-server=@var{host}
6392 Use @var{host} as the OpenPGP key server when importing a public key.
6393
6394 @end table
6395
6396 The @code{github} updater uses the
6397 @uref{https://developer.github.com/v3/, GitHub API} to query for new
6398 releases. When used repeatedly e.g. when refreshing all packages,
6399 GitHub will eventually refuse to answer any further API requests. By
6400 default 60 API requests per hour are allowed, and a full refresh on all
6401 GitHub packages in Guix requires more than this. Authentication with
6402 GitHub through the use of an API token alleviates these limits. To use
6403 an API token, set the environment variable @code{GUIX_GITHUB_TOKEN} to a
6404 token procured from @uref{https://github.com/settings/tokens} or
6405 otherwise.
6406
6407
6408 @node Invoking guix lint
6409 @section Invoking @command{guix lint}
6410
6411 @cindex @command{guix lint}
6412 @cindex package, checking for errors
6413 The @command{guix lint} command is meant to help package developers avoid
6414 common errors and use a consistent style. It runs a number of checks on
6415 a given set of packages in order to find common mistakes in their
6416 definitions. Available @dfn{checkers} include (see
6417 @code{--list-checkers} for a complete list):
6418
6419 @table @code
6420 @item synopsis
6421 @itemx description
6422 Validate certain typographical and stylistic rules about package
6423 descriptions and synopses.
6424
6425 @item inputs-should-be-native
6426 Identify inputs that should most likely be native inputs.
6427
6428 @item source
6429 @itemx home-page
6430 @itemx mirror-url
6431 @itemx source-file-name
6432 Probe @code{home-page} and @code{source} URLs and report those that are
6433 invalid. Suggest a @code{mirror://} URL when applicable. Check that
6434 the source file name is meaningful, e.g. is not
6435 just a version number or ``git-checkout'', without a declared
6436 @code{file-name} (@pxref{origin Reference}).
6437
6438 @item cve
6439 @cindex security vulnerabilities
6440 @cindex CVE, Common Vulnerabilities and Exposures
6441 Report known vulnerabilities found in the Common Vulnerabilities and
6442 Exposures (CVE) databases of the current and past year
6443 @uref{https://nvd.nist.gov/download.cfm#CVE_FEED, published by the US
6444 NIST}.
6445
6446 To view information about a particular vulnerability, visit pages such as:
6447
6448 @itemize
6449 @item
6450 @indicateurl{https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD}
6451 @item
6452 @indicateurl{https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD}
6453 @end itemize
6454
6455 @noindent
6456 where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g.,
6457 @code{CVE-2015-7554}.
6458
6459 Package developers can specify in package recipes the
6460 @uref{https://nvd.nist.gov/cpe.cfm,Common Platform Enumeration (CPE)}
6461 name and version of the package when they differ from the name that Guix
6462 uses, as in this example:
6463
6464 @example
6465 (package
6466 (name "grub")
6467 ;; @dots{}
6468 ;; CPE calls this package "grub2".
6469 (properties '((cpe-name . "grub2"))))
6470 @end example
6471
6472 @item formatting
6473 Warn about obvious source code formatting issues: trailing white space,
6474 use of tabulations, etc.
6475 @end table
6476
6477 The general syntax is:
6478
6479 @example
6480 guix lint @var{options} @var{package}@dots{}
6481 @end example
6482
6483 If no package is given on the command line, then all packages are checked.
6484 The @var{options} may be zero or more of the following:
6485
6486 @table @code
6487 @item --list-checkers
6488 @itemx -l
6489 List and describe all the available checkers that will be run on packages
6490 and exit.
6491
6492 @item --checkers
6493 @itemx -c
6494 Only enable the checkers specified in a comma-separated list using the
6495 names returned by @code{--list-checkers}.
6496
6497 @end table
6498
6499 @node Invoking guix size
6500 @section Invoking @command{guix size}
6501
6502 @cindex size
6503 @cindex package size
6504 @cindex closure
6505 @cindex @command{guix size}
6506 The @command{guix size} command helps package developers profile the
6507 disk usage of packages. It is easy to overlook the impact of an
6508 additional dependency added to a package, or the impact of using a
6509 single output for a package that could easily be split (@pxref{Packages
6510 with Multiple Outputs}). Such are the typical issues that
6511 @command{guix size} can highlight.
6512
6513 The command can be passed a package specification such as @code{gcc@@4.8}
6514 or @code{guile:debug}, or a file name in the store. Consider this
6515 example:
6516
6517 @example
6518 $ guix size coreutils
6519 store item total self
6520 /gnu/store/@dots{}-coreutils-8.23 70.0 13.9 19.8%
6521 /gnu/store/@dots{}-gmp-6.0.0a 55.3 2.5 3.6%
6522 /gnu/store/@dots{}-acl-2.2.52 53.7 0.5 0.7%
6523 /gnu/store/@dots{}-attr-2.4.46 53.2 0.3 0.5%
6524 /gnu/store/@dots{}-gcc-4.8.4-lib 52.9 15.7 22.4%
6525 /gnu/store/@dots{}-glibc-2.21 37.2 37.2 53.1%
6526 @end example
6527
6528 @cindex closure
6529 The store items listed here constitute the @dfn{transitive closure} of
6530 Coreutils---i.e., Coreutils and all its dependencies, recursively---as
6531 would be returned by:
6532
6533 @example
6534 $ guix gc -R /gnu/store/@dots{}-coreutils-8.23
6535 @end example
6536
6537 Here the output shows three columns next to store items. The first column,
6538 labeled ``total'', shows the size in mebibytes (MiB) of the closure of
6539 the store item---that is, its own size plus the size of all its
6540 dependencies. The next column, labeled ``self'', shows the size of the
6541 item itself. The last column shows the ratio of the size of the item
6542 itself to the space occupied by all the items listed here.
6543
6544 In this example, we see that the closure of Coreutils weighs in at
6545 70@tie{}MiB, half of which is taken by libc. (That libc represents a
6546 large fraction of the closure is not a problem @i{per se} because it is
6547 always available on the system anyway.)
6548
6549 When the package passed to @command{guix size} is available in the
6550 store, @command{guix size} queries the daemon to determine its
6551 dependencies, and measures its size in the store, similar to @command{du
6552 -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU
6553 Coreutils}).
6554
6555 When the given package is @emph{not} in the store, @command{guix size}
6556 reports information based on the available substitutes
6557 (@pxref{Substitutes}). This makes it possible it to profile disk usage of
6558 store items that are not even on disk, only available remotely.
6559
6560 You can also specify several package names:
6561
6562 @example
6563 $ guix size coreutils grep sed bash
6564 store item total self
6565 /gnu/store/@dots{}-coreutils-8.24 77.8 13.8 13.4%
6566 /gnu/store/@dots{}-grep-2.22 73.1 0.8 0.8%
6567 /gnu/store/@dots{}-bash-4.3.42 72.3 4.7 4.6%
6568 /gnu/store/@dots{}-readline-6.3 67.6 1.2 1.2%
6569 @dots{}
6570 total: 102.3 MiB
6571 @end example
6572
6573 @noindent
6574 In this example we see that the combination of the four packages takes
6575 102.3@tie{}MiB in total, which is much less than the sum of each closure
6576 since they have a lot of dependencies in common.
6577
6578 The available options are:
6579
6580 @table @option
6581
6582 @item --substitute-urls=@var{urls}
6583 Use substitute information from @var{urls}.
6584 @xref{client-substitute-urls, the same option for @code{guix build}}.
6585
6586 @item --sort=@var{key}
6587 Sort lines according to @var{key}, one of the following options:
6588
6589 @table @code
6590 @item self
6591 the size of each item (the default);
6592 @item closure
6593 the total size of the item's closure.
6594 @end table
6595
6596 @item --map-file=@var{file}
6597 Write a graphical map of disk usage in PNG format to @var{file}.
6598
6599 For the example above, the map looks like this:
6600
6601 @image{images/coreutils-size-map,5in,, map of Coreutils disk usage
6602 produced by @command{guix size}}
6603
6604 This option requires that
6605 @uref{http://wingolog.org/software/guile-charting/, Guile-Charting} be
6606 installed and visible in Guile's module search path. When that is not
6607 the case, @command{guix size} fails as it tries to load it.
6608
6609 @item --system=@var{system}
6610 @itemx -s @var{system}
6611 Consider packages for @var{system}---e.g., @code{x86_64-linux}.
6612
6613 @end table
6614
6615 @node Invoking guix graph
6616 @section Invoking @command{guix graph}
6617
6618 @cindex DAG
6619 @cindex @command{guix graph}
6620 @cindex package dependencies
6621 Packages and their dependencies form a @dfn{graph}, specifically a
6622 directed acyclic graph (DAG). It can quickly become difficult to have a
6623 mental model of the package DAG, so the @command{guix graph} command
6624 provides a visual representation of the DAG. By default,
6625 @command{guix graph} emits a DAG representation in the input format of
6626 @uref{http://www.graphviz.org/, Graphviz}, so its output can be passed
6627 directly to the @command{dot} command of Graphviz. It can also emit an
6628 HTML page with embedded JavaScript code to display a ``chord diagram''
6629 in a Web browser, using the @uref{https://d3js.org/, d3.js} library, or
6630 emit Cypher queries to construct a graph in a graph database supporting
6631 the @uref{http://www.opencypher.org/, openCypher} query language.
6632 The general syntax is:
6633
6634 @example
6635 guix graph @var{options} @var{package}@dots{}
6636 @end example
6637
6638 For example, the following command generates a PDF file representing the
6639 package DAG for the GNU@tie{}Core Utilities, showing its build-time
6640 dependencies:
6641
6642 @example
6643 guix graph coreutils | dot -Tpdf > dag.pdf
6644 @end example
6645
6646 The output looks like this:
6647
6648 @image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}
6649
6650 Nice little graph, no?
6651
6652 But there is more than one graph! The one above is concise: it is the
6653 graph of package objects, omitting implicit inputs such as GCC, libc,
6654 grep, etc. It is often useful to have such a concise graph, but
6655 sometimes one may want to see more details. @command{guix graph} supports
6656 several types of graphs, allowing you to choose the level of detail:
6657
6658 @table @code
6659 @item package
6660 This is the default type used in the example above. It shows the DAG of
6661 package objects, excluding implicit dependencies. It is concise, but
6662 filters out many details.
6663
6664 @item reverse-package
6665 This shows the @emph{reverse} DAG of packages. For example:
6666
6667 @example
6668 guix graph --type=reverse-package ocaml
6669 @end example
6670
6671 ... yields the graph of packages that depend on OCaml.
6672
6673 Note that for core packages this can yield huge graphs. If all you want
6674 is to know the number of packages that depend on a given package, use
6675 @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh,
6676 @option{--list-dependent}}).
6677
6678 @item bag-emerged
6679 This is the package DAG, @emph{including} implicit inputs.
6680
6681 For instance, the following command:
6682
6683 @example
6684 guix graph --type=bag-emerged coreutils | dot -Tpdf > dag.pdf
6685 @end example
6686
6687 ... yields this bigger graph:
6688
6689 @image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}
6690
6691 At the bottom of the graph, we see all the implicit inputs of
6692 @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}}).
6693
6694 Now, note that the dependencies of these implicit inputs---that is, the
6695 @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown
6696 here, for conciseness.
6697
6698 @item bag
6699 Similar to @code{bag-emerged}, but this time including all the bootstrap
6700 dependencies.
6701
6702 @item bag-with-origins
6703 Similar to @code{bag}, but also showing origins and their dependencies.
6704
6705 @item derivation
6706 This is the most detailed representation: It shows the DAG of
6707 derivations (@pxref{Derivations}) and plain store items. Compared to
6708 the above representation, many additional nodes are visible, including
6709 build scripts, patches, Guile modules, etc.
6710
6711 For this type of graph, it is also possible to pass a @file{.drv} file
6712 name instead of a package name, as in:
6713
6714 @example
6715 guix graph -t derivation `guix system build -d my-config.scm`
6716 @end example
6717 @end table
6718
6719 All the types above correspond to @emph{build-time dependencies}. The
6720 following graph type represents the @emph{run-time dependencies}:
6721
6722 @table @code
6723 @item references
6724 This is the graph of @dfn{references} of a package output, as returned
6725 by @command{guix gc --references} (@pxref{Invoking guix gc}).
6726
6727 If the given package output is not available in the store, @command{guix
6728 graph} attempts to obtain dependency information from substitutes.
6729
6730 Here you can also pass a store file name instead of a package name. For
6731 example, the command below produces the reference graph of your profile
6732 (which can be big!):
6733
6734 @example
6735 guix graph -t references `readlink -f ~/.guix-profile`
6736 @end example
6737
6738 @item referrers
6739 This is the graph of the @dfn{referrers} of a store item, as returned by
6740 @command{guix gc --referrers} (@pxref{Invoking guix gc}).
6741
6742 This relies exclusively on local information from your store. For
6743 instance, let us suppose that the current Inkscape is available in 10
6744 profiles on your machine; @command{guix graph -t referrers inkscape}
6745 will show a graph rooted at Inkscape and with those 10 profiles linked
6746 to it.
6747
6748 It can help determine what is preventing a store item from being garbage
6749 collected.
6750
6751 @end table
6752
6753 The available options are the following:
6754
6755 @table @option
6756 @item --type=@var{type}
6757 @itemx -t @var{type}
6758 Produce a graph output of @var{type}, where @var{type} must be one of
6759 the values listed above.
6760
6761 @item --list-types
6762 List the supported graph types.
6763
6764 @item --backend=@var{backend}
6765 @itemx -b @var{backend}
6766 Produce a graph using the selected @var{backend}.
6767
6768 @item --list-backends
6769 List the supported graph backends.
6770
6771 Currently, the available backends are Graphviz and d3.js.
6772
6773 @item --expression=@var{expr}
6774 @itemx -e @var{expr}
6775 Consider the package @var{expr} evaluates to.
6776
6777 This is useful to precisely refer to a package, as in this example:
6778
6779 @example
6780 guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'
6781 @end example
6782 @end table
6783
6784
6785 @node Invoking guix environment
6786 @section Invoking @command{guix environment}
6787
6788 @cindex reproducible build environments
6789 @cindex development environments
6790 @cindex @command{guix environment}
6791 @cindex environment, package build environment
6792 The purpose of @command{guix environment} is to assist hackers in
6793 creating reproducible development environments without polluting their
6794 package profile. The @command{guix environment} tool takes one or more
6795 packages, builds all of their inputs, and creates a shell
6796 environment to use them.
6797
6798 The general syntax is:
6799
6800 @example
6801 guix environment @var{options} @var{package}@dots{}
6802 @end example
6803
6804 The following example spawns a new shell set up for the development of
6805 GNU@tie{}Guile:
6806
6807 @example
6808 guix environment guile
6809 @end example
6810
6811 If the needed dependencies are not built yet, @command{guix environment}
6812 automatically builds them. The environment of the new shell is an augmented
6813 version of the environment that @command{guix environment} was run in.
6814 It contains the necessary search paths for building the given package
6815 added to the existing environment variables. To create a ``pure''
6816 environment, in which the original environment variables have been unset,
6817 use the @code{--pure} option@footnote{Users sometimes wrongfully augment
6818 environment variables such as @code{PATH} in their @file{~/.bashrc}
6819 file. As a consequence, when @code{guix environment} launches it, Bash
6820 may read @file{~/.bashrc}, thereby introducing ``impurities'' in these
6821 environment variables. It is an error to define such environment
6822 variables in @file{.bashrc}; instead, they should be defined in
6823 @file{.bash_profile}, which is sourced only by log-in shells.
6824 @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for
6825 details on Bash start-up files.}.
6826
6827 @vindex GUIX_ENVIRONMENT
6828 @command{guix environment} defines the @code{GUIX_ENVIRONMENT}
6829 variable in the shell it spawns; its value is the file name of the
6830 profile of this environment. This allows users to, say, define a
6831 specific prompt for development environments in their @file{.bashrc}
6832 (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):
6833
6834 @example
6835 if [ -n "$GUIX_ENVIRONMENT" ]
6836 then
6837 export PS1="\u@@\h \w [dev]\$ "
6838 fi
6839 @end example
6840
6841 @noindent
6842 ... or to browse the profile:
6843
6844 @example
6845 $ ls "$GUIX_ENVIRONMENT/bin"
6846 @end example
6847
6848 Additionally, more than one package may be specified, in which case the
6849 union of the inputs for the given packages are used. For example, the
6850 command below spawns a shell where all of the dependencies of both Guile
6851 and Emacs are available:
6852
6853 @example
6854 guix environment guile emacs
6855 @end example
6856
6857 Sometimes an interactive shell session is not desired. An arbitrary
6858 command may be invoked by placing the @code{--} token to separate the
6859 command from the rest of the arguments:
6860
6861 @example
6862 guix environment guile -- make -j4
6863 @end example
6864
6865 In other situations, it is more convenient to specify the list of
6866 packages needed in the environment. For example, the following command
6867 runs @command{python} from an environment containing Python@tie{}2.7 and
6868 NumPy:
6869
6870 @example
6871 guix environment --ad-hoc python2-numpy python-2.7 -- python
6872 @end example
6873
6874 Furthermore, one might want the dependencies of a package and also some
6875 additional packages that are not build-time or runtime dependencies, but
6876 are useful when developing nonetheless. Because of this, the
6877 @code{--ad-hoc} flag is positional. Packages appearing before
6878 @code{--ad-hoc} are interpreted as packages whose dependencies will be
6879 added to the environment. Packages appearing after are interpreted as
6880 packages that will be added to the environment directly. For example,
6881 the following command creates a Guix development environment that
6882 additionally includes Git and strace:
6883
6884 @example
6885 guix environment guix --ad-hoc git strace
6886 @end example
6887
6888 Sometimes it is desirable to isolate the environment as much as
6889 possible, for maximal purity and reproducibility. In particular, when
6890 using Guix on a host distro that is not GuixSD, it is desirable to
6891 prevent access to @file{/usr/bin} and other system-wide resources from
6892 the development environment. For example, the following command spawns
6893 a Guile REPL in a ``container'' where only the store and the current
6894 working directory are mounted:
6895
6896 @example
6897 guix environment --ad-hoc --container guile -- guile
6898 @end example
6899
6900 @quotation Note
6901 The @code{--container} option requires Linux-libre 3.19 or newer.
6902 @end quotation
6903
6904 The available options are summarized below.
6905
6906 @table @code
6907 @item --root=@var{file}
6908 @itemx -r @var{file}
6909 @cindex persistent environment
6910 @cindex garbage collector root, for environments
6911 Make @var{file} a symlink to the profile for this environment, and
6912 register it as a garbage collector root.
6913
6914 This is useful if you want to protect your environment from garbage
6915 collection, to make it ``persistent''.
6916
6917 When this option is omitted, the environment is protected from garbage
6918 collection only for the duration of the @command{guix environment}
6919 session. This means that next time you recreate the same environment,
6920 you could have to rebuild or re-download packages. @xref{Invoking guix
6921 gc}, for more on GC roots.
6922
6923 @item --expression=@var{expr}
6924 @itemx -e @var{expr}
6925 Create an environment for the package or list of packages that
6926 @var{expr} evaluates to.
6927
6928 For example, running:
6929
6930 @example
6931 guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'
6932 @end example
6933
6934 starts a shell with the environment for this specific variant of the
6935 PETSc package.
6936
6937 Running:
6938
6939 @example
6940 guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'
6941 @end example
6942
6943 starts a shell with all the GuixSD base packages available.
6944
6945 The above commands only use the default output of the given packages.
6946 To select other outputs, two element tuples can be specified:
6947
6948 @example
6949 guix environment --ad-hoc -e '(list (@ (gnu packages bash) bash) "include")'
6950 @end example
6951
6952 @item --load=@var{file}
6953 @itemx -l @var{file}
6954 Create an environment for the package or list of packages that the code
6955 within @var{file} evaluates to.
6956
6957 As an example, @var{file} might contain a definition like this
6958 (@pxref{Defining Packages}):
6959
6960 @example
6961 @verbatiminclude environment-gdb.scm
6962 @end example
6963
6964 @item --ad-hoc
6965 Include all specified packages in the resulting environment, as if an
6966 @i{ad hoc} package were defined with them as inputs. This option is
6967 useful for quickly creating an environment without having to write a
6968 package expression to contain the desired inputs.
6969
6970 For instance, the command:
6971
6972 @example
6973 guix environment --ad-hoc guile guile-sdl -- guile
6974 @end example
6975
6976 runs @command{guile} in an environment where Guile and Guile-SDL are
6977 available.
6978
6979 Note that this example implicitly asks for the default output of
6980 @code{guile} and @code{guile-sdl}, but it is possible to ask for a
6981 specific output---e.g., @code{glib:bin} asks for the @code{bin} output
6982 of @code{glib} (@pxref{Packages with Multiple Outputs}).
6983
6984 This option may be composed with the default behavior of @command{guix
6985 environment}. Packages appearing before @code{--ad-hoc} are interpreted
6986 as packages whose dependencies will be added to the environment, the
6987 default behavior. Packages appearing after are interpreted as packages
6988 that will be added to the environment directly.
6989
6990 @item --pure
6991 Unset existing environment variables when building the new environment.
6992 This has the effect of creating an environment in which search paths
6993 only contain package inputs.
6994
6995 @item --search-paths
6996 Display the environment variable definitions that make up the
6997 environment.
6998
6999 @item --system=@var{system}
7000 @itemx -s @var{system}
7001 Attempt to build for @var{system}---e.g., @code{i686-linux}.
7002
7003 @item --container
7004 @itemx -C
7005 @cindex container
7006 Run @var{command} within an isolated container. The current working
7007 directory outside the container is mapped inside the container.
7008 Additionally, a dummy home directory is created that matches the current
7009 user's home directory, and @file{/etc/passwd} is configured accordingly.
7010 The spawned process runs as the current user outside the container, but
7011 has root privileges in the context of the container.
7012
7013 @item --network
7014 @itemx -N
7015 For containers, share the network namespace with the host system.
7016 Containers created without this flag only have access to the loopback
7017 device.
7018
7019 @item --expose=@var{source}[=@var{target}]
7020 For containers, expose the file system @var{source} from the host system
7021 as the read-only file system @var{target} within the container. If
7022 @var{target} is not specified, @var{source} is used as the target mount
7023 point in the container.
7024
7025 The example below spawns a Guile REPL in a container in which the user's
7026 home directory is accessible read-only via the @file{/exchange}
7027 directory:
7028
7029 @example
7030 guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile
7031 @end example
7032
7033 @item --share=@var{source}[=@var{target}]
7034 For containers, share the file system @var{source} from the host system
7035 as the writable file system @var{target} within the container. If
7036 @var{target} is not specified, @var{source} is used as the target mount
7037 point in the container.
7038
7039 The example below spawns a Guile REPL in a container in which the user's
7040 home directory is accessible for both reading and writing via the
7041 @file{/exchange} directory:
7042
7043 @example
7044 guix environment --container --share=$HOME=/exchange --ad-hoc guile -- guile
7045 @end example
7046 @end table
7047
7048 @command{guix environment}
7049 also supports all of the common build options that @command{guix
7050 build} supports (@pxref{Common Build Options}).
7051
7052
7053 @node Invoking guix publish
7054 @section Invoking @command{guix publish}
7055
7056 @cindex @command{guix publish}
7057 The purpose of @command{guix publish} is to enable users to easily share
7058 their store with others, who can then use it as a substitute server
7059 (@pxref{Substitutes}).
7060
7061 When @command{guix publish} runs, it spawns an HTTP server which allows
7062 anyone with network access to obtain substitutes from it. This means
7063 that any machine running Guix can also act as if it were a build farm,
7064 since the HTTP interface is compatible with Hydra, the software behind
7065 the @code{hydra.gnu.org} build farm.
7066
7067 For security, each substitute is signed, allowing recipients to check
7068 their authenticity and integrity (@pxref{Substitutes}). Because
7069 @command{guix publish} uses the signing key of the system, which is only
7070 readable by the system administrator, it must be started as root; the
7071 @code{--user} option makes it drop root privileges early on.
7072
7073 The signing key pair must be generated before @command{guix publish} is
7074 launched, using @command{guix archive --generate-key} (@pxref{Invoking
7075 guix archive}).
7076
7077 The general syntax is:
7078
7079 @example
7080 guix publish @var{options}@dots{}
7081 @end example
7082
7083 Running @command{guix publish} without any additional arguments will
7084 spawn an HTTP server on port 8080:
7085
7086 @example
7087 guix publish
7088 @end example
7089
7090 Once a publishing server has been authorized (@pxref{Invoking guix
7091 archive}), the daemon may download substitutes from it:
7092
7093 @example
7094 guix-daemon --substitute-urls=http://example.org:8080
7095 @end example
7096
7097 By default, @command{guix publish} compresses archives on the fly as it
7098 serves them. This ``on-the-fly'' mode is convenient in that it requires
7099 no setup and is immediately available. However, when serving lots of
7100 clients, we recommend using the @option{--cache} option, which enables
7101 caching of the archives before they are sent to clients---see below for
7102 details. The @command{guix weather} command provides a handy way to
7103 check what a server provides (@pxref{Invoking guix weather}).
7104
7105 As a bonus, @command{guix publish} also serves as a content-addressed
7106 mirror for source files referenced in @code{origin} records
7107 (@pxref{origin Reference}). For instance, assuming @command{guix
7108 publish} is running on @code{example.org}, the following URL returns the
7109 raw @file{hello-2.10.tar.gz} file with the given SHA256 hash
7110 (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):
7111
7112 @example
7113 http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i
7114 @end example
7115
7116 Obviously, these URLs only work for files that are in the store; in
7117 other cases, they return 404 (``Not Found'').
7118
7119 The following options are available:
7120
7121 @table @code
7122 @item --port=@var{port}
7123 @itemx -p @var{port}
7124 Listen for HTTP requests on @var{port}.
7125
7126 @item --listen=@var{host}
7127 Listen on the network interface for @var{host}. The default is to
7128 accept connections from any interface.
7129
7130 @item --user=@var{user}
7131 @itemx -u @var{user}
7132 Change privileges to @var{user} as soon as possible---i.e., once the
7133 server socket is open and the signing key has been read.
7134
7135 @item --compression[=@var{level}]
7136 @itemx -C [@var{level}]
7137 Compress data using the given @var{level}. When @var{level} is zero,
7138 disable compression. The range 1 to 9 corresponds to different gzip
7139 compression levels: 1 is the fastest, and 9 is the best (CPU-intensive).
7140 The default is 3.
7141
7142 Unless @option{--cache} is used, compression occurs on the fly and
7143 the compressed streams are not
7144 cached. Thus, to reduce load on the machine that runs @command{guix
7145 publish}, it may be a good idea to choose a low compression level, to
7146 run @command{guix publish} behind a caching proxy, or to use
7147 @option{--cache}. Using @option{--cache} has the advantage that it
7148 allows @command{guix publish} to add @code{Content-Length} HTTP header
7149 to its responses.
7150
7151 @item --cache=@var{directory}
7152 @itemx -c @var{directory}
7153 Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory}
7154 and only serve archives that are in cache.
7155
7156 When this option is omitted, archives and meta-data are created
7157 on-the-fly. This can reduce the available bandwidth, especially when
7158 compression is enabled, since this may become CPU-bound. Another
7159 drawback of the default mode is that the length of archives is not known
7160 in advance, so @command{guix publish} does not add a
7161 @code{Content-Length} HTTP header to its responses, which in turn
7162 prevents clients from knowing the amount of data being downloaded.
7163
7164 Conversely, when @option{--cache} is used, the first request for a store
7165 item (@i{via} a @code{.narinfo} URL) returns 404 and triggers a
7166 background process to @dfn{bake} the archive---computing its
7167 @code{.narinfo} and compressing the archive, if needed. Once the
7168 archive is cached in @var{directory}, subsequent requests succeed and
7169 are served directly from the cache, which guarantees that clients get
7170 the best possible bandwidth.
7171
7172 The ``baking'' process is performed by worker threads. By default, one
7173 thread per CPU core is created, but this can be customized. See
7174 @option{--workers} below.
7175
7176 When @option{--ttl} is used, cached entries are automatically deleted
7177 when they have expired.
7178
7179 @item --workers=@var{N}
7180 When @option{--cache} is used, request the allocation of @var{N} worker
7181 threads to ``bake'' archives.
7182
7183 @item --ttl=@var{ttl}
7184 Produce @code{Cache-Control} HTTP headers that advertise a time-to-live
7185 (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5
7186 days, @code{1m} means 1 month, and so on.
7187
7188 This allows the user's Guix to keep substitute information in cache for
7189 @var{ttl}. However, note that @code{guix publish} does not itself
7190 guarantee that the store items it provides will indeed remain available
7191 for as long as @var{ttl}.
7192
7193 Additionally, when @option{--cache} is used, cached entries that have
7194 not been accessed for @var{ttl} and that no longer have a corresponding
7195 item in the store, may be deleted.
7196
7197 @item --nar-path=@var{path}
7198 Use @var{path} as the prefix for the URLs of ``nar'' files
7199 (@pxref{Invoking guix archive, normalized archives}).
7200
7201 By default, nars are served at a URL such as
7202 @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to
7203 change the @code{/nar} part to @var{path}.
7204
7205 @item --public-key=@var{file}
7206 @itemx --private-key=@var{file}
7207 Use the specific @var{file}s as the public/private key pair used to sign
7208 the store items being published.
7209
7210 The files must correspond to the same key pair (the private key is used
7211 for signing and the public key is merely advertised in the signature
7212 metadata). They must contain keys in the canonical s-expression format
7213 as produced by @command{guix archive --generate-key} (@pxref{Invoking
7214 guix archive}). By default, @file{/etc/guix/signing-key.pub} and
7215 @file{/etc/guix/signing-key.sec} are used.
7216
7217 @item --repl[=@var{port}]
7218 @itemx -r [@var{port}]
7219 Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile
7220 Reference Manual}) on @var{port} (37146 by default). This is used
7221 primarily for debugging a running @command{guix publish} server.
7222 @end table
7223
7224 Enabling @command{guix publish} on a GuixSD system is a one-liner: just
7225 instantiate a @code{guix-publish-service-type} service in the @code{services} field
7226 of the @code{operating-system} declaration (@pxref{guix-publish-service-type,
7227 @code{guix-publish-service-type}}).
7228
7229 If you are instead running Guix on a ``foreign distro'', follow these
7230 instructions:”
7231
7232 @itemize
7233 @item
7234 If your host distro uses the systemd init system:
7235
7236 @example
7237 # ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \
7238 /etc/systemd/system/
7239 # systemctl start guix-publish && systemctl enable guix-publish
7240 @end example
7241
7242 @item
7243 If your host distro uses the Upstart init system:
7244
7245 @example
7246 # ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/
7247 # start guix-publish
7248 @end example
7249
7250 @item
7251 Otherwise, proceed similarly with your distro's init system.
7252 @end itemize
7253
7254 @node Invoking guix challenge
7255 @section Invoking @command{guix challenge}
7256
7257 @cindex reproducible builds
7258 @cindex verifiable builds
7259 @cindex @command{guix challenge}
7260 @cindex challenge
7261 Do the binaries provided by this server really correspond to the source
7262 code it claims to build? Is a package build process deterministic?
7263 These are the questions the @command{guix challenge} command attempts to
7264 answer.
7265
7266 The former is obviously an important question: Before using a substitute
7267 server (@pxref{Substitutes}), one had better @emph{verify} that it
7268 provides the right binaries, and thus @emph{challenge} it. The latter
7269 is what enables the former: If package builds are deterministic, then
7270 independent builds of the package should yield the exact same result,
7271 bit for bit; if a server provides a binary different from the one
7272 obtained locally, it may be either corrupt or malicious.
7273
7274 We know that the hash that shows up in @file{/gnu/store} file names is
7275 the hash of all the inputs of the process that built the file or
7276 directory---compilers, libraries, build scripts,
7277 etc. (@pxref{Introduction}). Assuming deterministic build processes,
7278 one store file name should map to exactly one build output.
7279 @command{guix challenge} checks whether there is, indeed, a single
7280 mapping by comparing the build outputs of several independent builds of
7281 any given store item.
7282
7283 The command output looks like this:
7284
7285 @smallexample
7286 $ guix challenge --substitute-urls="https://hydra.gnu.org https://guix.example.org"
7287 updating list of substitutes from 'https://hydra.gnu.org'... 100.0%
7288 updating list of substitutes from 'https://guix.example.org'... 100.0%
7289 /gnu/store/@dots{}-openssl-1.0.2d contents differ:
7290 local hash: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
7291 https://hydra.gnu.org/nar/@dots{}-openssl-1.0.2d: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
7292 https://guix.example.org/nar/@dots{}-openssl-1.0.2d: 1zy4fmaaqcnjrzzajkdn3f5gmjk754b43qkq47llbyak9z0qjyim
7293 /gnu/store/@dots{}-git-2.5.0 contents differ:
7294 local hash: 00p3bmryhjxrhpn2gxs2fy0a15lnip05l97205pgbk5ra395hyha
7295 https://hydra.gnu.org/nar/@dots{}-git-2.5.0: 069nb85bv4d4a6slrwjdy8v1cn4cwspm3kdbmyb81d6zckj3nq9f
7296 https://guix.example.org/nar/@dots{}-git-2.5.0: 0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
7297 /gnu/store/@dots{}-pius-2.1.1 contents differ:
7298 local hash: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
7299 https://hydra.gnu.org/nar/@dots{}-pius-2.1.1: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
7300 https://guix.example.org/nar/@dots{}-pius-2.1.1: 1cy25x1a4fzq5rk0pmvc8xhwyffnqz95h2bpvqsz2mpvlbccy0gs
7301
7302 @dots{}
7303
7304 6,406 store items were analyzed:
7305 - 4,749 (74.1%) were identical
7306 - 525 (8.2%) differed
7307 - 1,132 (17.7%) were inconclusive
7308 @end smallexample
7309
7310 @noindent
7311 In this example, @command{guix challenge} first scans the store to
7312 determine the set of locally-built derivations---as opposed to store
7313 items that were downloaded from a substitute server---and then queries
7314 all the substitute servers. It then reports those store items for which
7315 the servers obtained a result different from the local build.
7316
7317 @cindex non-determinism, in package builds
7318 As an example, @code{guix.example.org} always gets a different answer.
7319 Conversely, @code{hydra.gnu.org} agrees with local builds, except in the
7320 case of Git. This might indicate that the build process of Git is
7321 non-deterministic, meaning that its output varies as a function of
7322 various things that Guix does not fully control, in spite of building
7323 packages in isolated environments (@pxref{Features}). Most common
7324 sources of non-determinism include the addition of timestamps in build
7325 results, the inclusion of random numbers, and directory listings sorted
7326 by inode number. See @uref{https://reproducible-builds.org/docs/}, for
7327 more information.
7328
7329 To find out what is wrong with this Git binary, we can do something along
7330 these lines (@pxref{Invoking guix archive}):
7331
7332 @example
7333 $ wget -q -O - https://hydra.gnu.org/nar/@dots{}-git-2.5.0 \
7334 | guix archive -x /tmp/git
7335 $ diff -ur --no-dereference /gnu/store/@dots{}-git.2.5.0 /tmp/git
7336 @end example
7337
7338 This command shows the difference between the files resulting from the
7339 local build, and the files resulting from the build on
7340 @code{hydra.gnu.org} (@pxref{Overview, Comparing and Merging Files,,
7341 diffutils, Comparing and Merging Files}). The @command{diff} command
7342 works great for text files. When binary files differ, a better option
7343 is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps
7344 visualize differences for all kinds of files.
7345
7346 Once you have done that work, you can tell whether the differences are due
7347 to a non-deterministic build process or to a malicious server. We try
7348 hard to remove sources of non-determinism in packages to make it easier
7349 to verify substitutes, but of course, this is a process that
7350 involves not just Guix, but a large part of the free software community.
7351 In the meantime, @command{guix challenge} is one tool to help address
7352 the problem.
7353
7354 If you are writing packages for Guix, you are encouraged to check
7355 whether @code{hydra.gnu.org} and other substitute servers obtain the
7356 same build result as you did with:
7357
7358 @example
7359 $ guix challenge @var{package}
7360 @end example
7361
7362 @noindent
7363 where @var{package} is a package specification such as
7364 @code{guile@@2.0} or @code{glibc:debug}.
7365
7366 The general syntax is:
7367
7368 @example
7369 guix challenge @var{options} [@var{packages}@dots{}]
7370 @end example
7371
7372 When a difference is found between the hash of a locally-built item and
7373 that of a server-provided substitute, or among substitutes provided by
7374 different servers, the command displays it as in the example above and
7375 its exit code is 2 (other non-zero exit codes denote other kinds of
7376 errors.)
7377
7378 The one option that matters is:
7379
7380 @table @code
7381
7382 @item --substitute-urls=@var{urls}
7383 Consider @var{urls} the whitespace-separated list of substitute source
7384 URLs to compare to.
7385
7386 @item --verbose
7387 @itemx -v
7388 Show details about matches (identical contents) in addition to
7389 information about mismatches.
7390
7391 @end table
7392
7393 @node Invoking guix copy
7394 @section Invoking @command{guix copy}
7395
7396 @cindex copy, of store items, over SSH
7397 @cindex SSH, copy of store items
7398 @cindex sharing store items across machines
7399 @cindex transferring store items across machines
7400 The @command{guix copy} command copies items from the store of one
7401 machine to that of another machine over a secure shell (SSH)
7402 connection@footnote{This command is available only when Guile-SSH was
7403 found. @xref{Requirements}, for details.}. For example, the following
7404 command copies the @code{coreutils} package, the user's profile, and all
7405 their dependencies over to @var{host}, logged in as @var{user}:
7406
7407 @example
7408 guix copy --to=@var{user}@@@var{host} \
7409 coreutils `readlink -f ~/.guix-profile`
7410 @end example
7411
7412 If some of the items to be copied are already present on @var{host},
7413 they are not actually sent.
7414
7415 The command below retrieves @code{libreoffice} and @code{gimp} from
7416 @var{host}, assuming they are available there:
7417
7418 @example
7419 guix copy --from=@var{host} libreoffice gimp
7420 @end example
7421
7422 The SSH connection is established using the Guile-SSH client, which is
7423 compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and
7424 @file{~/.ssh/config}, and uses the SSH agent for authentication.
7425
7426 The key used to sign items that are sent must be accepted by the remote
7427 machine. Likewise, the key used by the remote machine to sign items you
7428 are retrieving must be in @file{/etc/guix/acl} so it is accepted by your
7429 own daemon. @xref{Invoking guix archive}, for more information about
7430 store item authentication.
7431
7432 The general syntax is:
7433
7434 @example
7435 guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}
7436 @end example
7437
7438 You must always specify one of the following options:
7439
7440 @table @code
7441 @item --to=@var{spec}
7442 @itemx --from=@var{spec}
7443 Specify the host to send to or receive from. @var{spec} must be an SSH
7444 spec such as @code{example.org}, @code{charlie@@example.org}, or
7445 @code{charlie@@example.org:2222}.
7446 @end table
7447
7448 The @var{items} can be either package names, such as @code{gimp}, or
7449 store items, such as @file{/gnu/store/@dots{}-idutils-4.6}.
7450
7451 When specifying the name of a package to send, it is first built if
7452 needed, unless @option{--dry-run} was specified. Common build options
7453 are supported (@pxref{Common Build Options}).
7454
7455
7456 @node Invoking guix container
7457 @section Invoking @command{guix container}
7458 @cindex container
7459 @cindex @command{guix container}
7460 @quotation Note
7461 As of version @value{VERSION}, this tool is experimental. The interface
7462 is subject to radical change in the future.
7463 @end quotation
7464
7465 The purpose of @command{guix container} is to manipulate processes
7466 running within an isolated environment, commonly known as a
7467 ``container'', typically created by the @command{guix environment}
7468 (@pxref{Invoking guix environment}) and @command{guix system container}
7469 (@pxref{Invoking guix system}) commands.
7470
7471 The general syntax is:
7472
7473 @example
7474 guix container @var{action} @var{options}@dots{}
7475 @end example
7476
7477 @var{action} specifies the operation to perform with a container, and
7478 @var{options} specifies the context-specific arguments for the action.
7479
7480 The following actions are available:
7481
7482 @table @code
7483 @item exec
7484 Execute a command within the context of a running container.
7485
7486 The syntax is:
7487
7488 @example
7489 guix container exec @var{pid} @var{program} @var{arguments}@dots{}
7490 @end example
7491
7492 @var{pid} specifies the process ID of the running container.
7493 @var{program} specifies an executable file name within the root file
7494 system of the container. @var{arguments} are the additional options that
7495 will be passed to @var{program}.
7496
7497 The following command launches an interactive login shell inside a
7498 GuixSD container, started by @command{guix system container}, and whose
7499 process ID is 9001:
7500
7501 @example
7502 guix container exec 9001 /run/current-system/profile/bin/bash --login
7503 @end example
7504
7505 Note that the @var{pid} cannot be the parent process of a container. It
7506 must be PID 1 of the container or one of its child processes.
7507
7508 @end table
7509
7510 @node Invoking guix weather
7511 @section Invoking @command{guix weather}
7512
7513 Occasionally you're grumpy because substitutes are lacking and you end
7514 up building packages by yourself (@pxref{Substitutes}). The
7515 @command{guix weather} command reports on substitute availability on the
7516 specified servers so you can have an idea of whether you'll be grumpy
7517 today. It can sometimes be useful info as a user, but it is primarily
7518 useful to people running @command{guix publish} (@pxref{Invoking guix
7519 publish}).
7520
7521 @cindex statistics, for substitutes
7522 @cindex availability of substitutes
7523 @cindex substitute availability
7524 @cindex weather, substitute availability
7525 Here's a sample run:
7526
7527 @example
7528 $ guix weather --substitute-urls=https://guix.example.org
7529 computing 5,872 package derivations for x86_64-linux...
7530 looking for 6,128 store items on https://guix.example.org..
7531 updating list of substitutes from 'https://guix.example.org'... 100.0%
7532 https://guix.example.org
7533 43.4% substitutes available (2,658 out of 6,128)
7534 7,032.5 MiB of nars (compressed)
7535 19,824.2 MiB on disk (uncompressed)
7536 0.030 seconds per request (182.9 seconds in total)
7537 33.5 requests per second
7538 @end example
7539
7540 As you can see, it reports the fraction of all the packages for which
7541 substitutes are available on the server---regardless of whether
7542 substitutes are enabled, and regardless of whether this server's signing
7543 key is authorized. It also reports the size of the compressed archives
7544 (``nars'') provided by the server, the size the corresponding store
7545 items occupy in the store (assuming deduplication is turned off), and
7546 the server's throughput.
7547
7548 To achieve that, @command{guix weather} queries over HTTP(S) meta-data
7549 (@dfn{narinfos}) for all the relevant store items. Like @command{guix
7550 challenge}, it ignores signatures on those substitutes, which is
7551 innocuous since the command only gathers statistics and cannot install
7552 those substitutes.
7553
7554 Among other things, it is possible to query specific system types and
7555 specific package sets. The available options are listed below.
7556
7557 @table @code
7558 @item --substitute-urls=@var{urls}
7559 @var{urls} is the space-separated list of substitute server URLs to
7560 query. When this option is omitted, the default set of substitute
7561 servers is queried.
7562
7563 @item --system=@var{system}
7564 @itemx -s @var{system}
7565 Query substitutes for @var{system}---e.g., @code{aarch64-linux}. This
7566 option can be repeated, in which case @command{guix weather} will query
7567 substitutes for several system types.
7568
7569 @item --manifest=@var{file}
7570 Instead of querying substitutes for all the packages, only ask for those
7571 specified in @var{file}. @var{file} must contain a @dfn{manifest}, as
7572 with the @code{-m} option of @command{guix package} (@pxref{Invoking
7573 guix package}).
7574 @end table
7575
7576
7577 @c *********************************************************************
7578 @node GNU Distribution
7579 @chapter GNU Distribution
7580
7581 @cindex Guix System Distribution
7582 @cindex GuixSD
7583 Guix comes with a distribution of the GNU system consisting entirely of
7584 free software@footnote{The term ``free'' here refers to the
7585 @url{http://www.gnu.org/philosophy/free-sw.html,freedom provided to
7586 users of that software}.}. The
7587 distribution can be installed on its own (@pxref{System Installation}),
7588 but it is also possible to install Guix as a package manager on top of
7589 an installed GNU/Linux system (@pxref{Installation}). To distinguish
7590 between the two, we refer to the standalone distribution as the Guix
7591 System Distribution, or GuixSD.
7592
7593 The distribution provides core GNU packages such as GNU libc, GCC, and
7594 Binutils, as well as many GNU and non-GNU applications. The complete
7595 list of available packages can be browsed
7596 @url{http://www.gnu.org/software/guix/packages,on-line} or by
7597 running @command{guix package} (@pxref{Invoking guix package}):
7598
7599 @example
7600 guix package --list-available
7601 @end example
7602
7603 Our goal is to provide a practical 100% free software distribution of
7604 Linux-based and other variants of GNU, with a focus on the promotion and
7605 tight integration of GNU components, and an emphasis on programs and
7606 tools that help users exert that freedom.
7607
7608 Packages are currently available on the following platforms:
7609
7610 @table @code
7611
7612 @item x86_64-linux
7613 Intel/AMD @code{x86_64} architecture, Linux-Libre kernel;
7614
7615 @item i686-linux
7616 Intel 32-bit architecture (IA32), Linux-Libre kernel;
7617
7618 @item armhf-linux
7619 ARMv7-A architecture with hard float, Thumb-2 and NEON,
7620 using the EABI hard-float application binary interface (ABI),
7621 and Linux-Libre kernel.
7622
7623 @item aarch64-linux
7624 little-endian 64-bit ARMv8-A processors, Linux-Libre kernel. This is
7625 currently in an experimental stage, with limited support.
7626 @xref{Contributing}, for how to help!
7627
7628 @item mips64el-linux
7629 little-endian 64-bit MIPS processors, specifically the Loongson series,
7630 n32 ABI, and Linux-Libre kernel.
7631
7632 @end table
7633
7634 GuixSD itself is currently only available on @code{i686} and @code{x86_64}.
7635
7636 @noindent
7637 For information on porting to other architectures or kernels,
7638 @pxref{Porting}.
7639
7640 @menu
7641 * System Installation:: Installing the whole operating system.
7642 * System Configuration:: Configuring the operating system.
7643 * Documentation:: Browsing software user manuals.
7644 * Installing Debugging Files:: Feeding the debugger.
7645 * Security Updates:: Deploying security fixes quickly.
7646 * Package Modules:: Packages from the programmer's viewpoint.
7647 * Packaging Guidelines:: Growing the distribution.
7648 * Bootstrapping:: GNU/Linux built from scratch.
7649 * Porting:: Targeting another platform or kernel.
7650 @end menu
7651
7652 Building this distribution is a cooperative effort, and you are invited
7653 to join! @xref{Contributing}, for information about how you can help.
7654
7655 @node System Installation
7656 @section System Installation
7657
7658 @cindex installing GuixSD
7659 @cindex Guix System Distribution
7660 This section explains how to install the Guix System Distribution (GuixSD)
7661 on a machine. The Guix package manager can
7662 also be installed on top of a running GNU/Linux system,
7663 @pxref{Installation}.
7664
7665 @ifinfo
7666 @quotation Note
7667 @c This paragraph is for people reading this from tty2 of the
7668 @c installation image.
7669 You are reading this documentation with an Info reader. For details on
7670 how to use it, hit the @key{RET} key (``return'' or ``enter'') on the
7671 link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU
7672 Info}. Hit @kbd{l} afterwards to come back here.
7673
7674 Alternately, run @command{info info} in another tty to keep the manual
7675 available.
7676 @end quotation
7677 @end ifinfo
7678
7679 @menu
7680 * Limitations:: What you can expect.
7681 * Hardware Considerations:: Supported hardware.
7682 * USB Stick Installation:: Preparing the installation medium.
7683 * DVD Installation:: Preparing the installation medium.
7684 * Preparing for Installation:: Networking, partitioning, etc.
7685 * Proceeding with the Installation:: The real thing.
7686 * Installing GuixSD in a VM:: GuixSD playground.
7687 * Building the Installation Image:: How this comes to be.
7688 @end menu
7689
7690 @node Limitations
7691 @subsection Limitations
7692
7693 As of version @value{VERSION}, the Guix System Distribution (GuixSD) is
7694 not production-ready. It may contain bugs and lack important
7695 features. Thus, if you are looking for a stable production system that
7696 respects your freedom as a computer user, a good solution at this point
7697 is to consider @url{http://www.gnu.org/distros/free-distros.html, one of
7698 the more established GNU/Linux distributions}. We hope you can soon switch
7699 to the GuixSD without fear, of course. In the meantime, you can
7700 also keep using your distribution and try out the package manager on top
7701 of it (@pxref{Installation}).
7702
7703 Before you proceed with the installation, be aware of the following
7704 noteworthy limitations applicable to version @value{VERSION}:
7705
7706 @itemize
7707 @item
7708 The installation process does not include a graphical user interface and
7709 requires familiarity with GNU/Linux (see the following subsections to
7710 get a feel of what that means.)
7711
7712 @item
7713 Support for the Logical Volume Manager (LVM) is missing.
7714
7715 @item
7716 More and more system services are provided (@pxref{Services}), but some
7717 may be missing.
7718
7719 @item
7720 More than 5,300 packages are available, but you may
7721 occasionally find that a useful package is missing.
7722
7723 @item
7724 GNOME, Xfce, LXDE, and Enlightenment are available (@pxref{Desktop Services}),
7725 as well as a number of X11 window managers. However, some graphical
7726 applications may be missing, as well as KDE.
7727 @end itemize
7728
7729 You have been warned! But more than a disclaimer, this is an invitation
7730 to report issues (and success stories!), and to join us in improving it.
7731 @xref{Contributing}, for more info.
7732
7733
7734 @node Hardware Considerations
7735 @subsection Hardware Considerations
7736
7737 @cindex hardware support on GuixSD
7738 GNU@tie{}GuixSD focuses on respecting the user's computing freedom. It
7739 builds around the kernel Linux-libre, which means that only hardware for
7740 which free software drivers and firmware exist is supported. Nowadays,
7741 a wide range of off-the-shelf hardware is supported on
7742 GNU/Linux-libre---from keyboards to graphics cards to scanners and
7743 Ethernet controllers. Unfortunately, there are still areas where
7744 hardware vendors deny users control over their own computing, and such
7745 hardware is not supported on GuixSD.
7746
7747 @cindex WiFi, hardware support
7748 One of the main areas where free drivers or firmware are lacking is WiFi
7749 devices. WiFi devices known to work include those using Atheros chips
7750 (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre
7751 driver, and those using Broadcom/AirForce chips (BCM43xx with
7752 Wireless-Core Revision 5), which corresponds to the @code{b43-open}
7753 Linux-libre driver. Free firmware exists for both and is available
7754 out-of-the-box on GuixSD, as part of @var{%base-firmware}
7755 (@pxref{operating-system Reference, @code{firmware}}).
7756
7757 @cindex RYF, Respects Your Freedom
7758 The @uref{https://www.fsf.org/, Free Software Foundation} runs
7759 @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a
7760 certification program for hardware products that respect your freedom
7761 and your privacy and ensure that you have control over your device. We
7762 encourage you to check the list of RYF-certified devices.
7763
7764 Another useful resource is the @uref{https://www.h-node.org/, H-Node}
7765 web site. It contains a catalog of hardware devices with information
7766 about their support in GNU/Linux.
7767
7768
7769 @node USB Stick Installation
7770 @subsection USB Stick Installation
7771
7772 An installation image for USB sticks can be downloaded from
7773 @indicateurl{ftp://alpha.gnu.org/gnu/guix/guixsd-install-@value{VERSION}.@var{system}.xz},
7774 where @var{system} is one of:
7775
7776 @table @code
7777 @item x86_64-linux
7778 for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
7779
7780 @item i686-linux
7781 for a 32-bit GNU/Linux system on Intel-compatible CPUs.
7782 @end table
7783
7784 @c start duplication of authentication part from ``Binary Installation''
7785 Make sure to download the associated @file{.sig} file and to verify the
7786 authenticity of the image against it, along these lines:
7787
7788 @example
7789 $ wget ftp://alpha.gnu.org/gnu/guix/guixsd-install-@value{VERSION}.@var{system}.xz.sig
7790 $ gpg --verify guixsd-install-@value{VERSION}.@var{system}.xz.sig
7791 @end example
7792
7793 If that command fails because you do not have the required public key,
7794 then run this command to import it:
7795
7796 @example
7797 $ gpg --keyserver pgp.mit.edu --recv-keys @value{OPENPGP-SIGNING-KEY-ID}
7798 @end example
7799
7800 @noindent
7801 and rerun the @code{gpg --verify} command.
7802 @c end duplication
7803
7804 This image contains the tools necessary for an installation.
7805 It is meant to be copied @emph{as is} to a large-enough USB stick or DVD.
7806
7807 To copy the image to a USB stick, follow these steps:
7808
7809 @enumerate
7810 @item
7811 Decompress the image using the @command{xz} command:
7812
7813 @example
7814 xz -d guixsd-install-@value{VERSION}.@var{system}.xz
7815 @end example
7816
7817 @item
7818 Insert a USB stick of 1@tie{}GiB or more into your machine, and determine
7819 its device name. Assuming that the USB stick is known as @file{/dev/sdX},
7820 copy the image with:
7821
7822 @example
7823 dd if=guixsd-install-@value{VERSION}.x86_64 of=/dev/sdX
7824 sync
7825 @end example
7826
7827 Access to @file{/dev/sdX} usually requires root privileges.
7828 @end enumerate
7829
7830 Once this is done, you should be able to reboot the system and boot from
7831 the USB stick. The latter usually requires you to get in the BIOS or
7832 UEFI boot menu, where you can choose to boot from the USB stick.
7833
7834 @xref{Installing GuixSD in a VM}, if, instead, you would like to install
7835 GuixSD in a virtual machine (VM).
7836
7837 @node DVD Installation
7838 @subsection DVD Installation
7839
7840 An installation image for DVDs can be downloaded from
7841 @indicateurl{ftp://alpha.gnu.org/gnu/guix/guixsd-install-@value{VERSION}.@var{system}.xz},
7842 where @var{system} is one of:
7843
7844 @table @code
7845 @item x86_64-linux
7846 for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
7847
7848 @item i686-linux
7849 for a 32-bit GNU/Linux system on Intel-compatible CPUs.
7850 @end table
7851
7852 @c start duplication of authentication part from ``Binary Installation''
7853 Make sure to download the associated @file{.sig} file and to verify the
7854 authenticity of the image against it, along these lines:
7855
7856 @example
7857 $ wget ftp://alpha.gnu.org/gnu/guix/guixsd-install-@value{VERSION}.@var{system}.xz.sig
7858 $ gpg --verify guixsd-install-@value{VERSION}.@var{system}.xz.sig
7859 @end example
7860
7861 If that command fails because you do not have the required public key,
7862 then run this command to import it:
7863
7864 @example
7865 $ gpg --keyserver pgp.mit.edu --recv-keys @value{OPENPGP-SIGNING-KEY-ID}
7866 @end example
7867
7868 @noindent
7869 and rerun the @code{gpg --verify} command.
7870 @c end duplication
7871
7872 This image contains the tools necessary for an installation.
7873 It is meant to be copied @emph{as is} to a large-enough USB stick or DVD.
7874
7875 To copy the image to a DVD, follow these steps:
7876
7877 @enumerate
7878 @item
7879 Decompress the image using the @command{xz} command:
7880
7881 @example
7882 xz -d guixsd-install-@value{VERSION}.@var{system}.xz
7883 @end example
7884
7885 @item
7886 Insert a blank DVD into your machine, and determine
7887 its device name. Assuming that the DVD drive is known as @file{/dev/srX},
7888 copy the image with:
7889
7890 @example
7891 growisofs -dvd-compat -Z /dev/srX=guixsd-install-@value{VERSION}.x86_64
7892 @end example
7893
7894 Access to @file{/dev/srX} usually requires root privileges.
7895 @end enumerate
7896
7897 Once this is done, you should be able to reboot the system and boot from
7898 the DVD. The latter usually requires you to get in the BIOS or
7899 UEFI boot menu, where you can choose to boot from the DVD.
7900
7901 @xref{Installing GuixSD in a VM}, if, instead, you would like to install
7902 GuixSD in a virtual machine (VM).
7903
7904 @node Preparing for Installation
7905 @subsection Preparing for Installation
7906
7907 Once you have successfully booted your computer using the installation medium,
7908 you should end up with a root prompt. Several console TTYs are configured
7909 and can be used to run commands as root. TTY2 shows this documentation,
7910 browsable using the Info reader commands (@pxref{Top,,, info-stnd,
7911 Stand-alone GNU Info}). The installation system runs the GPM mouse
7912 daemon, which allows you to select text with the left mouse button and
7913 to paste it with the middle button.
7914
7915 @quotation Note
7916 Installation requires access to the Internet so that any missing
7917 dependencies of your system configuration can be downloaded. See the
7918 ``Networking'' section below.
7919 @end quotation
7920
7921 The installation system includes many common tools needed for this task.
7922 But it is also a full-blown GuixSD system, which means that you can
7923 install additional packages, should you need it, using @command{guix
7924 package} (@pxref{Invoking guix package}).
7925
7926 @subsubsection Keyboard Layout
7927
7928 @cindex keyboard layout
7929 The installation image uses the US qwerty keyboard layout. If you want
7930 to change it, you can use the @command{loadkeys} command. For example,
7931 the following command selects the Dvorak keyboard layout:
7932
7933 @example
7934 loadkeys dvorak
7935 @end example
7936
7937 See the files under @file{/run/current-system/profile/share/keymaps} for
7938 a list of available keyboard layouts. Run @command{man loadkeys} for
7939 more information.
7940
7941 @subsubsection Networking
7942
7943 Run the following command see what your network interfaces are called:
7944
7945 @example
7946 ifconfig -a
7947 @end example
7948
7949 @noindent
7950 @dots{} or, using the GNU/Linux-specific @command{ip} command:
7951
7952 @example
7953 ip a
7954 @end example
7955
7956 @c http://cgit.freedesktop.org/systemd/systemd/tree/src/udev/udev-builtin-net_id.c#n20
7957 Wired interfaces have a name starting with @samp{e}; for example, the
7958 interface corresponding to the first on-board Ethernet controller is
7959 called @samp{eno1}. Wireless interfaces have a name starting with
7960 @samp{w}, like @samp{w1p2s0}.
7961
7962 @table @asis
7963 @item Wired connection
7964 To configure a wired network run the following command, substituting
7965 @var{interface} with the name of the wired interface you want to use.
7966
7967 @example
7968 ifconfig @var{interface} up
7969 @end example
7970
7971 @item Wireless connection
7972 @cindex wireless
7973 @cindex WiFi
7974 To configure wireless networking, you can create a configuration file
7975 for the @command{wpa_supplicant} configuration tool (its location is not
7976 important) using one of the available text editors such as
7977 @command{zile}:
7978
7979 @example
7980 zile wpa_supplicant.conf
7981 @end example
7982
7983 As an example, the following stanza can go to this file and will work
7984 for many wireless networks, provided you give the actual SSID and
7985 passphrase for the network you are connecting to:
7986
7987 @example
7988 network=@{
7989 ssid="@var{my-ssid}"
7990 key_mgmt=WPA-PSK
7991 psk="the network's secret passphrase"
7992 @}
7993 @end example
7994
7995 Start the wireless service and run it in the background with the
7996 following command (substitute @var{interface} with the name of the
7997 network interface you want to use):
7998
7999 @example
8000 wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B
8001 @end example
8002
8003 Run @command{man wpa_supplicant} for more information.
8004 @end table
8005
8006 @cindex DHCP
8007 At this point, you need to acquire an IP address. On a network where IP
8008 addresses are automatically assigned @i{via} DHCP, you can run:
8009
8010 @example
8011 dhclient -v @var{interface}
8012 @end example
8013
8014 Try to ping a server to see if networking is up and running:
8015
8016 @example
8017 ping -c 3 gnu.org
8018 @end example
8019
8020 Setting up network access is almost always a requirement because the
8021 image does not contain all the software and tools that may be needed.
8022
8023 @cindex installing over SSH
8024 If you want to, you can continue the installation remotely by starting
8025 an SSH server:
8026
8027 @example
8028 herd start ssh-daemon
8029 @end example
8030
8031 Make sure to either set a password with @command{passwd}, or configure
8032 OpenSSH public key authentication before logging in.
8033
8034 @subsubsection Disk Partitioning
8035
8036 Unless this has already been done, the next step is to partition, and
8037 then format the target partition(s).
8038
8039 The installation image includes several partitioning tools, including
8040 Parted (@pxref{Overview,,, parted, GNU Parted User Manual}),
8041 @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with
8042 the partition layout you want:
8043
8044 @example
8045 cfdisk
8046 @end example
8047
8048 If your disk uses the GUID Partition Table (GPT) format and you plan to
8049 install BIOS-based GRUB (which is the default), make sure a BIOS Boot
8050 Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB
8051 manual}).
8052
8053 @cindex EFI, installation
8054 @cindex UEFI, installation
8055 @cindex ESP, EFI system partition
8056 If you instead wish to use EFI-based GRUB, a FAT32 @dfn{EFI System Partition}
8057 (ESP) is required. This partition should be mounted at @file{/boot/efi} and
8058 must have the @code{esp} flag set. E.g., for @command{parted}:
8059
8060 @example
8061 parted /dev/sda set 1 esp on
8062 @end example
8063
8064 Once you are done partitioning the target hard disk drive, you have to
8065 create a file system on the relevant partition(s)@footnote{Currently
8066 GuixSD only supports ext4 and btrfs file systems. In particular, code
8067 that reads partition UUIDs and labels only works for these file system
8068 types.}. For the ESP, if you have one and assuming it is
8069 @file{/dev/sda2}, run:
8070
8071 @example
8072 mkfs.fat -F32 /dev/sda2
8073 @end example
8074
8075 Preferably, assign partitions a label so that you can easily and
8076 reliably refer to them in @code{file-system} declarations (@pxref{File
8077 Systems}). This is typically done using the @code{-L} option of
8078 @command{mkfs.ext4} and related commands. So, assuming the target root
8079 partition lives at @file{/dev/sda1}, a file system with the label
8080 @code{my-root} can be created with:
8081
8082 @example
8083 mkfs.ext4 -L my-root /dev/sda1
8084 @end example
8085
8086 @cindex encrypted disk
8087 If you are instead planning to encrypt the root partition, you can use
8088 the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html,
8089 @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}},
8090 @code{man cryptsetup}} for more information.) Assuming you want to
8091 store the root partition on @file{/dev/sda1}, the command sequence would
8092 be along these lines:
8093
8094 @example
8095 cryptsetup luksFormat /dev/sda1
8096 cryptsetup open --type luks /dev/sda1 my-partition
8097 mkfs.ext4 -L my-root /dev/mapper/my-partition
8098 @end example
8099
8100 Once that is done, mount the target root partition under @file{/mnt}
8101 with a command like (again, assuming @code{my-root} is the label of the
8102 root partition):
8103
8104 @example
8105 mount LABEL=my-root /mnt
8106 @end example
8107
8108 Also mount any other partitions you would like to use on the target
8109 system relative to this path. If you have @file{/boot} on a separate
8110 partition for example, mount it at @file{/mnt/boot} now so it is found
8111 by @code{guix system init} afterwards.
8112
8113 Finally, if you plan to use one or more swap partitions (@pxref{Memory
8114 Concepts, swap space,, libc, The GNU C Library Reference Manual}), make
8115 sure to initialize them with @command{mkswap}. Assuming you have one
8116 swap partition on @file{/dev/sda2}, you would run:
8117
8118 @example
8119 mkswap /dev/sda2
8120 swapon /dev/sda2
8121 @end example
8122
8123 Alternatively, you may use a swap file. For example, assuming that in
8124 the new system you want to use the file @file{/swapfile} as a swap file,
8125 you would run@footnote{This example will work for many types of file
8126 systems (e.g., ext4). However, for copy-on-write file systems (e.g.,
8127 btrfs), the required steps may be different. For details, see the
8128 manual pages for @command{mkswap} and @command{swapon}.}:
8129
8130 @example
8131 # This is 10 GiB of swap space. Adjust "count" to change the size.
8132 dd if=/dev/zero of=/mnt/swapfile bs=1MiB count=10240
8133 # For security, make the file readable and writable only by root.
8134 chmod 600 /mnt/swapfile
8135 mkswap /mnt/swapfile
8136 swapon /mnt/swapfile
8137 @end example
8138
8139 Note that if you have encrypted the root partition and created a swap
8140 file in its file system as described above, then the encryption also
8141 protects the swap file, just like any other file in that file system.
8142
8143 @node Proceeding with the Installation
8144 @subsection Proceeding with the Installation
8145
8146 With the target partitions ready and the target root mounted on
8147 @file{/mnt}, we're ready to go. First, run:
8148
8149 @example
8150 herd start cow-store /mnt
8151 @end example
8152
8153 This makes @file{/gnu/store} copy-on-write, such that packages added to it
8154 during the installation phase are written to the target disk on @file{/mnt}
8155 rather than kept in memory. This is necessary because the first phase of
8156 the @command{guix system init} command (see below) entails downloads or
8157 builds to @file{/gnu/store} which, initially, is an in-memory file system.
8158
8159 Next, you have to edit a file and
8160 provide the declaration of the operating system to be installed. To
8161 that end, the installation system comes with three text editors: GNU nano
8162 (@pxref{Top,,, nano, GNU nano Manual}), GNU Zile (an Emacs clone), and
8163 nvi (a clone of the original BSD @command{vi} editor).
8164 We strongly recommend storing that file on the target root file system, say,
8165 as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your
8166 configuration file once you have rebooted into the newly-installed system.
8167
8168 @xref{Using the Configuration System}, for an overview of the
8169 configuration file. The example configurations discussed in that
8170 section are available under @file{/etc/configuration} in the
8171 installation image. Thus, to get started with a system configuration
8172 providing a graphical display server (a ``desktop'' system), you can run
8173 something along these lines:
8174
8175 @example
8176 # mkdir /mnt/etc
8177 # cp /etc/configuration/desktop.scm /mnt/etc/config.scm
8178 # zile /mnt/etc/config.scm
8179 @end example
8180
8181 You should pay attention to what your configuration file contains, and
8182 in particular:
8183
8184 @itemize
8185 @item
8186 Make sure the @code{grub-configuration} form refers to the target you
8187 want to install GRUB on. It should mention @code{grub-bootloader} if
8188 you are installing GRUB in the legacy way, or @code{grub-efi-bootloader}
8189 for newer UEFI systems. For legacy systems, the @code{target} field
8190 names a device, like @code{/dev/sda}; for UEFI systems it names a path
8191 to a mounted EFI partition, like @code{/boot/efi}, and do make sure the
8192 path is actually mounted.
8193
8194 @item
8195 Be sure that your partition labels match the value of their respective
8196 @code{device} fields in your @code{file-system} configuration, assuming
8197 your @code{file-system} configuration sets the value of @code{title} to
8198 @code{'label}.
8199
8200 @item
8201 If there are encrypted or RAID partitions, make sure to add a
8202 @code{mapped-devices} field to describe them (@pxref{Mapped Devices}).
8203 @end itemize
8204
8205 Once you are done preparing the configuration file, the new system must
8206 be initialized (remember that the target root file system is mounted
8207 under @file{/mnt}):
8208
8209 @example
8210 guix system init /mnt/etc/config.scm /mnt
8211 @end example
8212
8213 @noindent
8214 This copies all the necessary files and installs GRUB on
8215 @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For
8216 more information, @pxref{Invoking guix system}. This command may trigger
8217 downloads or builds of missing packages, which can take some time.
8218
8219 Once that command has completed---and hopefully succeeded!---you can run
8220 @command{reboot} and boot into the new system. The @code{root} password
8221 in the new system is initially empty; other users' passwords need to be
8222 initialized by running the @command{passwd} command as @code{root},
8223 unless your configuration specifies otherwise
8224 (@pxref{user-account-password, user account passwords}).
8225
8226 @cindex upgrading GuixSD
8227 From then on, you can update GuixSD whenever you want by running
8228 @command{guix pull} as @code{root} (@pxref{Invoking guix pull}), and
8229 then running @command{guix system reconfigure} to build a new system
8230 generation with the latest packages and services (@pxref{Invoking guix
8231 system}). We recommend doing that regularly so that your system
8232 includes the latest security updates (@pxref{Security Updates}).
8233
8234 Join us on @code{#guix} on the Freenode IRC network or on
8235 @file{guix-devel@@gnu.org} to share your experience---good or not so
8236 good.
8237
8238 @node Installing GuixSD in a VM
8239 @subsection Installing GuixSD in a Virtual Machine
8240
8241 @cindex virtual machine, GuixSD installation
8242 @cindex virtual private server (VPS)
8243 @cindex VPS (virtual private server)
8244 If you'd like to install GuixSD in a virtual machine (VM) or on a
8245 virtual private server (VPS) rather than on your beloved machine, this
8246 section is for you.
8247
8248 To boot a @uref{http://qemu.org/,QEMU} VM for installing GuixSD in a
8249 disk image, follow these steps:
8250
8251 @enumerate
8252 @item
8253 First, retrieve and decompress the GuixSD installation image as
8254 described previously (@pxref{USB Stick Installation}).
8255
8256 @item
8257 Create a disk image that will hold the installed system. To make a
8258 qcow2-formatted disk image, use the @command{qemu-img} command:
8259
8260 @example
8261 qemu-img create -f qcow2 guixsd.img 50G
8262 @end example
8263
8264 The resulting file will be much smaller than 50 GB (typically less than
8265 1 MB), but it will grow as the virtualized storage device is filled up.
8266
8267 @item
8268 Boot the USB installation image in an VM:
8269
8270 @example
8271 qemu-system-x86_64 -m 1024 -smp 1 \
8272 -net user -net nic,model=virtio -boot menu=on \
8273 -drive file=guixsd-install-@value{VERSION}.@var{system} \
8274 -drive file=guixsd.img
8275 @end example
8276
8277 The ordering of the drives matters.
8278
8279 In the VM console, quickly press the @kbd{F12} key to enter the boot
8280 menu. Then press the @kbd{2} key and the @kbd{RET} key to validate your
8281 selection.
8282
8283 @item
8284 You're now root in the VM, proceed with the installation process.
8285 @xref{Preparing for Installation}, and follow the instructions.
8286 @end enumerate
8287
8288 Once installation is complete, you can boot the system that's on your
8289 @file{guixsd.img} image. @xref{Running GuixSD in a VM}, for how to do
8290 that.
8291
8292 @node Building the Installation Image
8293 @subsection Building the Installation Image
8294
8295 @cindex installation image
8296 The installation image described above was built using the @command{guix
8297 system} command, specifically:
8298
8299 @example
8300 guix system disk-image gnu/system/install.scm
8301 @end example
8302
8303 Have a look at @file{gnu/system/install.scm} in the source tree,
8304 and see also @ref{Invoking guix system} for more information
8305 about the installation image.
8306
8307 @node System Configuration
8308 @section System Configuration
8309
8310 @cindex system configuration
8311 The Guix System Distribution supports a consistent whole-system configuration
8312 mechanism. By that we mean that all aspects of the global system
8313 configuration---such as the available system services, timezone and
8314 locale settings, user accounts---are declared in a single place. Such
8315 a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected.
8316
8317 One of the advantages of putting all the system configuration under the
8318 control of Guix is that it supports transactional system upgrades, and
8319 makes it possible to roll back to a previous system instantiation,
8320 should something go wrong with the new one (@pxref{Features}). Another
8321 advantage is that it makes it easy to replicate the exact same configuration
8322 across different machines, or at different points in time, without
8323 having to resort to additional administration tools layered on top of
8324 the own tools of the system.
8325 @c Yes, we're talking of Puppet, Chef, & co. here. ↑
8326
8327 This section describes this mechanism. First we focus on the system
8328 administrator's viewpoint---explaining how the system is configured and
8329 instantiated. Then we show how this mechanism can be extended, for
8330 instance to support new system services.
8331
8332 @menu
8333 * Using the Configuration System:: Customizing your GNU system.
8334 * operating-system Reference:: Detail of operating-system declarations.
8335 * File Systems:: Configuring file system mounts.
8336 * Mapped Devices:: Block device extra processing.
8337 * User Accounts:: Specifying user accounts.
8338 * Locales:: Language and cultural convention settings.
8339 * Services:: Specifying system services.
8340 * Setuid Programs:: Programs running with root privileges.
8341 * X.509 Certificates:: Authenticating HTTPS servers.
8342 * Name Service Switch:: Configuring libc's name service switch.
8343 * Initial RAM Disk:: Linux-Libre bootstrapping.
8344 * Bootloader Configuration:: Configuring the boot loader.
8345 * Invoking guix system:: Instantiating a system configuration.
8346 * Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
8347 * Defining Services:: Adding new service definitions.
8348 @end menu
8349
8350 @node Using the Configuration System
8351 @subsection Using the Configuration System
8352
8353 The operating system is configured by providing an
8354 @code{operating-system} declaration in a file that can then be passed to
8355 the @command{guix system} command (@pxref{Invoking guix system}). A
8356 simple setup, with the default system services, the default Linux-Libre
8357 kernel, initial RAM disk, and boot loader looks like this:
8358
8359 @findex operating-system
8360 @lisp
8361 @include os-config-bare-bones.texi
8362 @end lisp
8363
8364 This example should be self-describing. Some of the fields defined
8365 above, such as @code{host-name} and @code{bootloader}, are mandatory.
8366 Others, such as @code{packages} and @code{services}, can be omitted, in
8367 which case they get a default value.
8368
8369 Below we discuss the effect of some of the most important fields
8370 (@pxref{operating-system Reference}, for details about all the available
8371 fields), and how to @dfn{instantiate} the operating system using
8372 @command{guix system}.
8373
8374 @unnumberedsubsubsec Globally-Visible Packages
8375
8376 @vindex %base-packages
8377 The @code{packages} field lists packages that will be globally visible
8378 on the system, for all user accounts---i.e., in every user's @code{PATH}
8379 environment variable---in addition to the per-user profiles
8380 (@pxref{Invoking guix package}). The @var{%base-packages} variable
8381 provides all the tools one would expect for basic user and administrator
8382 tasks---including the GNU Core Utilities, the GNU Networking Utilities,
8383 the GNU Zile lightweight text editor, @command{find}, @command{grep},
8384 etc. The example above adds GNU@tie{}Screen and OpenSSH to those,
8385 taken from the @code{(gnu packages screen)} and @code{(gnu packages ssh)}
8386 modules (@pxref{Package Modules}). The
8387 @code{(list package output)} syntax can be used to add a specific output
8388 of a package:
8389
8390 @lisp
8391 (use-modules (gnu packages))
8392 (use-modules (gnu packages dns))
8393
8394 (operating-system
8395 ;; ...
8396 (packages (cons (list bind "utils")
8397 %base-packages)))
8398 @end lisp
8399
8400 @findex specification->package
8401 Referring to packages by variable name, like @var{tcpdump} above, has
8402 the advantage of being unambiguous; it also allows typos and such to be
8403 diagnosed right away as ``unbound variables''. The downside is that one
8404 needs to know which module defines which package, and to augment the
8405 @code{use-package-modules} line accordingly. To avoid that, one can use
8406 the @code{specification->package} procedure of the @code{(gnu packages)}
8407 module, which returns the best package for a given name or name and
8408 version:
8409
8410 @lisp
8411 (use-modules (gnu packages))
8412
8413 (operating-system
8414 ;; ...
8415 (packages (append (map specification->package
8416 '("tcpdump" "htop" "gnupg@@2.0"))
8417 %base-packages)))
8418 @end lisp
8419
8420 @unnumberedsubsubsec System Services
8421
8422 @cindex services
8423 @vindex %base-services
8424 The @code{services} field lists @dfn{system services} to be made
8425 available when the system starts (@pxref{Services}).
8426 The @code{operating-system} declaration above specifies that, in
8427 addition to the basic services, we want the @command{lshd} secure shell
8428 daemon listening on port 2222 (@pxref{Networking Services,
8429 @code{lsh-service}}). Under the hood,
8430 @code{lsh-service} arranges so that @code{lshd} is started with the
8431 right command-line options, possibly with supporting configuration files
8432 generated as needed (@pxref{Defining Services}).
8433
8434 @cindex customization, of services
8435 @findex modify-services
8436 Occasionally, instead of using the base services as is, you will want to
8437 customize them. To do this, use @code{modify-services} (@pxref{Service
8438 Reference, @code{modify-services}}) to modify the list.
8439
8440 For example, suppose you want to modify @code{guix-daemon} and Mingetty
8441 (the console log-in) in the @var{%base-services} list (@pxref{Base
8442 Services, @code{%base-services}}). To do that, you can write the
8443 following in your operating system declaration:
8444
8445 @lisp
8446 (define %my-services
8447 ;; My very own list of services.
8448 (modify-services %base-services
8449 (guix-service-type config =>
8450 (guix-configuration
8451 (inherit config)
8452 (use-substitutes? #f)
8453 (extra-options '("--gc-keep-derivations"))))
8454 (mingetty-service-type config =>
8455 (mingetty-configuration
8456 (inherit config)))))
8457
8458 (operating-system
8459 ;; @dots{}
8460 (services %my-services))
8461 @end lisp
8462
8463 This changes the configuration---i.e., the service parameters---of the
8464 @code{guix-service-type} instance, and that of all the
8465 @code{mingetty-service-type} instances in the @var{%base-services} list.
8466 Observe how this is accomplished: first, we arrange for the original
8467 configuration to be bound to the identifier @code{config} in the
8468 @var{body}, and then we write the @var{body} so that it evaluates to the
8469 desired configuration. In particular, notice how we use @code{inherit}
8470 to create a new configuration which has the same values as the old
8471 configuration, but with a few modifications.
8472
8473 @cindex encrypted disk
8474 The configuration for a typical ``desktop'' usage, with an encrypted
8475 root partition, the X11 display
8476 server, GNOME and Xfce (users can choose which of these desktop
8477 environments to use at the log-in screen by pressing @kbd{F1}), network
8478 management, power management, and more, would look like this:
8479
8480 @lisp
8481 @include os-config-desktop.texi
8482 @end lisp
8483
8484 @cindex UEFI
8485 A graphical UEFI system with a choice of lightweight window managers
8486 instead of full-blown desktop environments would look like this:
8487
8488 @lisp
8489 @include os-config-lightweight-desktop.texi
8490 @end lisp
8491
8492 This example refers to the @file{/boot/efi} partition by its UUID,
8493 @code{1234-ABCD}. Replace this UUID with the right UUID on your system,
8494 as returned by the @command{blkid} command.
8495
8496 @xref{Desktop Services}, for the exact list of services provided by
8497 @var{%desktop-services}. @xref{X.509 Certificates}, for background
8498 information about the @code{nss-certs} package that is used here.
8499
8500 Again, @var{%desktop-services} is just a list of service objects. If
8501 you want to remove services from there, you can do so using the
8502 procedures for list filtering (@pxref{SRFI-1 Filtering and
8503 Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the
8504 following expression returns a list that contains all the services in
8505 @var{%desktop-services} minus the Avahi service:
8506
8507 @example
8508 (remove (lambda (service)
8509 (eq? (service-kind service) avahi-service-type))
8510 %desktop-services)
8511 @end example
8512
8513 @unnumberedsubsubsec Instantiating the System
8514
8515 Assuming the @code{operating-system} declaration
8516 is stored in the @file{my-system-config.scm}
8517 file, the @command{guix system reconfigure my-system-config.scm} command
8518 instantiates that configuration, and makes it the default GRUB boot
8519 entry (@pxref{Invoking guix system}).
8520
8521 The normal way to change the system configuration is by updating this
8522 file and re-running @command{guix system reconfigure}. One should never
8523 have to touch files in @file{/etc} or to run commands that modify the
8524 system state such as @command{useradd} or @command{grub-install}. In
8525 fact, you must avoid that since that would not only void your warranty
8526 but also prevent you from rolling back to previous versions of your
8527 system, should you ever need to.
8528
8529 @cindex roll-back, of the operating system
8530 Speaking of roll-back, each time you run @command{guix system
8531 reconfigure}, a new @dfn{generation} of the system is created---without
8532 modifying or deleting previous generations. Old system generations get
8533 an entry in the bootloader boot menu, allowing you to boot them in case
8534 something went wrong with the latest generation. Reassuring, no? The
8535 @command{guix system list-generations} command lists the system
8536 generations available on disk. It is also possible to roll back the
8537 system via the commands @command{guix system roll-back} and
8538 @command{guix system switch-generation}.
8539
8540 Although the command @command{guix system reconfigure} will not modify
8541 previous generations, must take care when the current generation is not
8542 the latest (e.g., after invoking @command{guix system roll-back}), since
8543 the operation might overwrite a later generation (@pxref{Invoking guix
8544 system}).
8545
8546 @unnumberedsubsubsec The Programming Interface
8547
8548 At the Scheme level, the bulk of an @code{operating-system} declaration
8549 is instantiated with the following monadic procedure (@pxref{The Store
8550 Monad}):
8551
8552 @deffn {Monadic Procedure} operating-system-derivation os
8553 Return a derivation that builds @var{os}, an @code{operating-system}
8554 object (@pxref{Derivations}).
8555
8556 The output of the derivation is a single directory that refers to all
8557 the packages, configuration files, and other supporting files needed to
8558 instantiate @var{os}.
8559 @end deffn
8560
8561 This procedure is provided by the @code{(gnu system)} module. Along
8562 with @code{(gnu services)} (@pxref{Services}), this module contains the
8563 guts of GuixSD. Make sure to visit it!
8564
8565
8566 @node operating-system Reference
8567 @subsection @code{operating-system} Reference
8568
8569 This section summarizes all the options available in
8570 @code{operating-system} declarations (@pxref{Using the Configuration
8571 System}).
8572
8573 @deftp {Data Type} operating-system
8574 This is the data type representing an operating system configuration.
8575 By that, we mean all the global system configuration, not per-user
8576 configuration (@pxref{Using the Configuration System}).
8577
8578 @table @asis
8579 @item @code{kernel} (default: @var{linux-libre})
8580 The package object of the operating system kernel to use@footnote{Currently
8581 only the Linux-libre kernel is supported. In the future, it will be
8582 possible to use the GNU@tie{}Hurd.}.
8583
8584 @item @code{kernel-arguments} (default: @code{'()})
8585 List of strings or gexps representing additional arguments to pass on
8586 the command-line of the kernel---e.g., @code{("console=ttyS0")}.
8587
8588 @item @code{bootloader}
8589 The system bootloader configuration object. @xref{Bootloader Configuration}.
8590
8591 @item @code{initrd} (default: @code{base-initrd})
8592 @cindex initrd
8593 @cindex initial RAM disk
8594 A two-argument monadic procedure that returns an initial RAM disk for
8595 the Linux kernel. @xref{Initial RAM Disk}.
8596
8597 @item @code{firmware} (default: @var{%base-firmware})
8598 @cindex firmware
8599 List of firmware packages loadable by the operating system kernel.
8600
8601 The default includes firmware needed for Atheros- and Broadcom-based
8602 WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open},
8603 respectively). @xref{Hardware Considerations}, for more info on
8604 supported hardware.
8605
8606 @item @code{host-name}
8607 The host name.
8608
8609 @item @code{hosts-file}
8610 @cindex hosts file
8611 A file-like object (@pxref{G-Expressions, file-like objects}) for use as
8612 @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library
8613 Reference Manual}). The default is a file with entries for
8614 @code{localhost} and @var{host-name}.
8615
8616 @item @code{mapped-devices} (default: @code{'()})
8617 A list of mapped devices. @xref{Mapped Devices}.
8618
8619 @item @code{file-systems}
8620 A list of file systems. @xref{File Systems}.
8621
8622 @item @code{swap-devices} (default: @code{'()})
8623 @cindex swap devices
8624 A list of strings identifying devices or files to be used for ``swap
8625 space'' (@pxref{Memory Concepts,,, libc, The GNU C Library Reference
8626 Manual}). For example, @code{'("/dev/sda3")} or @code{'("/swapfile")}.
8627 It is possible to specify a swap file in a file system on a mapped
8628 device, provided that the necessary device mapping and file system are
8629 also specified. @xref{Mapped Devices} and @ref{File Systems}.
8630
8631 @item @code{users} (default: @code{%base-user-accounts})
8632 @itemx @code{groups} (default: @var{%base-groups})
8633 List of user accounts and groups. @xref{User Accounts}.
8634
8635 @item @code{skeletons} (default: @code{(default-skeletons)})
8636 A list target file name/file-like object tuples (@pxref{G-Expressions,
8637 file-like objects}). These are the skeleton files that will be added to
8638 the home directory of newly-created user accounts.
8639
8640 For instance, a valid value may look like this:
8641
8642 @example
8643 `((".bashrc" ,(plain-file "bashrc" "echo Hello\n"))
8644 (".guile" ,(plain-file "guile"
8645 "(use-modules (ice-9 readline))
8646 (activate-readline)")))
8647 @end example
8648
8649 @item @code{issue} (default: @var{%default-issue})
8650 A string denoting the contents of the @file{/etc/issue} file, which is
8651 displayed when users log in on a text console.
8652
8653 @item @code{packages} (default: @var{%base-packages})
8654 The set of packages installed in the global profile, which is accessible
8655 at @file{/run/current-system/profile}.
8656
8657 The default set includes core utilities and it is good practice to
8658 install non-core utilities in user profiles (@pxref{Invoking guix
8659 package}).
8660
8661 @item @code{timezone}
8662 A timezone identifying string---e.g., @code{"Europe/Paris"}.
8663
8664 You can run the @command{tzselect} command to find out which timezone
8665 string corresponds to your region. Choosing an invalid timezone name
8666 causes @command{guix system} to fail.
8667
8668 @item @code{locale} (default: @code{"en_US.utf8"})
8669 The name of the default locale (@pxref{Locale Names,,, libc, The GNU C
8670 Library Reference Manual}). @xref{Locales}, for more information.
8671
8672 @item @code{locale-definitions} (default: @var{%default-locale-definitions})
8673 The list of locale definitions to be compiled and that may be used at
8674 run time. @xref{Locales}.
8675
8676 @item @code{locale-libcs} (default: @code{(list @var{glibc})})
8677 The list of GNU@tie{}libc packages whose locale data and tools are used
8678 to build the locale definitions. @xref{Locales}, for compatibility
8679 considerations that justify this option.
8680
8681 @item @code{name-service-switch} (default: @var{%default-nss})
8682 Configuration of the libc name service switch (NSS)---a
8683 @code{<name-service-switch>} object. @xref{Name Service Switch}, for
8684 details.
8685
8686 @item @code{services} (default: @var{%base-services})
8687 A list of service objects denoting system services. @xref{Services}.
8688
8689 @item @code{pam-services} (default: @code{(base-pam-services)})
8690 @cindex PAM
8691 @cindex pluggable authentication modules
8692 Linux @dfn{pluggable authentication module} (PAM) services.
8693 @c FIXME: Add xref to PAM services section.
8694
8695 @item @code{setuid-programs} (default: @var{%setuid-programs})
8696 List of string-valued G-expressions denoting setuid programs.
8697 @xref{Setuid Programs}.
8698
8699 @item @code{sudoers-file} (default: @var{%sudoers-specification})
8700 @cindex sudoers file
8701 The contents of the @file{/etc/sudoers} file as a file-like object
8702 (@pxref{G-Expressions, @code{local-file} and @code{plain-file}}).
8703
8704 This file specifies which users can use the @command{sudo} command, what
8705 they are allowed to do, and what privileges they may gain. The default
8706 is that only @code{root} and members of the @code{wheel} group may use
8707 @code{sudo}.
8708
8709 @end table
8710 @end deftp
8711
8712 @node File Systems
8713 @subsection File Systems
8714
8715 The list of file systems to be mounted is specified in the
8716 @code{file-systems} field of the operating system declaration
8717 (@pxref{Using the Configuration System}). Each file system is declared
8718 using the @code{file-system} form, like this:
8719
8720 @example
8721 (file-system
8722 (mount-point "/home")
8723 (device "/dev/sda3")
8724 (type "ext4"))
8725 @end example
8726
8727 As usual, some of the fields are mandatory---those shown in the example
8728 above---while others can be omitted. These are described below.
8729
8730 @deftp {Data Type} file-system
8731 Objects of this type represent file systems to be mounted. They
8732 contain the following members:
8733
8734 @table @asis
8735 @item @code{type}
8736 This is a string specifying the type of the file system---e.g.,
8737 @code{"ext4"}.
8738
8739 @item @code{mount-point}
8740 This designates the place where the file system is to be mounted.
8741
8742 @item @code{device}
8743 This names the ``source'' of the file system. By default it is the name
8744 of a node under @file{/dev}, but its meaning depends on the @code{title}
8745 field described below.
8746
8747 @item @code{title} (default: @code{'device})
8748 This is a symbol that specifies how the @code{device} field is to be
8749 interpreted.
8750
8751 When it is the symbol @code{device}, then the @code{device} field is
8752 interpreted as a file name; when it is @code{label}, then @code{device}
8753 is interpreted as a partition label name; when it is @code{uuid},
8754 @code{device} is interpreted as a partition unique identifier (UUID).
8755
8756 UUIDs may be converted from their string representation (as shown by the
8757 @command{tune2fs -l} command) using the @code{uuid} form@footnote{The
8758 @code{uuid} form expects 16-byte UUIDs as defined in
8759 @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the
8760 form of UUID used by the ext2 family of file systems and others, but it
8761 is different from ``UUIDs'' found in FAT file systems, for instance.},
8762 like this:
8763
8764 @example
8765 (file-system
8766 (mount-point "/home")
8767 (type "ext4")
8768 (title 'uuid)
8769 (device (uuid "4dab5feb-d176-45de-b287-9b0a6e4c01cb")))
8770 @end example
8771
8772 The @code{label} and @code{uuid} options offer a way to refer to disk
8773 partitions without having to hard-code their actual device
8774 name@footnote{Note that, while it is tempting to use
8775 @file{/dev/disk/by-uuid} and similar device names to achieve the same
8776 result, this is not recommended: These special device nodes are created
8777 by the udev daemon and may be unavailable at the time the device is
8778 mounted.}.
8779
8780 However, when the source of a file system is a mapped device (@pxref{Mapped
8781 Devices}), its @code{device} field @emph{must} refer to the mapped
8782 device name---e.g., @file{/dev/mapper/root-partition}---and consequently
8783 @code{title} must be set to @code{'device}. This is required so that
8784 the system knows that mounting the file system depends on having the
8785 corresponding device mapping established.
8786
8787 @item @code{flags} (default: @code{'()})
8788 This is a list of symbols denoting mount flags. Recognized flags
8789 include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow
8790 access to special files), @code{no-suid} (ignore setuid and setgid
8791 bits), and @code{no-exec} (disallow program execution.)
8792
8793 @item @code{options} (default: @code{#f})
8794 This is either @code{#f}, or a string denoting mount options.
8795
8796 @item @code{mount?} (default: @code{#t})
8797 This value indicates whether to automatically mount the file system when
8798 the system is brought up. When set to @code{#f}, the file system gets
8799 an entry in @file{/etc/fstab} (read by the @command{mount} command) but
8800 is not automatically mounted.
8801
8802 @item @code{needed-for-boot?} (default: @code{#f})
8803 This Boolean value indicates whether the file system is needed when
8804 booting. If that is true, then the file system is mounted when the
8805 initial RAM disk (initrd) is loaded. This is always the case, for
8806 instance, for the root file system.
8807
8808 @item @code{check?} (default: @code{#t})
8809 This Boolean indicates whether the file system needs to be checked for
8810 errors before being mounted.
8811
8812 @item @code{create-mount-point?} (default: @code{#f})
8813 When true, the mount point is created if it does not exist yet.
8814
8815 @item @code{dependencies} (default: @code{'()})
8816 This is a list of @code{<file-system>} or @code{<mapped-device>} objects
8817 representing file systems that must be mounted or mapped devices that
8818 must be opened before (and unmounted or closed after) this one.
8819
8820 As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is
8821 a dependency of @file{/sys/fs/cgroup/cpu} and
8822 @file{/sys/fs/cgroup/memory}.
8823
8824 Another example is a file system that depends on a mapped device, for
8825 example for an encrypted partition (@pxref{Mapped Devices}).
8826 @end table
8827 @end deftp
8828
8829 The @code{(gnu system file-systems)} exports the following useful
8830 variables.
8831
8832 @defvr {Scheme Variable} %base-file-systems
8833 These are essential file systems that are required on normal systems,
8834 such as @var{%pseudo-terminal-file-system} and @var{%immutable-store} (see
8835 below.) Operating system declarations should always contain at least
8836 these.
8837 @end defvr
8838
8839 @defvr {Scheme Variable} %pseudo-terminal-file-system
8840 This is the file system to be mounted as @file{/dev/pts}. It supports
8841 @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar
8842 functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference
8843 Manual}). Pseudo-terminals are used by terminal emulators such as
8844 @command{xterm}.
8845 @end defvr
8846
8847 @defvr {Scheme Variable} %shared-memory-file-system
8848 This file system is mounted as @file{/dev/shm} and is used to support
8849 memory sharing across processes (@pxref{Memory-mapped I/O,
8850 @code{shm_open},, libc, The GNU C Library Reference Manual}).
8851 @end defvr
8852
8853 @defvr {Scheme Variable} %immutable-store
8854 This file system performs a read-only ``bind mount'' of
8855 @file{/gnu/store}, making it read-only for all the users including
8856 @code{root}. This prevents against accidental modification by software
8857 running as @code{root} or by system administrators.
8858
8859 The daemon itself is still able to write to the store: it remounts it
8860 read-write in its own ``name space.''
8861 @end defvr
8862
8863 @defvr {Scheme Variable} %binary-format-file-system
8864 The @code{binfmt_misc} file system, which allows handling of arbitrary
8865 executable file types to be delegated to user space. This requires the
8866 @code{binfmt.ko} kernel module to be loaded.
8867 @end defvr
8868
8869 @defvr {Scheme Variable} %fuse-control-file-system
8870 The @code{fusectl} file system, which allows unprivileged users to mount
8871 and unmount user-space FUSE file systems. This requires the
8872 @code{fuse.ko} kernel module to be loaded.
8873 @end defvr
8874
8875 @node Mapped Devices
8876 @subsection Mapped Devices
8877
8878 @cindex device mapping
8879 @cindex mapped devices
8880 The Linux kernel has a notion of @dfn{device mapping}: a block device,
8881 such as a hard disk partition, can be @dfn{mapped} into another device,
8882 usually in @code{/dev/mapper/},
8883 with additional processing over the data that flows through
8884 it@footnote{Note that the GNU@tie{}Hurd makes no difference between the
8885 concept of a ``mapped device'' and that of a file system: both boil down
8886 to @emph{translating} input/output operations made on a file to
8887 operations on its backing store. Thus, the Hurd implements mapped
8888 devices, like file systems, using the generic @dfn{translator} mechanism
8889 (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A
8890 typical example is encryption device mapping: all writes to the mapped
8891 device are encrypted, and all reads are deciphered, transparently.
8892 Guix extends this notion by considering any device or set of devices that
8893 are @dfn{transformed} in some way to create a new device; for instance,
8894 RAID devices are obtained by @dfn{assembling} several other devices, such
8895 as hard disks or partitions, into a new one that behaves as one partition.
8896 Other examples, not yet implemented, are LVM logical volumes.
8897
8898 Mapped devices are declared using the @code{mapped-device} form,
8899 defined as follows; for examples, see below.
8900
8901 @deftp {Data Type} mapped-device
8902 Objects of this type represent device mappings that will be made when
8903 the system boots up.
8904
8905 @table @code
8906 @item source
8907 This is either a string specifying the name of the block device to be mapped,
8908 such as @code{"/dev/sda3"}, or a list of such strings when several devices
8909 need to be assembled for creating a new one.
8910
8911 @item target
8912 This string specifies the name of the resulting mapped device. For
8913 kernel mappers such as encrypted devices of type @code{luks-device-mapping},
8914 specifying @code{"my-partition"} leads to the creation of
8915 the @code{"/dev/mapper/my-partition"} device.
8916 For RAID devices of type @code{raid-device-mapping}, the full device name
8917 such as @code{"/dev/md0"} needs to be given.
8918
8919 @item type
8920 This must be a @code{mapped-device-kind} object, which specifies how
8921 @var{source} is mapped to @var{target}.
8922 @end table
8923 @end deftp
8924
8925 @defvr {Scheme Variable} luks-device-mapping
8926 This defines LUKS block device encryption using the @command{cryptsetup}
8927 command from the package with the same name. It relies on the
8928 @code{dm-crypt} Linux kernel module.
8929 @end defvr
8930
8931 @defvr {Scheme Variable} raid-device-mapping
8932 This defines a RAID device, which is assembled using the @code{mdadm}
8933 command from the package with the same name. It requires a Linux kernel
8934 module for the appropriate RAID level to be loaded, such as @code{raid456}
8935 for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10.
8936 @end defvr
8937
8938 @cindex disk encryption
8939 @cindex LUKS
8940 The following example specifies a mapping from @file{/dev/sda3} to
8941 @file{/dev/mapper/home} using LUKS---the
8942 @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a
8943 standard mechanism for disk encryption.
8944 The @file{/dev/mapper/home}
8945 device can then be used as the @code{device} of a @code{file-system}
8946 declaration (@pxref{File Systems}).
8947
8948 @example
8949 (mapped-device
8950 (source "/dev/sda3")
8951 (target "home")
8952 (type luks-device-mapping))
8953 @end example
8954
8955 Alternatively, to become independent of device numbering, one may obtain
8956 the LUKS UUID (@dfn{unique identifier}) of the source device by a
8957 command like:
8958
8959 @example
8960 cryptsetup luksUUID /dev/sda3
8961 @end example
8962
8963 and use it as follows:
8964
8965 @example
8966 (mapped-device
8967 (source (uuid "cb67fc72-0d54-4c88-9d4b-b225f30b0f44"))
8968 (target "home")
8969 (type luks-device-mapping))
8970 @end example
8971
8972 @cindex swap encryption
8973 It is also desirable to encrypt swap space, since swap space may contain
8974 sensitive data. One way to accomplish that is to use a swap file in a
8975 file system on a device mapped via LUKS encryption. In this way, the
8976 swap file is encrypted because the entire device is encrypted.
8977 @xref{Preparing for Installation,,Disk Partitioning}, for an example.
8978
8979 A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1}
8980 may be declared as follows:
8981
8982 @example
8983 (mapped-device
8984 (source (list "/dev/sda1" "/dev/sdb1"))
8985 (target "/dev/md0")
8986 (type raid-device-mapping))
8987 @end example
8988
8989 The @file{/dev/md0} device can then be used as the @code{device} of a
8990 @code{file-system} declaration (@pxref{File Systems}).
8991 Note that the RAID level need not be given; it is chosen during the
8992 initial creation and formatting of the RAID device and is determined
8993 automatically later.
8994
8995
8996 @node User Accounts
8997 @subsection User Accounts
8998
8999 @cindex users
9000 @cindex accounts
9001 @cindex user accounts
9002 User accounts and groups are entirely managed through the
9003 @code{operating-system} declaration. They are specified with the
9004 @code{user-account} and @code{user-group} forms:
9005
9006 @example
9007 (user-account
9008 (name "alice")
9009 (group "users")
9010 (supplementary-groups '("wheel" ;allow use of sudo, etc.
9011 "audio" ;sound card
9012 "video" ;video devices such as webcams
9013 "cdrom")) ;the good ol' CD-ROM
9014 (comment "Bob's sister")
9015 (home-directory "/home/alice"))
9016 @end example
9017
9018 When booting or upon completion of @command{guix system reconfigure},
9019 the system ensures that only the user accounts and groups specified in
9020 the @code{operating-system} declaration exist, and with the specified
9021 properties. Thus, account or group creations or modifications made by
9022 directly invoking commands such as @command{useradd} are lost upon
9023 reconfiguration or reboot. This ensures that the system remains exactly
9024 as declared.
9025
9026 @deftp {Data Type} user-account
9027 Objects of this type represent user accounts. The following members may
9028 be specified:
9029
9030 @table @asis
9031 @item @code{name}
9032 The name of the user account.
9033
9034 @item @code{group}
9035 @cindex groups
9036 This is the name (a string) or identifier (a number) of the user group
9037 this account belongs to.
9038
9039 @item @code{supplementary-groups} (default: @code{'()})
9040 Optionally, this can be defined as a list of group names that this
9041 account belongs to.
9042
9043 @item @code{uid} (default: @code{#f})
9044 This is the user ID for this account (a number), or @code{#f}. In the
9045 latter case, a number is automatically chosen by the system when the
9046 account is created.
9047
9048 @item @code{comment} (default: @code{""})
9049 A comment about the account, such as the account owner's full name.
9050
9051 @item @code{home-directory}
9052 This is the name of the home directory for the account.
9053
9054 @item @code{create-home-directory?} (default: @code{#t})
9055 Indicates whether the home directory of this account should be created
9056 if it does not exist yet.
9057
9058 @item @code{shell} (default: Bash)
9059 This is a G-expression denoting the file name of a program to be used as
9060 the shell (@pxref{G-Expressions}).
9061
9062 @item @code{system?} (default: @code{#f})
9063 This Boolean value indicates whether the account is a ``system''
9064 account. System accounts are sometimes treated specially; for instance,
9065 graphical login managers do not list them.
9066
9067 @anchor{user-account-password}
9068 @item @code{password} (default: @code{#f})
9069 You would normally leave this field to @code{#f}, initialize user
9070 passwords as @code{root} with the @command{passwd} command, and then let
9071 users change it with @command{passwd}. Passwords set with
9072 @command{passwd} are of course preserved across reboot and
9073 reconfiguration.
9074
9075 If you @emph{do} want to have a preset password for an account, then
9076 this field must contain the encrypted password, as a string.
9077 @xref{crypt,,, libc, The GNU C Library Reference Manual}, for more information
9078 on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference
9079 Manual}, for information on Guile's @code{crypt} procedure.
9080
9081 @end table
9082 @end deftp
9083
9084 @cindex groups
9085 User group declarations are even simpler:
9086
9087 @example
9088 (user-group (name "students"))
9089 @end example
9090
9091 @deftp {Data Type} user-group
9092 This type is for, well, user groups. There are just a few fields:
9093
9094 @table @asis
9095 @item @code{name}
9096 The name of the group.
9097
9098 @item @code{id} (default: @code{#f})
9099 The group identifier (a number). If @code{#f}, a new number is
9100 automatically allocated when the group is created.
9101
9102 @item @code{system?} (default: @code{#f})
9103 This Boolean value indicates whether the group is a ``system'' group.
9104 System groups have low numerical IDs.
9105
9106 @item @code{password} (default: @code{#f})
9107 What, user groups can have a password? Well, apparently yes. Unless
9108 @code{#f}, this field specifies the password of the group.
9109
9110 @end table
9111 @end deftp
9112
9113 For convenience, a variable lists all the basic user groups one may
9114 expect:
9115
9116 @defvr {Scheme Variable} %base-groups
9117 This is the list of basic user groups that users and/or packages expect
9118 to be present on the system. This includes groups such as ``root'',
9119 ``wheel'', and ``users'', as well as groups used to control access to
9120 specific devices such as ``audio'', ``disk'', and ``cdrom''.
9121 @end defvr
9122
9123 @defvr {Scheme Variable} %base-user-accounts
9124 This is the list of basic system accounts that programs may expect to
9125 find on a GNU/Linux system, such as the ``nobody'' account.
9126
9127 Note that the ``root'' account is not included here. It is a
9128 special-case and is automatically added whether or not it is specified.
9129 @end defvr
9130
9131 @node Locales
9132 @subsection Locales
9133
9134 @cindex locale
9135 A @dfn{locale} defines cultural conventions for a particular language
9136 and region of the world (@pxref{Locales,,, libc, The GNU C Library
9137 Reference Manual}). Each locale has a name that typically has the form
9138 @code{@var{language}_@var{territory}.@var{codeset}}---e.g.,
9139 @code{fr_LU.utf8} designates the locale for the French language, with
9140 cultural conventions from Luxembourg, and using the UTF-8 encoding.
9141
9142 @cindex locale definition
9143 Usually, you will want to specify the default locale for the machine
9144 using the @code{locale} field of the @code{operating-system} declaration
9145 (@pxref{operating-system Reference, @code{locale}}).
9146
9147 The selected locale is automatically added to the @dfn{locale
9148 definitions} known to the system if needed, with its codeset inferred
9149 from its name---e.g., @code{bo_CN.utf8} will be assumed to use the
9150 @code{UTF-8} codeset. Additional locale definitions can be specified in
9151 the @code{locale-definitions} slot of @code{operating-system}---this is
9152 useful, for instance, if the codeset could not be inferred from the
9153 locale name. The default set of locale definitions includes some widely
9154 used locales, but not all the available locales, in order to save space.
9155
9156 For instance, to add the North Frisian locale for Germany, the value of
9157 that field may be:
9158
9159 @example
9160 (cons (locale-definition
9161 (name "fy_DE.utf8") (source "fy_DE"))
9162 %default-locale-definitions)
9163 @end example
9164
9165 Likewise, to save space, one might want @code{locale-definitions} to
9166 list only the locales that are actually used, as in:
9167
9168 @example
9169 (list (locale-definition
9170 (name "ja_JP.eucjp") (source "ja_JP")
9171 (charset "EUC-JP")))
9172 @end example
9173
9174 @vindex LOCPATH
9175 The compiled locale definitions are available at
9176 @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc
9177 version, which is the default location where the GNU@tie{}libc provided
9178 by Guix looks for locale data. This can be overridden using the
9179 @code{LOCPATH} environment variable (@pxref{locales-and-locpath,
9180 @code{LOCPATH} and locale packages}).
9181
9182 The @code{locale-definition} form is provided by the @code{(gnu system
9183 locale)} module. Details are given below.
9184
9185 @deftp {Data Type} locale-definition
9186 This is the data type of a locale definition.
9187
9188 @table @asis
9189
9190 @item @code{name}
9191 The name of the locale. @xref{Locale Names,,, libc, The GNU C Library
9192 Reference Manual}, for more information on locale names.
9193
9194 @item @code{source}
9195 The name of the source for that locale. This is typically the
9196 @code{@var{language}_@var{territory}} part of the locale name.
9197
9198 @item @code{charset} (default: @code{"UTF-8"})
9199 The ``character set'' or ``code set'' for that locale,
9200 @uref{http://www.iana.org/assignments/character-sets, as defined by
9201 IANA}.
9202
9203 @end table
9204 @end deftp
9205
9206 @defvr {Scheme Variable} %default-locale-definitions
9207 A list of commonly used UTF-8 locales, used as the default
9208 value of the @code{locale-definitions} field of @code{operating-system}
9209 declarations.
9210
9211 @cindex locale name
9212 @cindex normalized codeset in locale names
9213 These locale definitions use the @dfn{normalized codeset} for the part
9214 that follows the dot in the name (@pxref{Using gettextized software,
9215 normalized codeset,, libc, The GNU C Library Reference Manual}). So for
9216 instance it has @code{uk_UA.utf8} but @emph{not}, say,
9217 @code{uk_UA.UTF-8}.
9218 @end defvr
9219
9220 @subsubsection Locale Data Compatibility Considerations
9221
9222 @cindex incompatibility, of locale data
9223 @code{operating-system} declarations provide a @code{locale-libcs} field
9224 to specify the GNU@tie{}libc packages that are used to compile locale
9225 declarations (@pxref{operating-system Reference}). ``Why would I
9226 care?'', you may ask. Well, it turns out that the binary format of
9227 locale data is occasionally incompatible from one libc version to
9228 another.
9229
9230 @c See <https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html>
9231 @c and <https://lists.gnu.org/archive/html/guix-devel/2015-08/msg00737.html>.
9232 For instance, a program linked against libc version 2.21 is unable to
9233 read locale data produced with libc 2.22; worse, that program
9234 @emph{aborts} instead of simply ignoring the incompatible locale
9235 data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip
9236 the incompatible locale data, which is already an improvement.}.
9237 Similarly, a program linked against libc 2.22 can read most, but not
9238 all, of the locale data from libc 2.21 (specifically, @code{LC_COLLATE}
9239 data is incompatible); thus calls to @code{setlocale} may fail, but
9240 programs will not abort.
9241
9242 The ``problem'' in GuixSD is that users have a lot of freedom: They can
9243 choose whether and when to upgrade software in their profiles, and might
9244 be using a libc version different from the one the system administrator
9245 used to build the system-wide locale data.
9246
9247 Fortunately, unprivileged users can also install their own locale data
9248 and define @var{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath,
9249 @code{GUIX_LOCPATH} and locale packages}).
9250
9251 Still, it is best if the system-wide locale data at
9252 @file{/run/current-system/locale} is built for all the libc versions
9253 actually in use on the system, so that all the programs can access
9254 it---this is especially crucial on a multi-user system. To do that, the
9255 administrator can specify several libc packages in the
9256 @code{locale-libcs} field of @code{operating-system}:
9257
9258 @example
9259 (use-package-modules base)
9260
9261 (operating-system
9262 ;; @dots{}
9263 (locale-libcs (list glibc-2.21 (canonical-package glibc))))
9264 @end example
9265
9266 This example would lead to a system containing locale definitions for
9267 both libc 2.21 and the current version of libc in
9268 @file{/run/current-system/locale}.
9269
9270
9271 @node Services
9272 @subsection Services
9273
9274 @cindex system services
9275 An important part of preparing an @code{operating-system} declaration is
9276 listing @dfn{system services} and their configuration (@pxref{Using the
9277 Configuration System}). System services are typically daemons launched
9278 when the system boots, or other actions needed at that time---e.g.,
9279 configuring network access.
9280
9281 GuixSD has a broad definition of ``service'' (@pxref{Service
9282 Composition}), but many services are managed by the GNU@tie{}Shepherd
9283 (@pxref{Shepherd Services}). On a running system, the @command{herd}
9284 command allows you to list the available services, show their status,
9285 start and stop them, or do other specific operations (@pxref{Jump
9286 Start,,, shepherd, The GNU Shepherd Manual}). For example:
9287
9288 @example
9289 # herd status
9290 @end example
9291
9292 The above command, run as @code{root}, lists the currently defined
9293 services. The @command{herd doc} command shows a synopsis of the given
9294 service:
9295
9296 @example
9297 # herd doc nscd
9298 Run libc's name service cache daemon (nscd).
9299 @end example
9300
9301 The @command{start}, @command{stop}, and @command{restart} sub-commands
9302 have the effect you would expect. For instance, the commands below stop
9303 the nscd service and restart the Xorg display server:
9304
9305 @example
9306 # herd stop nscd
9307 Service nscd has been stopped.
9308 # herd restart xorg-server
9309 Service xorg-server has been stopped.
9310 Service xorg-server has been started.
9311 @end example
9312
9313 The following sections document the available services, starting with
9314 the core services, that may be used in an @code{operating-system}
9315 declaration.
9316
9317 @menu
9318 * Base Services:: Essential system services.
9319 * Scheduled Job Execution:: The mcron service.
9320 * Log Rotation:: The rottlog service.
9321 * Networking Services:: Network setup, SSH daemon, etc.
9322 * X Window:: Graphical display.
9323 * Printing Services:: Local and remote printer support.
9324 * Desktop Services:: D-Bus and desktop services.
9325 * Database Services:: SQL databases, key-value stores, etc.
9326 * Mail Services:: IMAP, POP3, SMTP, and all that.
9327 * Messaging Services:: Messaging services.
9328 * Telephony Services:: Telephony services.
9329 * Monitoring Services:: Monitoring services.
9330 * Kerberos Services:: Kerberos services.
9331 * Web Services:: Web servers.
9332 * DNS Services:: DNS daemons.
9333 * VPN Services:: VPN daemons.
9334 * Network File System:: NFS related services.
9335 * Continuous Integration:: The Cuirass service.
9336 * Power management Services:: The TLP tool.
9337 * Audio Services:: The MPD.
9338 * Virtualization Services:: Virtualization services.
9339 * Miscellaneous Services:: Other services.
9340 @end menu
9341
9342 @node Base Services
9343 @subsubsection Base Services
9344
9345 The @code{(gnu services base)} module provides definitions for the basic
9346 services that one expects from the system. The services exported by
9347 this module are listed below.
9348
9349 @defvr {Scheme Variable} %base-services
9350 This variable contains a list of basic services (@pxref{Service Types
9351 and Services}, for more information on service objects) one would
9352 expect from the system: a login service (mingetty) on each tty, syslogd,
9353 the libc name service cache daemon (nscd), the udev device manager, and
9354 more.
9355
9356 This is the default value of the @code{services} field of
9357 @code{operating-system} declarations. Usually, when customizing a
9358 system, you will want to append services to @var{%base-services}, like
9359 this:
9360
9361 @example
9362 (cons* (avahi-service) (lsh-service) %base-services)
9363 @end example
9364 @end defvr
9365
9366 @defvr {Scheme Variable} special-files-service-type
9367 This is the service that sets up ``special files'' such as
9368 @file{/bin/sh}; an instance of it is part of @code{%base-services}.
9369
9370 The value associated with @code{special-files-service-type} services
9371 must be a list of tuples where the first element is the ``special file''
9372 and the second element is its target. By default it is:
9373
9374 @cindex @file{/bin/sh}
9375 @cindex @file{sh}, in @file{/bin}
9376 @example
9377 `(("/bin/sh" ,(file-append @var{bash} "/bin/sh")))
9378 @end example
9379
9380 @cindex @file{/usr/bin/env}
9381 @cindex @file{env}, in @file{/usr/bin}
9382 If you want to add, say, @code{/usr/bin/env} to your system, you can
9383 change it to:
9384
9385 @example
9386 `(("/bin/sh" ,(file-append @var{bash} "/bin/sh"))
9387 ("/usr/bin/env" ,(file-append @var{coreutils} "/bin/env")))
9388 @end example
9389
9390 Since this is part of @code{%base-services}, you can use
9391 @code{modify-services} to customize the set of special files
9392 (@pxref{Service Reference, @code{modify-services}}). But the simple way
9393 to add a special file is @i{via} the @code{extra-special-file} procedure
9394 (see below.)
9395 @end defvr
9396
9397 @deffn {Scheme Procedure} extra-special-file @var{file} @var{target}
9398 Use @var{target} as the ``special file'' @var{file}.
9399
9400 For example, adding the following lines to the @code{services} field of
9401 your operating system declaration leads to a @file{/usr/bin/env}
9402 symlink:
9403
9404 @example
9405 (extra-special-file "/usr/bin/env"
9406 (file-append coreutils "/bin/env"))
9407 @end example
9408 @end deffn
9409
9410 @deffn {Scheme Procedure} host-name-service @var{name}
9411 Return a service that sets the host name to @var{name}.
9412 @end deffn
9413
9414 @deffn {Scheme Procedure} login-service @var{config}
9415 Return a service to run login according to @var{config}, a
9416 @code{<login-configuration>} object, which specifies the message of the day,
9417 among other things.
9418 @end deffn
9419
9420 @deftp {Data Type} login-configuration
9421 This is the data type representing the configuration of login.
9422
9423 @table @asis
9424
9425 @item @code{motd}
9426 @cindex message of the day
9427 A file-like object containing the ``message of the day''.
9428
9429 @item @code{allow-empty-passwords?} (default: @code{#t})
9430 Allow empty passwords by default so that first-time users can log in when
9431 the 'root' account has just been created.
9432
9433 @end table
9434 @end deftp
9435
9436 @deffn {Scheme Procedure} mingetty-service @var{config}
9437 Return a service to run mingetty according to @var{config}, a
9438 @code{<mingetty-configuration>} object, which specifies the tty to run, among
9439 other things.
9440 @end deffn
9441
9442 @deftp {Data Type} mingetty-configuration
9443 This is the data type representing the configuration of Mingetty, which
9444 provides the default implementation of virtual console log-in.
9445
9446 @table @asis
9447
9448 @item @code{tty}
9449 The name of the console this Mingetty runs on---e.g., @code{"tty1"}.
9450
9451 @item @code{auto-login} (default: @code{#f})
9452 When true, this field must be a string denoting the user name under
9453 which the system automatically logs in. When it is @code{#f}, a
9454 user name and password must be entered to log in.
9455
9456 @item @code{login-program} (default: @code{#f})
9457 This must be either @code{#f}, in which case the default log-in program
9458 is used (@command{login} from the Shadow tool suite), or a gexp denoting
9459 the name of the log-in program.
9460
9461 @item @code{login-pause?} (default: @code{#f})
9462 When set to @code{#t} in conjunction with @var{auto-login}, the user
9463 will have to press a key before the log-in shell is launched.
9464
9465 @item @code{mingetty} (default: @var{mingetty})
9466 The Mingetty package to use.
9467
9468 @end table
9469 @end deftp
9470
9471 @deffn {Scheme Procedure} agetty-service @var{config}
9472 Return a service to run agetty according to @var{config}, an
9473 @code{<agetty-configuration>} object, which specifies the tty to run,
9474 among other things.
9475 @end deffn
9476
9477 @deftp {Data Type} agetty-configuration
9478 This is the data type representing the configuration of agetty, which
9479 implements virtual and serial console log-in. See the @code{agetty(8)}
9480 man page for more information.
9481
9482 @table @asis
9483
9484 @item @code{tty}
9485 The name of the console this agetty runs on, as a string---e.g.,
9486 @code{"ttyS0"}. This argument is mandatory.
9487
9488 @item @code{baud-rate} (default: @code{#f})
9489 A string containing a comma-separated list of one or more baud rates, in
9490 descending order.
9491
9492 @item @code{term} (default: @code{#f})
9493 A string containing the value used for the @code{TERM} environment
9494 variable.
9495
9496 @item @code{eight-bits?} (default: @code{#f})
9497 When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is
9498 disabled.
9499
9500 @item @code{auto-login} (default: @code{#f})
9501 When passed a login name, as a string, the specified user will be logged
9502 in automatically without prompting for their login name or password.
9503
9504 @item @code{no-reset?} (default: @code{#f})
9505 When @code{#t}, don't reset terminal cflags (control modes).
9506
9507 @item @code{host} (default: @code{#f})
9508 This accepts a string containing the "login_host", which will be written
9509 into the @file{/var/run/utmpx} file.
9510
9511 @item @code{remote?} (default: @code{#f})
9512 When set to @code{#t} in conjunction with @var{host}, this will add an
9513 @code{-r} fakehost option to the command line of the login program
9514 specified in @var{login-program}.
9515
9516 @item @code{flow-control?} (default: @code{#f})
9517 When set to @code{#t}, enable hardware (RTS/CTS) flow control.
9518
9519 @item @code{no-issue?} (default: @code{#f})
9520 When set to @code{#t}, the contents of the @file{/etc/issue} file will
9521 not be displayed before presenting the login prompt.
9522
9523 @item @code{init-string} (default: @code{#f})
9524 This accepts a string that will be sent to the tty or modem before
9525 sending anything else. It can be used to initialize a modem.
9526
9527 @item @code{no-clear?} (default: @code{#f})
9528 When set to @code{#t}, agetty will not clear the screen before showing
9529 the login prompt.
9530
9531 @item @code{login-program} (default: (file-append shadow "/bin/login"))
9532 This must be either a gexp denoting the name of a log-in program, or
9533 unset, in which case the default value is the @command{login} from the
9534 Shadow tool suite.
9535
9536 @item @code{local-line} (default: @code{#f})
9537 Control the CLOCAL line flag. This accepts one of three symbols as
9538 arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f},
9539 the default value chosen by agetty is @code{'auto}.
9540
9541 @item @code{extract-baud?} (default: @code{#f})
9542 When set to @code{#t}, instruct agetty to try to extract the baud rate
9543 from the status messages produced by certain types of modems.
9544
9545 @item @code{skip-login?} (default: @code{#f})
9546 When set to @code{#t}, do not prompt the user for a login name. This
9547 can be used with @var{login-program} field to use non-standard login
9548 systems.
9549
9550 @item @code{no-newline?} (default: @code{#f})
9551 When set to @code{#t}, do not print a newline before printing the
9552 @file{/etc/issue} file.
9553
9554 @c Is this dangerous only when used with login-program, or always?
9555 @item @code{login-options} (default: @code{#f})
9556 This option accepts a string containing options that are passed to the
9557 login program. When used with the @var{login-program}, be aware that a
9558 malicious user could try to enter a login name containing embedded
9559 options that could be parsed by the login program.
9560
9561 @item @code{login-pause} (default: @code{#f})
9562 When set to @code{#t}, wait for any key before showing the login prompt.
9563 This can be used in conjunction with @var{auto-login} to save memory by
9564 lazily spawning shells.
9565
9566 @item @code{chroot} (default: @code{#f})
9567 Change root to the specified directory. This option accepts a directory
9568 path as a string.
9569
9570 @item @code{hangup?} (default: @code{#f})
9571 Use the Linux system call @code{vhangup} to do a virtual hangup of the
9572 specified terminal.
9573
9574 @item @code{keep-baud?} (default: @code{#f})
9575 When set to @code{#t}, try to keep the existing baud rate. The baud
9576 rates from @var{baud-rate} are used when agetty receives a @key{BREAK}
9577 character.
9578
9579 @item @code{timeout} (default: @code{#f})
9580 When set to an integer value, terminate if no user name could be read
9581 within @var{timeout} seconds.
9582
9583 @item @code{detect-case?} (default: @code{#f})
9584 When set to @code{#t}, turn on support for detecting an uppercase-only
9585 terminal. This setting will detect a login name containing only
9586 uppercase letters as indicating an uppercase-only terminal and turn on
9587 some upper-to-lower case conversions. Note that this will not support
9588 Unicode characters.
9589
9590 @item @code{wait-cr?} (default: @code{#f})
9591 When set to @code{#t}, wait for the user or modem to send a
9592 carriage-return or linefeed character before displaying
9593 @file{/etc/issue} or login prompt. This is typically used with the
9594 @var{init-string} option.
9595
9596 @item @code{no-hints?} (default: @code{#f})
9597 When set to @code{#t}, do not print hints about Num, Caps, and Scroll
9598 locks.
9599
9600 @item @code{no-hostname?} (default: @code{#f})
9601 By default, the hostname is printed. When this option is set to
9602 @code{#t}, no hostname will be shown at all.
9603
9604 @item @code{long-hostname?} (default: @code{#f})
9605 By default, the hostname is only printed until the first dot. When this
9606 option is set to @code{#t}, the fully qualified hostname by
9607 @code{gethostname} or @code{getaddrinfo} is shown.
9608
9609 @item @code{erase-characters} (default: @code{#f})
9610 This option accepts a string of additional characters that should be
9611 interpreted as backspace when the user types their login name.
9612
9613 @item @code{kill-characters} (default: @code{#f})
9614 This option accepts a string that should be interpreted to mean "ignore
9615 all previous characters" (also called a "kill" character) when the types
9616 their login name.
9617
9618 @item @code{chdir} (default: @code{#f})
9619 This option accepts, as a string, a directory path that will be changed
9620 to before login.
9621
9622 @item @code{delay} (default: @code{#f})
9623 This options accepts, as an integer, the number of seconds to sleep
9624 before opening the tty and displaying the login prompt.
9625
9626 @item @code{nice} (default: @code{#f})
9627 This option accepts, as an integer, the nice value with which to run the
9628 @command{login} program.
9629
9630 @item @code{extra-options} (default: @code{'()})
9631 This option provides an "escape hatch" for the user to provide arbitrary
9632 command-line arguments to @command{agetty} as a list of strings.
9633
9634 @end table
9635 @end deftp
9636
9637 @deffn {Scheme Procedure} kmscon-service-type @var{config}
9638 Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon}
9639 according to @var{config}, a @code{<kmscon-configuration>} object, which
9640 specifies the tty to run, among other things.
9641 @end deffn
9642
9643 @deftp {Data Type} kmscon-configuration
9644 This is the data type representing the configuration of Kmscon, which
9645 implements virtual console log-in.
9646
9647 @table @asis
9648
9649 @item @code{virtual-terminal}
9650 The name of the console this Kmscon runs on---e.g., @code{"tty1"}.
9651
9652 @item @code{login-program} (default: @code{#~(string-append #$shadow "/bin/login")})
9653 A gexp denoting the name of the log-in program. The default log-in program is
9654 @command{login} from the Shadow tool suite.
9655
9656 @item @code{login-arguments} (default: @code{'("-p")})
9657 A list of arguments to pass to @command{login}.
9658
9659 @item @code{hardware-acceleration?} (default: #f)
9660 Whether to use hardware acceleration.
9661
9662 @item @code{kmscon} (default: @var{kmscon})
9663 The Kmscon package to use.
9664
9665 @end table
9666 @end deftp
9667
9668 @cindex name service cache daemon
9669 @cindex nscd
9670 @deffn {Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @
9671 [#:name-services '()]
9672 Return a service that runs the libc name service cache daemon (nscd) with the
9673 given @var{config}---an @code{<nscd-configuration>} object. @xref{Name
9674 Service Switch}, for an example.
9675 @end deffn
9676
9677 @defvr {Scheme Variable} %nscd-default-configuration
9678 This is the default @code{<nscd-configuration>} value (see below) used
9679 by @code{nscd-service}. It uses the caches defined by
9680 @var{%nscd-default-caches}; see below.
9681 @end defvr
9682
9683 @deftp {Data Type} nscd-configuration
9684 This is the data type representing the name service cache daemon (nscd)
9685 configuration.
9686
9687 @table @asis
9688
9689 @item @code{name-services} (default: @code{'()})
9690 List of packages denoting @dfn{name services} that must be visible to
9691 the nscd---e.g., @code{(list @var{nss-mdns})}.
9692
9693 @item @code{glibc} (default: @var{glibc})
9694 Package object denoting the GNU C Library providing the @command{nscd}
9695 command.
9696
9697 @item @code{log-file} (default: @code{"/var/log/nscd.log"})
9698 Name of the nscd log file. This is where debugging output goes when
9699 @code{debug-level} is strictly positive.
9700
9701 @item @code{debug-level} (default: @code{0})
9702 Integer denoting the debugging levels. Higher numbers mean that more
9703 debugging output is logged.
9704
9705 @item @code{caches} (default: @var{%nscd-default-caches})
9706 List of @code{<nscd-cache>} objects denoting things to be cached; see
9707 below.
9708
9709 @end table
9710 @end deftp
9711
9712 @deftp {Data Type} nscd-cache
9713 Data type representing a cache database of nscd and its parameters.
9714
9715 @table @asis
9716
9717 @item @code{database}
9718 This is a symbol representing the name of the database to be cached.
9719 Valid values are @code{passwd}, @code{group}, @code{hosts}, and
9720 @code{services}, which designate the corresponding NSS database
9721 (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual}).
9722
9723 @item @code{positive-time-to-live}
9724 @itemx @code{negative-time-to-live} (default: @code{20})
9725 A number representing the number of seconds during which a positive or
9726 negative lookup result remains in cache.
9727
9728 @item @code{check-files?} (default: @code{#t})
9729 Whether to check for updates of the files corresponding to
9730 @var{database}.
9731
9732 For instance, when @var{database} is @code{hosts}, setting this flag
9733 instructs nscd to check for updates in @file{/etc/hosts} and to take
9734 them into account.
9735
9736 @item @code{persistent?} (default: @code{#t})
9737 Whether the cache should be stored persistently on disk.
9738
9739 @item @code{shared?} (default: @code{#t})
9740 Whether the cache should be shared among users.
9741
9742 @item @code{max-database-size} (default: 32@tie{}MiB)
9743 Maximum size in bytes of the database cache.
9744
9745 @c XXX: 'suggested-size' and 'auto-propagate?' seem to be expert
9746 @c settings, so leave them out.
9747
9748 @end table
9749 @end deftp
9750
9751 @defvr {Scheme Variable} %nscd-default-caches
9752 List of @code{<nscd-cache>} objects used by default by
9753 @code{nscd-configuration} (see above).
9754
9755 It enables persistent and aggressive caching of service and host name
9756 lookups. The latter provides better host name lookup performance,
9757 resilience in the face of unreliable name servers, and also better
9758 privacy---often the result of host name lookups is in local cache, so
9759 external name servers do not even need to be queried.
9760 @end defvr
9761
9762 @anchor{syslog-configuration-type}
9763 @cindex syslog
9764 @cindex logging
9765 @deftp {Data Type} syslog-configuration
9766 This data type represents the configuration of the syslog daemon.
9767
9768 @table @asis
9769 @item @code{syslogd} (default: @code{#~(string-append #$inetutils "/libexec/syslogd")})
9770 The syslog daemon to use.
9771
9772 @item @code{config-file} (default: @code{%default-syslog.conf})
9773 The syslog configuration file to use.
9774
9775 @end table
9776 @end deftp
9777
9778 @anchor{syslog-service}
9779 @cindex syslog
9780 @deffn {Scheme Procedure} syslog-service @var{config}
9781 Return a service that runs a syslog daemon according to @var{config}.
9782
9783 @xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more
9784 information on the configuration file syntax.
9785 @end deffn
9786
9787 @anchor{guix-configuration-type}
9788 @deftp {Data Type} guix-configuration
9789 This data type represents the configuration of the Guix build daemon.
9790 @xref{Invoking guix-daemon}, for more information.
9791
9792 @table @asis
9793 @item @code{guix} (default: @var{guix})
9794 The Guix package to use.
9795
9796 @item @code{build-group} (default: @code{"guixbuild"})
9797 Name of the group for build user accounts.
9798
9799 @item @code{build-accounts} (default: @code{10})
9800 Number of build user accounts to create.
9801
9802 @item @code{authorize-key?} (default: @code{#t})
9803 @cindex substitutes, authorization thereof
9804 Whether to authorize the substitute keys listed in
9805 @code{authorized-keys}---by default that of @code{hydra.gnu.org}
9806 (@pxref{Substitutes}).
9807
9808 @vindex %default-authorized-guix-keys
9809 @item @code{authorized-keys} (default: @var{%default-authorized-guix-keys})
9810 The list of authorized key files for archive imports, as a list of
9811 string-valued gexps (@pxref{Invoking guix archive}). By default, it
9812 contains that of @code{hydra.gnu.org} (@pxref{Substitutes}).
9813
9814 @item @code{use-substitutes?} (default: @code{#t})
9815 Whether to use substitutes.
9816
9817 @item @code{substitute-urls} (default: @var{%default-substitute-urls})
9818 The list of URLs where to look for substitutes by default.
9819
9820 @item @code{max-silent-time} (default: @code{0})
9821 @itemx @code{timeout} (default: @code{0})
9822 The number of seconds of silence and the number of seconds of activity,
9823 respectively, after which a build process times out. A value of zero
9824 disables the timeout.
9825
9826 @item @code{extra-options} (default: @code{'()})
9827 List of extra command-line options for @command{guix-daemon}.
9828
9829 @item @code{log-file} (default: @code{"/var/log/guix-daemon.log"})
9830 File where @command{guix-daemon}'s standard output and standard error
9831 are written.
9832
9833 @item @code{lsof} (default: @var{lsof})
9834 The lsof package to use.
9835
9836 @item @code{http-proxy} (default: @code{#f})
9837 The HTTP proxy used for downloading fixed-output derivations and
9838 substitutes.
9839
9840 @item @code{tmpdir} (default: @code{#f})
9841 A directory path where the @command{guix-daemon} will perform builds.
9842
9843 @end table
9844 @end deftp
9845
9846 @deffn {Scheme Procedure} guix-service @var{config}
9847 Return a service that runs the Guix build daemon according to
9848 @var{config}.
9849 @end deffn
9850
9851 @deffn {Scheme Procedure} udev-service [#:udev @var{eudev} #:rules @code{'()}]
9852 Run @var{udev}, which populates the @file{/dev} directory dynamically.
9853 udev rules can be provided as a list of files through the @var{rules}
9854 variable. The procedures @var{udev-rule} and @var{file->udev-rule} from
9855 @code{(gnu services base)} simplify the creation of such rule files.
9856
9857 @deffn {Scheme Procedure} udev-rule [@var{file-name} @var{contents}]
9858 Return a udev-rule file named @var{file-name} containing the rules
9859 defined by the @var{contents} literal.
9860
9861 In the following example, a rule for a USB device is defined to be
9862 stored in the file @file{90-usb-thing.rules}. The rule runs a script
9863 upon detecting a USB device with a given product identifier.
9864
9865 @example
9866 (define %example-udev-rule
9867 (udev-rule
9868 "90-usb-thing.rules"
9869 (string-append "ACTION==\"add\", SUBSYSTEM==\"usb\", "
9870 "ATTR@{product@}==\"Example\", "
9871 "RUN+=\"/path/to/script\"")))
9872 @end example
9873 @end deffn
9874
9875 Here we show how the default @var{udev-service} can be extended with it.
9876
9877 @example
9878 (operating-system
9879 ;; @dots{}
9880 (services
9881 (modify-services %desktop-services
9882 (udev-service-type config =>
9883 (udev-configuration (inherit config)
9884 (rules (append (udev-configuration-rules config)
9885 (list %example-udev-rule))))))))
9886 @end example
9887
9888 @deffn {Scheme Procedure} file->udev-rule [@var{file-name} @var{file}]
9889 Return a udev file named @var{file-name} containing the rules defined
9890 within @var{file}, a file-like object.
9891
9892 The following example showcases how we can use an existing rule file.
9893
9894 @example
9895 (use-modules (guix download) ;for url-fetch
9896 (guix packages) ;for origin
9897 ;; @dots{})
9898
9899 (define %android-udev-rules
9900 (file->udev-rule
9901 "51-android-udev.rules"
9902 (let ((version "20170910"))
9903 (origin
9904 (method url-fetch)
9905 (uri (string-append "https://raw.githubusercontent.com/M0Rf30/"
9906 "android-udev-rules/" version "/51-android.rules"))
9907 (sha256
9908 (base32 "0lmmagpyb6xsq6zcr2w1cyx9qmjqmajkvrdbhjx32gqf1d9is003"))))))
9909 @end example
9910 @end deffn
9911
9912 Additionally, Guix package definitions can be included in @var{rules} in
9913 order to extend the udev rules with the definitions found under their
9914 @file{lib/udev/rules.d} sub-directory. In lieu of the previous
9915 @var{file->udev-rule} example, we could have used the
9916 @var{android-udev-rules} package which exists in Guix in the @code{(gnu
9917 packages android)} module.
9918
9919 The following example shows how to use the @var{android-udev-rules}
9920 package so that the Android tool @command{adb} can detect devices
9921 without root privileges. It also details how to create the
9922 @code{adbusers} group, which is required for the proper functioning of
9923 the rules defined within the @var{android-udev-rules} package. To
9924 create such a group, we must define it both as part of the
9925 @var{supplementary-groups} of our @var{user-account} declaration, as
9926 well as in the @var{groups} field of the @var{operating-system} record.
9927
9928 @example
9929 (use-modules (gnu packages android) ;for android-udev-rules
9930 (gnu system shadow) ;for user-group
9931 ;; @dots{})
9932
9933 (operating-system
9934 ;; @dots{}
9935 (users (cons (user-acount
9936 ;; @dots{}
9937 (supplementary-groups
9938 '("adbusers" ;for adb
9939 "wheel" "netdev" "audio" "video"))
9940 ;; @dots{})))
9941
9942 (groups (cons (user-group (system? #t) (name "adbusers"))
9943 %base-groups))
9944
9945 ;; @dots{}
9946
9947 (services
9948 (modify-services %desktop-services
9949 (udev-service-type config =>
9950 (udev-configuration (inherit config)
9951 (rules (cons* android-udev-rules
9952 (udev-configuration-rules config))))))))
9953 @end example
9954 @end deffn
9955
9956 @deffn {Scheme Procedure} urandom-seed-service
9957 Save some entropy in @var{%random-seed-file} to seed @file{/dev/urandom}
9958 when rebooting.
9959 @end deffn
9960
9961 @defvr {Scheme Variable} %random-seed-file
9962 This is the name of the file where some random bytes are saved by
9963 @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting.
9964 It defaults to @file{/var/lib/random-seed}.
9965 @end defvr
9966
9967 @cindex keymap
9968 @cindex keyboard
9969 @deffn {Scheme Procedure} console-keymap-service @var{files} ...
9970 @cindex keyboard layout
9971 Return a service to load console keymaps from @var{files} using
9972 @command{loadkeys} command. Most likely, you want to load some default
9973 keymap, which can be done like this:
9974
9975 @example
9976 (console-keymap-service "dvorak")
9977 @end example
9978
9979 Or, for example, for a Swedish keyboard, you may need to combine
9980 the following keymaps:
9981 @example
9982 (console-keymap-service "se-lat6" "se-fi-lat6")
9983 @end example
9984
9985 Also you can specify a full file name (or file names) of your keymap(s).
9986 See @code{man loadkeys} for details.
9987
9988 @end deffn
9989
9990 @cindex mouse
9991 @cindex gpm
9992 @deffn {Scheme Procedure} gpm-service [#:gpm @var{gpm}] @
9993 [#:options]
9994 Run @var{gpm}, the general-purpose mouse daemon, with the given
9995 command-line @var{options}. GPM allows users to use the mouse in the console,
9996 notably to select, copy, and paste text. The default value of @var{options}
9997 uses the @code{ps2} protocol, which works for both USB and PS/2 mice.
9998
9999 This service is not part of @var{%base-services}.
10000 @end deffn
10001
10002 @anchor{guix-publish-service-type}
10003 @deffn {Scheme Variable} guix-publish-service-type
10004 This is the service type for @command{guix publish} (@pxref{Invoking
10005 guix publish}). Its value must be a @code{guix-configuration}
10006 object, as described below.
10007
10008 This assumes that @file{/etc/guix} already contains a signing key pair as
10009 created by @command{guix archive --generate-key} (@pxref{Invoking guix
10010 archive}). If that is not the case, the service will fail to start.
10011 @end deffn
10012
10013 @deftp {Data Type} guix-publish-configuration
10014 Data type representing the configuration of the @code{guix publish}
10015 service.
10016
10017 @table @asis
10018 @item @code{guix} (default: @code{guix})
10019 The Guix package to use.
10020
10021 @item @code{port} (default: @code{80})
10022 The TCP port to listen for connections.
10023
10024 @item @code{host} (default: @code{"localhost"})
10025 The host (and thus, network interface) to listen to. Use
10026 @code{"0.0.0.0"} to listen on all the network interfaces.
10027
10028 @item @code{compression-level} (default: @code{3})
10029 The gzip compression level at which substitutes are compressed. Use
10030 @code{0} to disable compression altogether, and @code{9} to get the best
10031 compression ratio at the expense of increased CPU usage.
10032
10033 @item @code{nar-path} (default: @code{"nar"})
10034 The URL path at which ``nars'' can be fetched. @xref{Invoking guix
10035 publish, @code{--nar-path}}, for details.
10036
10037 @item @code{cache} (default: @code{#f})
10038 When it is @code{#f}, disable caching and instead generate archives on
10039 demand. Otherwise, this should be the name of a directory---e.g.,
10040 @code{"/var/cache/guix/publish"}---where @command{guix publish} caches
10041 archives and meta-data ready to be sent. @xref{Invoking guix publish,
10042 @option{--cache}}, for more information on the tradeoffs involved.
10043
10044 @item @code{workers} (default: @code{#f})
10045 When it is an integer, this is the number of worker threads used for
10046 caching; when @code{#f}, the number of processors is used.
10047 @xref{Invoking guix publish, @option{--workers}}, for more information.
10048
10049 @item @code{ttl} (default: @code{#f})
10050 When it is an integer, this denotes the @dfn{time-to-live} of the
10051 published archives. @xref{Invoking guix publish, @option{--ttl}}, for
10052 more information.
10053 @end table
10054 @end deftp
10055
10056 @anchor{rngd-service}
10057 @deffn {Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @
10058 [#:device "/dev/hwrng"]
10059 Return a service that runs the @command{rngd} program from @var{rng-tools}
10060 to add @var{device} to the kernel's entropy pool. The service will fail if
10061 @var{device} does not exist.
10062 @end deffn
10063
10064 @anchor{pam-limits-service}
10065 @cindex session limits
10066 @cindex ulimit
10067 @cindex priority
10068 @deffn {Scheme Procedure} pam-limits-service [#:limits @code{'()}]
10069
10070 Return a service that installs a configuration file for the
10071 @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html,
10072 @code{pam_limits} module}. The procedure optionally takes a list of
10073 @code{pam-limits-entry} values, which can be used to specify
10074 @code{ulimit} limits and nice priority limits to user sessions.
10075
10076 The following limits definition sets two hard and soft limits for all
10077 login sessions of users in the @code{realtime} group:
10078
10079 @example
10080 (pam-limits-service
10081 (list
10082 (pam-limits-entry "@@realtime" 'both 'rtprio 99)
10083 (pam-limits-entry "@@realtime" 'both 'memlock 'unlimited)))
10084 @end example
10085
10086 The first entry increases the maximum realtime priority for
10087 non-privileged processes; the second entry lifts any restriction of the
10088 maximum address space that can be locked in memory. These settings are
10089 commonly used for real-time audio systems.
10090 @end deffn
10091
10092 @node Scheduled Job Execution
10093 @subsubsection Scheduled Job Execution
10094
10095 @cindex cron
10096 @cindex mcron
10097 @cindex scheduling jobs
10098 The @code{(gnu services mcron)} module provides an interface to
10099 GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,,
10100 mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional
10101 Unix @command{cron} daemon; the main difference is that it is
10102 implemented in Guile Scheme, which provides a lot of flexibility when
10103 specifying the scheduling of jobs and their actions.
10104
10105 The example below defines an operating system that runs the
10106 @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files})
10107 and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as
10108 well as the @command{mkid} command on behalf of an unprivileged user
10109 (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses
10110 gexps to introduce job definitions that are passed to mcron
10111 (@pxref{G-Expressions}).
10112
10113 @lisp
10114 (use-modules (guix) (gnu) (gnu services mcron))
10115 (use-package-modules base idutils)
10116
10117 (define updatedb-job
10118 ;; Run 'updatedb' at 3AM every day. Here we write the
10119 ;; job's action as a Scheme procedure.
10120 #~(job '(next-hour '(3))
10121 (lambda ()
10122 (execl (string-append #$findutils "/bin/updatedb")
10123 "updatedb"
10124 "--prunepaths=/tmp /var/tmp /gnu/store"))))
10125
10126 (define garbage-collector-job
10127 ;; Collect garbage 5 minutes after midnight every day.
10128 ;; The job's action is a shell command.
10129 #~(job "5 0 * * *" ;Vixie cron syntax
10130 "guix gc -F 1G"))
10131
10132 (define idutils-job
10133 ;; Update the index database as user "charlie" at 12:15PM
10134 ;; and 19:15PM. This runs from the user's home directory.
10135 #~(job '(next-minute-from (next-hour '(12 19)) '(15))
10136 (string-append #$idutils "/bin/mkid src")
10137 #:user "charlie"))
10138
10139 (operating-system
10140 ;; @dots{}
10141 (services (cons (mcron-service (list garbage-collector-job
10142 updatedb-job
10143 idutils-job))
10144 %base-services)))
10145 @end lisp
10146
10147 @xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron},
10148 for more information on mcron job specifications. Below is the
10149 reference of the mcron service.
10150
10151 @deffn {Scheme Procedure} mcron-service @var{jobs} [#:mcron @var{mcron2}]
10152 Return an mcron service running @var{mcron} that schedules @var{jobs}, a
10153 list of gexps denoting mcron job specifications.
10154
10155 This is a shorthand for:
10156 @example
10157 (service mcron-service-type
10158 (mcron-configuration (mcron mcron) (jobs jobs)))
10159 @end example
10160 @end deffn
10161
10162 @defvr {Scheme Variable} mcron-service-type
10163 This is the type of the @code{mcron} service, whose value is an
10164 @code{mcron-configuration} object.
10165
10166 This service type can be the target of a service extension that provides
10167 it additional job specifications (@pxref{Service Composition}). In
10168 other words, it is possible to define services that provide additional
10169 mcron jobs to run.
10170 @end defvr
10171
10172 @deftp {Data Type} mcron-configuration
10173 Data type representing the configuration of mcron.
10174
10175 @table @asis
10176 @item @code{mcron} (default: @var{mcron2})
10177 The mcron package to use.
10178
10179 @item @code{jobs}
10180 This is a list of gexps (@pxref{G-Expressions}), where each gexp
10181 corresponds to an mcron job specification (@pxref{Syntax, mcron job
10182 specifications,, mcron, GNU@tie{}mcron}).
10183 @end table
10184 @end deftp
10185
10186
10187 @node Log Rotation
10188 @subsubsection Log Rotation
10189
10190 @cindex rottlog
10191 @cindex log rotation
10192 @cindex logging
10193 Log files such as those found in @file{/var/log} tend to grow endlessly,
10194 so it's a good idea to @dfn{rotate} them once in a while---i.e., archive
10195 their contents in separate files, possibly compressed. The @code{(gnu
10196 services admin)} module provides an interface to GNU@tie{}Rot[t]log, a
10197 log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual}).
10198
10199 The example below defines an operating system that provides log rotation
10200 with the default settings, for commonly encountered log files.
10201
10202 @lisp
10203 (use-modules (guix) (gnu))
10204 (use-service-modules admin mcron)
10205 (use-package-modules base idutils)
10206
10207 (operating-system
10208 ;; @dots{}
10209 (services (cons* (service mcron-service-type)
10210 (service rottlog-service-type)
10211 %base-services)))
10212 @end lisp
10213
10214 @defvr {Scheme Variable} rottlog-service-type
10215 This is the type of the Rottlog service, whose value is a
10216 @code{rottlog-configuration} object.
10217
10218 Other services can extend this one with new @code{log-rotation} objects
10219 (see below), thereby augmenting the set of files to be rotated.
10220
10221 This service type can define mcron jobs (@pxref{Scheduled Job
10222 Execution}) to run the rottlog service.
10223 @end defvr
10224
10225 @deftp {Data Type} rottlog-configuration
10226 Data type representing the configuration of rottlog.
10227
10228 @table @asis
10229 @item @code{rottlog} (default: @code{rottlog})
10230 The Rottlog package to use.
10231
10232 @item @code{rc-file} (default: @code{(file-append rottlog "/etc/rc")})
10233 The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,,
10234 rottlog, GNU Rot[t]log Manual}).
10235
10236 @item @code{rotations} (default: @code{%default-rotations})
10237 A list of @code{log-rotation} objects as defined below.
10238
10239 @item @code{jobs}
10240 This is a list of gexps where each gexp corresponds to an mcron job
10241 specification (@pxref{Scheduled Job Execution}).
10242 @end table
10243 @end deftp
10244
10245 @deftp {Data Type} log-rotation
10246 Data type representing the rotation of a group of log files.
10247
10248 Taking an example from the Rottlog manual (@pxref{Period Related File
10249 Examples,,, rottlog, GNU Rot[t]log Manual}), a log rotation might be
10250 defined like this:
10251
10252 @example
10253 (log-rotation
10254 (frequency 'daily)
10255 (files '("/var/log/apache/*"))
10256 (options '("storedir apache-archives"
10257 "rotate 6"
10258 "notifempty"
10259 "nocompress")))
10260 @end example
10261
10262 The list of fields is as follows:
10263
10264 @table @asis
10265 @item @code{frequency} (default: @code{'weekly})
10266 The log rotation frequency, a symbol.
10267
10268 @item @code{files}
10269 The list of files or file glob patterns to rotate.
10270
10271 @item @code{options} (default: @code{'()})
10272 The list of rottlog options for this rotation (@pxref{Configuration
10273 parameters,,, rottlog, GNU Rot[t]lg Manual}).
10274
10275 @item @code{post-rotate} (default: @code{#f})
10276 Either @code{#f} or a gexp to execute once the rotation has completed.
10277 @end table
10278 @end deftp
10279
10280 @defvr {Scheme Variable} %default-rotations
10281 Specifies weekly rotation of @var{%rotated-files} and
10282 a couple of other files.
10283 @end defvr
10284
10285 @defvr {Scheme Variable} %rotated-files
10286 The list of syslog-controlled files to be rotated. By default it is:
10287 @code{'("/var/log/messages" "/var/log/secure")}.
10288 @end defvr
10289
10290 @node Networking Services
10291 @subsubsection Networking Services
10292
10293 The @code{(gnu services networking)} module provides services to configure
10294 the network interface.
10295
10296 @cindex DHCP, networking service
10297 @deffn {Scheme Procedure} dhcp-client-service [#:dhcp @var{isc-dhcp}]
10298 Return a service that runs @var{dhcp}, a Dynamic Host Configuration
10299 Protocol (DHCP) client, on all the non-loopback network interfaces.
10300 @end deffn
10301
10302 @defvr {Scheme Variable} static-networking-service-type
10303 This is the type for statically-configured network interfaces.
10304 @c TODO Document <static-networking> data structures.
10305 @end defvr
10306
10307 @deffn {Scheme Procedure} static-networking-service @var{interface} @var{ip} @
10308 [#:netmask #f] [#:gateway #f] [#:name-servers @code{'()}]
10309 Return a service that starts @var{interface} with address @var{ip}. If
10310 @var{netmask} is true, use it as the network mask. If @var{gateway} is true,
10311 it must be a string specifying the default network gateway.
10312
10313 This procedure can be called several times, one for each network
10314 interface of interest. Behind the scenes what it does is extend
10315 @code{static-networking-service-type} with additional network interfaces
10316 to handle.
10317 @end deffn
10318
10319 @cindex wicd
10320 @cindex wireless
10321 @cindex WiFi
10322 @cindex network management
10323 @deffn {Scheme Procedure} wicd-service [#:wicd @var{wicd}]
10324 Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network
10325 management daemon that aims to simplify wired and wireless networking.
10326
10327 This service adds the @var{wicd} package to the global profile, providing
10328 several commands to interact with the daemon and configure networking:
10329 @command{wicd-client}, a graphical user interface, and the @command{wicd-cli}
10330 and @command{wicd-curses} user interfaces.
10331 @end deffn
10332
10333 @cindex NetworkManager
10334
10335 @defvr {Scheme Variable} network-manager-service-type
10336 This is the service type for the
10337 @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager}
10338 service. The value for this service type is a
10339 @code{network-manager-configuration} record.
10340
10341 This service is part of @code{%desktop-services} (@pxref{Desktop
10342 Services}).
10343 @end defvr
10344
10345 @deftp {Data Type} network-manager-configuration
10346 Data type representing the configuration of NetworkManager.
10347
10348 @table @asis
10349 @item @code{network-manager} (default: @code{network-manager})
10350 The NetworkManager package to use.
10351
10352 @item @code{dns} (default: @code{"default"})
10353 Processing mode for DNS, which affects how NetworkManager uses the
10354 @code{resolv.conf} configuration file.
10355
10356 @table @samp
10357 @item default
10358 NetworkManager will update @code{resolv.conf} to reflect the nameservers
10359 provided by currently active connections.
10360
10361 @item dnsmasq
10362 NetworkManager will run @code{dnsmasq} as a local caching nameserver,
10363 using a "split DNS" configuration if you are connected to a VPN, and
10364 then update @code{resolv.conf} to point to the local nameserver.
10365
10366 @item none
10367 NetworkManager will not modify @code{resolv.conf}.
10368 @end table
10369
10370 @item @code{vpn-plugins} (default: @code{'()})
10371 This is the list of available plugins for virtual private networks
10372 (VPNs). An example of this is the @code{network-manager-openvpn}
10373 package, which allows NetworkManager to manage VPNs @i{via} OpenVPN.
10374
10375 @end table
10376 @end deftp
10377
10378 @cindex Connman
10379 @deffn {Scheme Variable} connman-service-type
10380 This is the service type to run @url{https://01.org/connman,Connman},
10381 a network connection manager.
10382
10383 Its value must be an
10384 @code{connman-configuration} record as in this example:
10385
10386 @example
10387 (service connman-service-type
10388 (connman-configuration
10389 (disable-vpn? #t)))
10390 @end example
10391
10392 See below for details about @code{connman-configuration}.
10393 @end deffn
10394
10395 @deftp {Data Type} connman-configuration
10396 Data Type representing the configuration of connman.
10397
10398 @table @asis
10399 @item @code{connman} (default: @var{connman})
10400 The connman package to use.
10401
10402 @item @code{disable-vpn?} (default: @code{#f})
10403 When true, enable connman's vpn plugin.
10404 @end table
10405 @end deftp
10406
10407 @cindex WPA Supplicant
10408 @defvr {Scheme Variable} wpa-supplicant-service-type
10409 This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA
10410 supplicant}, an authentication daemon required to authenticate against
10411 encrypted WiFi or ethernet networks. It is configured to listen for
10412 requests on D-Bus.
10413
10414 The value of this service is the @code{wpa-supplicant} package to use.
10415 Thus, it can be instantiated like this:
10416
10417 @lisp
10418 (use-modules (gnu services networking))
10419
10420 (service wpa-supplicant-service-type)
10421 @end lisp
10422 @end defvr
10423
10424 @cindex NTP
10425 @cindex real time clock
10426 @deffn {Scheme Procedure} ntp-service [#:ntp @var{ntp}] @
10427 [#:servers @var{%ntp-servers}] @
10428 [#:allow-large-adjustment? #f]
10429 Return a service that runs the daemon from @var{ntp}, the
10430 @uref{http://www.ntp.org, Network Time Protocol package}. The daemon will
10431 keep the system clock synchronized with that of @var{servers}.
10432 @var{allow-large-adjustment?} determines whether @command{ntpd} is allowed to
10433 make an initial adjustment of more than 1,000 seconds.
10434 @end deffn
10435
10436 @defvr {Scheme Variable} %ntp-servers
10437 List of host names used as the default NTP servers.
10438 @end defvr
10439
10440 @cindex inetd
10441 @deffn {Scheme variable} inetd-service-type
10442 This service runs the @command{inetd} (@pxref{inetd invocation,,,
10443 inetutils, GNU Inetutils}) daemon. @command{inetd} listens for
10444 connections on internet sockets, and lazily starts the specified server
10445 program when a connection is made on one of these sockets.
10446
10447 The value of this service is an @code{inetd-configuration} object. The
10448 following example configures the @command{inetd} daemon to provide the
10449 built-in @command{echo} service, as well as an smtp service which
10450 forwards smtp traffic over ssh to a server @code{smtp-server} behind a
10451 gateway @code{hostname}:
10452
10453 @example
10454 (service
10455 inetd-service-type
10456 (inetd-configuration
10457 (entries (list
10458 (inetd-entry
10459 (name "echo")
10460 (socket-type 'stream)
10461 (protocol "tcp")
10462 (wait? #f)
10463 (user "root"))
10464 (inetd-entry
10465 (node "127.0.0.1")
10466 (name "smtp")
10467 (socket-type 'stream)
10468 (protocol "tcp")
10469 (wait? #f)
10470 (user "root")
10471 (program (file-append openssh "/bin/ssh"))
10472 (arguments
10473 '("ssh" "-qT" "-i" "/path/to/ssh_key"
10474 "-W" "smtp-server:25" "user@@hostname")))))
10475 @end example
10476
10477 See below for more details about @code{inetd-configuration}.
10478 @end deffn
10479
10480 @deftp {Data Type} inetd-configuration
10481 Data type representing the configuration of @command{inetd}.
10482
10483 @table @asis
10484 @item @code{program} (default: @code{(file-append inetutils "/libexec/inetd")})
10485 The @command{inetd} executable to use.
10486
10487 @item @code{entries} (default: @code{'()})
10488 A list of @command{inetd} service entries. Each entry should be created
10489 by the @code{inetd-entry} constructor.
10490 @end table
10491 @end deftp
10492
10493 @deftp {Data Type} inetd-entry
10494 Data type representing an entry in the @command{inetd} configuration.
10495 Each entry corresponds to a socket where @command{inetd} will listen for
10496 requests.
10497
10498 @table @asis
10499 @item @code{node} (default: @code{#f})
10500 Optional string, a comma-separated list of local addresses
10501 @command{inetd} should use when listening for this service.
10502 @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete
10503 description of all options.
10504 @item @code{name}
10505 A string, the name must correspond to an entry in @code{/etc/services}.
10506 @item @code{socket-type}
10507 One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or
10508 @code{'seqpacket}.
10509 @item @code{protocol}
10510 A string, must correspond to an entry in @code{/etc/protocols}.
10511 @item @code{wait?} (default: @code{#t})
10512 Whether @command{inetd} should wait for the server to exit before
10513 listening to new service requests.
10514 @item @code{user}
10515 A string containing the user (and, optionally, group) name of the user
10516 as whom the server should run. The group name can be specified in a
10517 suffix, separated by a colon or period, i.e. @code{"user"},
10518 @code{"user:group"} or @code{"user.group"}.
10519 @item @code{program} (default: @code{"internal"})
10520 The server program which will serve the requests, or @code{"internal"}
10521 if @command{inetd} should use a built-in service.
10522 @item @code{arguments} (default: @code{'()})
10523 A list strings or file-like objects, which are the server program's
10524 arguments, starting with the zeroth argument, i.e. the name of the
10525 program itself. For @command{inetd}'s internal services, this entry
10526 must be @code{'()} or @code{'("internal")}.
10527 @end table
10528
10529 @xref{Configuration file,,, inetutils, GNU Inetutils} for a more
10530 detailed discussion of each configuration field.
10531 @end deftp
10532
10533 @cindex Tor
10534 @deffn {Scheme Procedure} tor-service [@var{config-file}] [#:tor @var{tor}]
10535 Return a service to run the @uref{https://torproject.org, Tor} anonymous
10536 networking daemon.
10537
10538 The daemon runs as the @code{tor} unprivileged user. It is passed
10539 @var{config-file}, a file-like object, with an additional @code{User tor} line
10540 and lines for hidden services added via @code{tor-hidden-service}. Run
10541 @command{man tor} for information about the configuration file.
10542 @end deffn
10543
10544 @cindex hidden service
10545 @deffn {Scheme Procedure} tor-hidden-service @var{name} @var{mapping}
10546 Define a new Tor @dfn{hidden service} called @var{name} and implementing
10547 @var{mapping}. @var{mapping} is a list of port/host tuples, such as:
10548
10549 @example
10550 '((22 "127.0.0.1:22")
10551 (80 "127.0.0.1:8080"))
10552 @end example
10553
10554 In this example, port 22 of the hidden service is mapped to local port 22, and
10555 port 80 is mapped to local port 8080.
10556
10557 This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where
10558 the @file{hostname} file contains the @code{.onion} host name for the hidden
10559 service.
10560
10561 See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor
10562 project's documentation} for more information.
10563 @end deffn
10564
10565 @deffn {Scheme Procedure} bitlbee-service [#:bitlbee bitlbee] @
10566 [#:interface "127.0.0.1"] [#:port 6667] @
10567 [#:extra-settings ""]
10568 Return a service that runs @url{http://bitlbee.org,BitlBee}, a daemon that
10569 acts as a gateway between IRC and chat networks.
10570
10571 The daemon will listen to the interface corresponding to the IP address
10572 specified in @var{interface}, on @var{port}. @code{127.0.0.1} means that only
10573 local clients can connect, whereas @code{0.0.0.0} means that connections can
10574 come from any networking interface.
10575
10576 In addition, @var{extra-settings} specifies a string to append to the
10577 configuration file.
10578 @end deffn
10579
10580 The @code{(gnu services rsync)} module provides the following services:
10581
10582 You might want an rsync daemon if you have files that you want available
10583 so anyone (or just yourself) can download existing files or upload new
10584 files.
10585
10586 @deffn {Scheme Variable} rsync-service-type
10587 This is the type for the @uref{https://rsync.samba.org, rsync} rsync daemon,
10588 @command{rsync-configuration} record as in this example:
10589
10590 @example
10591 (service rsync-service-type)
10592 @end example
10593
10594 See below for details about @code{rsync-configuration}.
10595 @end deffn
10596
10597 @deftp {Data Type} rsync-configuration
10598 Data type representing the configuration for @code{rsync-service}.
10599
10600 @table @asis
10601 @item @code{package} (default: @var{rsync})
10602 @code{rsync} package to use.
10603
10604 @item @code{port-number} (default: @code{873})
10605 TCP port on which @command{rsync} listens for incoming connections. If port
10606 is less than @code{1024} @command{rsync} needs to be started as the
10607 @code{root} user and group.
10608
10609 @item @code{pid-file} (default: @code{"/var/run/rsyncd/rsyncd.pid"})
10610 Name of the file where @command{rsync} writes its PID.
10611
10612 @item @code{lock-file} (default: @code{"/var/run/rsyncd/rsyncd.lock"})
10613 Name of the file where @command{rsync} writes its lock file.
10614
10615 @item @code{log-file} (default: @code{"/var/log/rsyncd.log"})
10616 Name of the file where @command{rsync} writes its log file.
10617
10618 @item @code{use-chroot?} (default: @var{#t})
10619 Whether to use chroot for @command{rsync} shared directory.
10620
10621 @item @code{share-path} (default: @file{/srv/rsync})
10622 Location of the @command{rsync} shared directory.
10623
10624 @item @code{share-comment} (default: @code{"Rsync share"})
10625 Comment of the @command{rsync} shared directory.
10626
10627 @item @code{read-only?} (default: @var{#f})
10628 Read-write permissions to shared directory.
10629
10630 @item @code{timeout} (default: @code{300})
10631 I/O timeout in seconds.
10632
10633 @item @code{user} (default: @var{"root"})
10634 Owner of the @code{rsync} process.
10635
10636 @item @code{group} (default: @var{"root"})
10637 Group of the @code{rsync} process.
10638
10639 @item @code{uid} (default: @var{"rsyncd"})
10640 User name or user ID that file transfers to and from that module should take
10641 place as when the daemon was run as @code{root}.
10642
10643 @item @code{gid} (default: @var{"rsyncd"})
10644 Group name or group ID that will be used when accessing the module.
10645
10646 @end table
10647 @end deftp
10648
10649 Furthermore, @code{(gnu services ssh)} provides the following services.
10650 @cindex SSH
10651 @cindex SSH server
10652
10653 @deffn {Scheme Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @
10654 [#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @
10655 [#:allow-empty-passwords? #f] [#:root-login? #f] @
10656 [#:syslog-output? #t] [#:x11-forwarding? #t] @
10657 [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @
10658 [#:public-key-authentication? #t] [#:initialize? #t]
10659 Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
10660 @var{host-key} must designate a file containing the host key, and readable
10661 only by root.
10662
10663 When @var{daemonic?} is true, @command{lshd} will detach from the
10664 controlling terminal and log its output to syslogd, unless one sets
10665 @var{syslog-output?} to false. Obviously, it also makes lsh-service
10666 depend on existence of syslogd service. When @var{pid-file?} is true,
10667 @command{lshd} writes its PID to the file called @var{pid-file}.
10668
10669 When @var{initialize?} is true, automatically create the seed and host key
10670 upon service activation if they do not exist yet. This may take long and
10671 require interaction.
10672
10673 When @var{initialize?} is false, it is up to the user to initialize the
10674 randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
10675 a key pair with the private key stored in file @var{host-key} (@pxref{lshd
10676 basics,,, lsh, LSH Manual}).
10677
10678 When @var{interfaces} is empty, lshd listens for connections on all the
10679 network interfaces; otherwise, @var{interfaces} must be a list of host names
10680 or addresses.
10681
10682 @var{allow-empty-passwords?} specifies whether to accept log-ins with empty
10683 passwords, and @var{root-login?} specifies whether to accept log-ins as
10684 root.
10685
10686 The other options should be self-descriptive.
10687 @end deffn
10688
10689 @cindex SSH
10690 @cindex SSH server
10691 @deffn {Scheme Variable} openssh-service-type
10692 This is the type for the @uref{http://www.openssh.org, OpenSSH} secure
10693 shell daemon, @command{sshd}. Its value must be an
10694 @code{openssh-configuration} record as in this example:
10695
10696 @example
10697 (service openssh-service-type
10698 (openssh-configuration
10699 (x11-forwarding? #t)
10700 (permit-root-login 'without-password)
10701 (authorized-keys
10702 `(("alice" ,(local-file "alice.pub"))
10703 ("bob" ,(local-file "bob.pub"))))))
10704 @end example
10705
10706 See below for details about @code{openssh-configuration}.
10707
10708 This service can be extended with extra authorized keys, as in this
10709 example:
10710
10711 @example
10712 (service-extension openssh-service-type
10713 (const `(("charlie"
10714 ,(local-file "charlie.pub")))))
10715 @end example
10716 @end deffn
10717
10718 @deftp {Data Type} openssh-configuration
10719 This is the configuration record for OpenSSH's @command{sshd}.
10720
10721 @table @asis
10722 @item @code{pid-file} (default: @code{"/var/run/sshd.pid"})
10723 Name of the file where @command{sshd} writes its PID.
10724
10725 @item @code{port-number} (default: @code{22})
10726 TCP port on which @command{sshd} listens for incoming connections.
10727
10728 @item @code{permit-root-login} (default: @code{#f})
10729 This field determines whether and when to allow logins as root. If
10730 @code{#f}, root logins are disallowed; if @code{#t}, they are allowed.
10731 If it's the symbol @code{'without-password}, then root logins are
10732 permitted but not with password-based authentication.
10733
10734 @item @code{allow-empty-passwords?} (default: @code{#f})
10735 When true, users with empty passwords may log in. When false, they may
10736 not.
10737
10738 @item @code{password-authentication?} (default: @code{#t})
10739 When true, users may log in with their password. When false, they have
10740 other authentication methods.
10741
10742 @item @code{public-key-authentication?} (default: @code{#t})
10743 When true, users may log in using public key authentication. When
10744 false, users have to use other authentication method.
10745
10746 Authorized public keys are stored in @file{~/.ssh/authorized_keys}.
10747 This is used only by protocol version 2.
10748
10749 @item @code{x11-forwarding?} (default: @code{#f})
10750 When true, forwarding of X11 graphical client connections is
10751 enabled---in other words, @command{ssh} options @option{-X} and
10752 @option{-Y} will work.
10753
10754 @item @code{challenge-response-authentication?} (default: @code{#f})
10755 Specifies whether challenge response authentication is allowed (e.g. via
10756 PAM).
10757
10758 @item @code{use-pam?} (default: @code{#t})
10759 Enables the Pluggable Authentication Module interface. If set to
10760 @code{#t}, this will enable PAM authentication using
10761 @code{challenge-response-authentication?} and
10762 @code{password-authentication?}, in addition to PAM account and session
10763 module processing for all authentication types.
10764
10765 Because PAM challenge response authentication usually serves an
10766 equivalent role to password authentication, you should disable either
10767 @code{challenge-response-authentication?} or
10768 @code{password-authentication?}.
10769
10770 @item @code{print-last-log?} (default: @code{#t})
10771 Specifies whether @command{sshd} should print the date and time of the
10772 last user login when a user logs in interactively.
10773
10774 @item @code{subsystems} (default: @code{'(("sftp" "internal-sftp"))})
10775 Configures external subsystems (e.g. file transfer daemon).
10776
10777 This is a list of two-element lists, each of which containing the
10778 subsystem name and a command (with optional arguments) to execute upon
10779 subsystem request.
10780
10781 The command @command{internal-sftp} implements an in-process SFTP
10782 server. Alternately, one can specify the @command{sftp-server} command:
10783 @example
10784 (service openssh-service-type
10785 (openssh-configuration
10786 (subsystems
10787 `(("sftp" ,(file-append openssh "/libexec/sftp-server"))))))
10788 @end example
10789
10790 @item @code{authorized-keys} (default: @code{'()})
10791 @cindex authorized keys, SSH
10792 @cindex SSH authorized keys
10793 This is the list of authorized keys. Each element of the list is a user
10794 name followed by one or more file-like objects that represent SSH public
10795 keys. For example:
10796
10797 @example
10798 (openssh-configuration
10799 (authorized-keys
10800 `(("rekado" ,(local-file "rekado.pub"))
10801 ("chris" ,(local-file "chris.pub"))
10802 ("root" ,(local-file "rekado.pub") ,(local-file "chris.pub")))))
10803 @end example
10804
10805 @noindent
10806 registers the specified public keys for user accounts @code{rekado},
10807 @code{chris}, and @code{root}.
10808
10809 Additional authorized keys can be specified @i{via}
10810 @code{service-extension}.
10811
10812 Note that this does @emph{not} interfere with the use of
10813 @file{~/.ssh/authorized_keys}.
10814 @end table
10815 @end deftp
10816
10817 @deffn {Scheme Procedure} dropbear-service [@var{config}]
10818 Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH
10819 daemon} with the given @var{config}, a @code{<dropbear-configuration>}
10820 object.
10821
10822 For example, to specify a Dropbear service listening on port 1234, add
10823 this call to the operating system's @code{services} field:
10824
10825 @example
10826 (dropbear-service (dropbear-configuration
10827 (port-number 1234)))
10828 @end example
10829 @end deffn
10830
10831 @deftp {Data Type} dropbear-configuration
10832 This data type represents the configuration of a Dropbear SSH daemon.
10833
10834 @table @asis
10835 @item @code{dropbear} (default: @var{dropbear})
10836 The Dropbear package to use.
10837
10838 @item @code{port-number} (default: 22)
10839 The TCP port where the daemon waits for incoming connections.
10840
10841 @item @code{syslog-output?} (default: @code{#t})
10842 Whether to enable syslog output.
10843
10844 @item @code{pid-file} (default: @code{"/var/run/dropbear.pid"})
10845 File name of the daemon's PID file.
10846
10847 @item @code{root-login?} (default: @code{#f})
10848 Whether to allow @code{root} logins.
10849
10850 @item @code{allow-empty-passwords?} (default: @code{#f})
10851 Whether to allow empty passwords.
10852
10853 @item @code{password-authentication?} (default: @code{#t})
10854 Whether to enable password-based authentication.
10855 @end table
10856 @end deftp
10857
10858 @defvr {Scheme Variable} %facebook-host-aliases
10859 This variable contains a string for use in @file{/etc/hosts}
10860 (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each
10861 line contains a entry that maps a known server name of the Facebook
10862 on-line service---e.g., @code{www.facebook.com}---to the local
10863 host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}.
10864
10865 This variable is typically used in the @code{hosts-file} field of an
10866 @code{operating-system} declaration (@pxref{operating-system Reference,
10867 @file{/etc/hosts}}):
10868
10869 @example
10870 (use-modules (gnu) (guix))
10871
10872 (operating-system
10873 (host-name "mymachine")
10874 ;; ...
10875 (hosts-file
10876 ;; Create a /etc/hosts file with aliases for "localhost"
10877 ;; and "mymachine", as well as for Facebook servers.
10878 (plain-file "hosts"
10879 (string-append (local-host-aliases host-name)
10880 %facebook-host-aliases))))
10881 @end example
10882
10883 This mechanism can prevent programs running locally, such as Web
10884 browsers, from accessing Facebook.
10885 @end defvr
10886
10887 The @code{(gnu services avahi)} provides the following definition.
10888
10889 @deffn {Scheme Procedure} avahi-service [#:avahi @var{avahi}] @
10890 [#:host-name #f] [#:publish? #t] [#:ipv4? #t] @
10891 [#:ipv6? #t] [#:wide-area? #f] @
10892 [#:domains-to-browse '()] [#:debug? #f]
10893 Return a service that runs @command{avahi-daemon}, a system-wide
10894 mDNS/DNS-SD responder that allows for service discovery and
10895 "zero-configuration" host name lookups (see @uref{http://avahi.org/}), and
10896 extends the name service cache daemon (nscd) so that it can resolve
10897 @code{.local} host names using
10898 @uref{http://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. Additionally,
10899 add the @var{avahi} package to the system profile so that commands such as
10900 @command{avahi-browse} are directly usable.
10901
10902 If @var{host-name} is different from @code{#f}, use that as the host name to
10903 publish for this machine; otherwise, use the machine's actual host name.
10904
10905 When @var{publish?} is true, publishing of host names and services is allowed;
10906 in particular, avahi-daemon will publish the machine's host name and IP
10907 address via mDNS on the local network.
10908
10909 When @var{wide-area?} is true, DNS-SD over unicast DNS is enabled.
10910
10911 Boolean values @var{ipv4?} and @var{ipv6?} determine whether to use IPv4/IPv6
10912 sockets.
10913 @end deffn
10914
10915 @deffn {Scheme Variable} openvswitch-service-type
10916 This is the type of the @uref{http://www.openvswitch.org, Open vSwitch}
10917 service, whose value should be an @code{openvswitch-configuration}
10918 object.
10919 @end deffn
10920
10921 @deftp {Data Type} openvswitch-configuration
10922 Data type representing the configuration of Open vSwitch, a multilayer
10923 virtual switch which is designed to enable massive network automation
10924 through programmatic extension.
10925
10926 @table @asis
10927 @item @code{package} (default: @var{openvswitch})
10928 Package object of the Open vSwitch.
10929
10930 @end table
10931 @end deftp
10932
10933 @node X Window
10934 @subsubsection X Window
10935
10936 @cindex X11
10937 @cindex X Window System
10938 Support for the X Window graphical display system---specifically
10939 Xorg---is provided by the @code{(gnu services xorg)} module. Note that
10940 there is no @code{xorg-service} procedure. Instead, the X server is
10941 started by the @dfn{login manager}, currently SLiM.
10942
10943 @deftp {Data Type} sddm-configuration
10944 This is the data type representing the sddm service configuration.
10945
10946 @table @asis
10947 @item @code{display-server} (default: "x11")
10948 Select display server to use for the greeter. Valid values are "x11"
10949 or "wayland".
10950
10951 @item @code{numlock} (default: "on")
10952 Valid values are "on", "off" or "none".
10953
10954 @item @code{halt-command} (default @code{#~(string-apppend #$shepherd "/sbin/halt")})
10955 Command to run when halting.
10956
10957 @item @code{reboot-command} (default @code{#~(string-append #$shepherd "/sbin/reboot")})
10958 Command to run when rebooting.
10959
10960 @item @code{theme} (default "maldives")
10961 Theme to use. Default themes provided by SDDM are "elarun" or "maldives".
10962
10963 @item @code{themes-directory} (default "/run/current-system/profile/share/sddm/themes")
10964 Directory to look for themes.
10965
10966 @item @code{faces-directory} (default "/run/current-system/profile/share/sddm/faces")
10967 Directory to look for faces.
10968
10969 @item @code{default-path} (default "/run/current-system/profile/bin")
10970 Default PATH to use.
10971
10972 @item @code{minimum-uid} (default 1000)
10973 Minimum UID to display in SDDM.
10974
10975 @item @code{maximum-uid} (default 2000)
10976 Maximum UID to display in SDDM
10977
10978 @item @code{remember-last-user?} (default #t)
10979 Remember last user.
10980
10981 @item @code{remember-last-session?} (default #t)
10982 Remember last session.
10983
10984 @item @code{hide-users} (default "")
10985 Usernames to hide from SDDM greeter.
10986
10987 @item @code{hide-shells} (default @code{#~(string-append #$shadow "/sbin/nologin")})
10988 Users with shells listed will be hidden from the SDDM greeter.
10989
10990 @item @code{session-command} (default @code{#~(string-append #$sddm "/share/sddm/scripts/wayland-session")})
10991 Script to run before starting a wayland session.
10992
10993 @item @code{sessions-directory} (default "/run/current-system/profile/share/wayland-sessions")
10994 Directory to look for desktop files starting wayland sessions.
10995
10996 @item @code{xorg-server-path} (default @code{xorg-start-command})
10997 Path to xorg-server.
10998
10999 @item @code{xauth-path} (default @code{#~(string-append #$xauth "/bin/xauth")})
11000 Path to xauth.
11001
11002 @item @code{xephyr-path} (default @code{#~(string-append #$xorg-server "/bin/Xephyr")})
11003 Path to Xephyr.
11004
11005 @item @code{xdisplay-start} (default @code{#~(string-append #$sddm "/share/sddm/scripts/Xsetup")})
11006 Script to run after starting xorg-server.
11007
11008 @item @code{xdisplay-stop} (default @code{#~(string-append #$sddm "/share/sddm/scripts/Xstop")})
11009 Script to run before stopping xorg-server.
11010
11011 @item @code{xsession-command} (default: @code{xinitr })
11012 Script to run before starting a X session.
11013
11014 @item @code{xsessions-directory} (default: "/run/current-system/profile/share/xsessions")
11015 Directory to look for desktop files starting X sessions.
11016
11017 @item @code{minimum-vt} (default: 7)
11018 Minimum VT to use.
11019
11020 @item @code{xserver-arguments} (default "-nolisten tcp")
11021 Arguments to pass to xorg-server.
11022
11023 @item @code{auto-login-user} (default "")
11024 User to use for auto-login.
11025
11026 @item @code{auto-login-session} (default "")
11027 Desktop file to use for auto-login.
11028
11029 @item @code{relogin?} (default #f)
11030 Relogin after logout.
11031
11032 @end table
11033 @end deftp
11034
11035 @cindex login manager
11036 @deffn {Scheme Procedure} sddm-service config
11037 Return a service that spawns the SDDM graphical login manager for config of
11038 type @code{<sddm-configuration>}.
11039
11040 @example
11041 (sddm-service (sddm-configuration
11042 (auto-login-user "Alice")
11043 (auto-login-session "xfce.desktop")))
11044 @end example
11045 @end deffn
11046
11047 @deffn {Scheme Procedure} slim-service [#:allow-empty-passwords? #f] @
11048 [#:auto-login? #f] [#:default-user ""] [#:startx] @
11049 [#:theme @var{%default-slim-theme}] @
11050 [#:theme-name @var{%default-slim-theme-name}]
11051 Return a service that spawns the SLiM graphical login manager, which in
11052 turn starts the X display server with @var{startx}, a command as returned by
11053 @code{xorg-start-command}.
11054
11055 @cindex X session
11056
11057 SLiM automatically looks for session types described by the @file{.desktop}
11058 files in @file{/run/current-system/profile/share/xsessions} and allows users
11059 to choose a session from the log-in screen using @kbd{F1}. Packages such as
11060 @var{xfce}, @var{sawfish}, and @var{ratpoison} provide @file{.desktop} files;
11061 adding them to the system-wide set of packages automatically makes them
11062 available at the log-in screen.
11063
11064 In addition, @file{~/.xsession} files are honored. When available,
11065 @file{~/.xsession} must be an executable that starts a window manager
11066 and/or other X clients.
11067
11068 When @var{allow-empty-passwords?} is true, allow logins with an empty
11069 password. When @var{auto-login?} is true, log in automatically as
11070 @var{default-user}.
11071
11072 If @var{theme} is @code{#f}, use the default log-in theme; otherwise
11073 @var{theme} must be a gexp denoting the name of a directory containing the
11074 theme to use. In that case, @var{theme-name} specifies the name of the
11075 theme.
11076 @end deffn
11077
11078 @defvr {Scheme Variable} %default-theme
11079 @defvrx {Scheme Variable} %default-theme-name
11080 The G-Expression denoting the default SLiM theme and its name.
11081 @end defvr
11082
11083 @deffn {Scheme Procedure} xorg-start-command [#:guile] @
11084 [#:configuration-file #f] [#:xorg-server @var{xorg-server}]
11085 Return a derivation that builds a @var{guile} script to start the X server
11086 from @var{xorg-server}. @var{configuration-file} is the server configuration
11087 file or a derivation that builds it; when omitted, the result of
11088 @code{xorg-configuration-file} is used.
11089
11090 Usually the X server is started by a login manager.
11091 @end deffn
11092
11093 @deffn {Scheme Procedure} xorg-configuration-file @
11094 [#:drivers '()] [#:resolutions '()] [#:extra-config '()]
11095 Return a configuration file for the Xorg server containing search paths for
11096 all the common drivers.
11097
11098 @var{drivers} must be either the empty list, in which case Xorg chooses a
11099 graphics driver automatically, or a list of driver names that will be tried in
11100 this order---e.g., @code{(\"modesetting\" \"vesa\")}.
11101
11102 Likewise, when @var{resolutions} is the empty list, Xorg chooses an
11103 appropriate screen resolution; otherwise, it must be a list of
11104 resolutions---e.g., @code{((1024 768) (640 480))}.
11105
11106 Last, @var{extra-config} is a list of strings or objects appended to the
11107 @code{text-file*} argument list. It is used to pass extra text to be added
11108 verbatim to the configuration file.
11109 @end deffn
11110
11111 @deffn {Scheme Procedure} screen-locker-service @var{package} [@var{name}]
11112 Add @var{package}, a package for a screen-locker or screen-saver whose
11113 command is @var{program}, to the set of setuid programs and add a PAM entry
11114 for it. For example:
11115
11116 @lisp
11117 (screen-locker-service xlockmore "xlock")
11118 @end lisp
11119
11120 makes the good ol' XlockMore usable.
11121 @end deffn
11122
11123
11124 @node Printing Services
11125 @subsubsection Printing Services
11126
11127 @cindex printer support with CUPS
11128 The @code{(gnu services cups)} module provides a Guix service definition
11129 for the CUPS printing service. To add printer support to a GuixSD
11130 system, add a @code{cups-service} to the operating system definition:
11131
11132 @deffn {Scheme Variable} cups-service-type
11133 The service type for the CUPS print server. Its value should be a valid
11134 CUPS configuration (see below). To use the default settings, simply
11135 write:
11136 @example
11137 (service cups-service-type)
11138 @end example
11139 @end deffn
11140
11141 The CUPS configuration controls the basic things about your CUPS
11142 installation: what interfaces it listens on, what to do if a print job
11143 fails, how much logging to do, and so on. To actually add a printer,
11144 you have to visit the @url{http://localhost:631} URL, or use a tool such
11145 as GNOME's printer configuration services. By default, configuring a
11146 CUPS service will generate a self-signed certificate if needed, for
11147 secure connections to the print server.
11148
11149 Suppose you want to enable the Web interface of CUPS and also add
11150 support for HP printers @i{via} the @code{hplip} package. You can do
11151 that directly, like this (you need to use the @code{(gnu packages cups)}
11152 module):
11153
11154 @example
11155 (service cups-service-type
11156 (cups-configuration
11157 (web-interface? #t)
11158 (extensions
11159 (list cups-filters hplip))))
11160 @end example
11161
11162 The available configuration parameters follow. Each parameter
11163 definition is preceded by its type; for example, @samp{string-list foo}
11164 indicates that the @code{foo} parameter should be specified as a list of
11165 strings. There is also a way to specify the configuration as a string,
11166 if you have an old @code{cupsd.conf} file that you want to port over
11167 from some other system; see the end for more details.
11168
11169 @c The following documentation was initially generated by
11170 @c (generate-documentation) in (gnu services cups). Manually maintained
11171 @c documentation is better, so we shouldn't hesitate to edit below as
11172 @c needed. However if the change you want to make to this documentation
11173 @c can be done in an automated way, it's probably easier to change
11174 @c (generate-documentation) than to make it below and have to deal with
11175 @c the churn as CUPS updates.
11176
11177
11178 Available @code{cups-configuration} fields are:
11179
11180 @deftypevr {@code{cups-configuration} parameter} package cups
11181 The CUPS package.
11182 @end deftypevr
11183
11184 @deftypevr {@code{cups-configuration} parameter} package-list extensions
11185 Drivers and other extensions to the CUPS package.
11186 @end deftypevr
11187
11188 @deftypevr {@code{cups-configuration} parameter} files-configuration files-configuration
11189 Configuration of where to write logs, what directories to use for print
11190 spools, and related privileged configuration parameters.
11191
11192 Available @code{files-configuration} fields are:
11193
11194 @deftypevr {@code{files-configuration} parameter} log-location access-log
11195 Defines the access log filename. Specifying a blank filename disables
11196 access log generation. The value @code{stderr} causes log entries to be
11197 sent to the standard error file when the scheduler is running in the
11198 foreground, or to the system log daemon when run in the background. The
11199 value @code{syslog} causes log entries to be sent to the system log
11200 daemon. The server name may be included in filenames using the string
11201 @code{%s}, as in @code{/var/log/cups/%s-access_log}.
11202
11203 Defaults to @samp{"/var/log/cups/access_log"}.
11204 @end deftypevr
11205
11206 @deftypevr {@code{files-configuration} parameter} file-name cache-dir
11207 Where CUPS should cache data.
11208
11209 Defaults to @samp{"/var/cache/cups"}.
11210 @end deftypevr
11211
11212 @deftypevr {@code{files-configuration} parameter} string config-file-perm
11213 Specifies the permissions for all configuration files that the scheduler
11214 writes.
11215
11216 Note that the permissions for the printers.conf file are currently
11217 masked to only allow access from the scheduler user (typically root).
11218 This is done because printer device URIs sometimes contain sensitive
11219 authentication information that should not be generally known on the
11220 system. There is no way to disable this security feature.
11221
11222 Defaults to @samp{"0640"}.
11223 @end deftypevr
11224
11225 @deftypevr {@code{files-configuration} parameter} log-location error-log
11226 Defines the error log filename. Specifying a blank filename disables
11227 access log generation. The value @code{stderr} causes log entries to be
11228 sent to the standard error file when the scheduler is running in the
11229 foreground, or to the system log daemon when run in the background. The
11230 value @code{syslog} causes log entries to be sent to the system log
11231 daemon. The server name may be included in filenames using the string
11232 @code{%s}, as in @code{/var/log/cups/%s-error_log}.
11233
11234 Defaults to @samp{"/var/log/cups/error_log"}.
11235 @end deftypevr
11236
11237 @deftypevr {@code{files-configuration} parameter} string fatal-errors
11238 Specifies which errors are fatal, causing the scheduler to exit. The
11239 kind strings are:
11240
11241 @table @code
11242 @item none
11243 No errors are fatal.
11244
11245 @item all
11246 All of the errors below are fatal.
11247
11248 @item browse
11249 Browsing initialization errors are fatal, for example failed connections
11250 to the DNS-SD daemon.
11251
11252 @item config
11253 Configuration file syntax errors are fatal.
11254
11255 @item listen
11256 Listen or Port errors are fatal, except for IPv6 failures on the
11257 loopback or @code{any} addresses.
11258
11259 @item log
11260 Log file creation or write errors are fatal.
11261
11262 @item permissions
11263 Bad startup file permissions are fatal, for example shared TLS
11264 certificate and key files with world-read permissions.
11265 @end table
11266
11267 Defaults to @samp{"all -browse"}.
11268 @end deftypevr
11269
11270 @deftypevr {@code{files-configuration} parameter} boolean file-device?
11271 Specifies whether the file pseudo-device can be used for new printer
11272 queues. The URI @uref{file:///dev/null} is always allowed.
11273
11274 Defaults to @samp{#f}.
11275 @end deftypevr
11276
11277 @deftypevr {@code{files-configuration} parameter} string group
11278 Specifies the group name or ID that will be used when executing external
11279 programs.
11280
11281 Defaults to @samp{"lp"}.
11282 @end deftypevr
11283
11284 @deftypevr {@code{files-configuration} parameter} string log-file-perm
11285 Specifies the permissions for all log files that the scheduler writes.
11286
11287 Defaults to @samp{"0644"}.
11288 @end deftypevr
11289
11290 @deftypevr {@code{files-configuration} parameter} log-location page-log
11291 Defines the page log filename. Specifying a blank filename disables
11292 access log generation. The value @code{stderr} causes log entries to be
11293 sent to the standard error file when the scheduler is running in the
11294 foreground, or to the system log daemon when run in the background. The
11295 value @code{syslog} causes log entries to be sent to the system log
11296 daemon. The server name may be included in filenames using the string
11297 @code{%s}, as in @code{/var/log/cups/%s-page_log}.
11298
11299 Defaults to @samp{"/var/log/cups/page_log"}.
11300 @end deftypevr
11301
11302 @deftypevr {@code{files-configuration} parameter} string remote-root
11303 Specifies the username that is associated with unauthenticated accesses
11304 by clients claiming to be the root user. The default is @code{remroot}.
11305
11306 Defaults to @samp{"remroot"}.
11307 @end deftypevr
11308
11309 @deftypevr {@code{files-configuration} parameter} file-name request-root
11310 Specifies the directory that contains print jobs and other HTTP request
11311 data.
11312
11313 Defaults to @samp{"/var/spool/cups"}.
11314 @end deftypevr
11315
11316 @deftypevr {@code{files-configuration} parameter} sandboxing sandboxing
11317 Specifies the level of security sandboxing that is applied to print
11318 filters, backends, and other child processes of the scheduler; either
11319 @code{relaxed} or @code{strict}. This directive is currently only
11320 used/supported on macOS.
11321
11322 Defaults to @samp{strict}.
11323 @end deftypevr
11324
11325 @deftypevr {@code{files-configuration} parameter} file-name server-keychain
11326 Specifies the location of TLS certificates and private keys. CUPS will
11327 look for public and private keys in this directory: a @code{.crt} files
11328 for PEM-encoded certificates and corresponding @code{.key} files for
11329 PEM-encoded private keys.
11330
11331 Defaults to @samp{"/etc/cups/ssl"}.
11332 @end deftypevr
11333
11334 @deftypevr {@code{files-configuration} parameter} file-name server-root
11335 Specifies the directory containing the server configuration files.
11336
11337 Defaults to @samp{"/etc/cups"}.
11338 @end deftypevr
11339
11340 @deftypevr {@code{files-configuration} parameter} boolean sync-on-close?
11341 Specifies whether the scheduler calls fsync(2) after writing
11342 configuration or state files.
11343
11344 Defaults to @samp{#f}.
11345 @end deftypevr
11346
11347 @deftypevr {@code{files-configuration} parameter} space-separated-string-list system-group
11348 Specifies the group(s) to use for @code{@@SYSTEM} group authentication.
11349 @end deftypevr
11350
11351 @deftypevr {@code{files-configuration} parameter} file-name temp-dir
11352 Specifies the directory where temporary files are stored.
11353
11354 Defaults to @samp{"/var/spool/cups/tmp"}.
11355 @end deftypevr
11356
11357 @deftypevr {@code{files-configuration} parameter} string user
11358 Specifies the user name or ID that is used when running external
11359 programs.
11360
11361 Defaults to @samp{"lp"}.
11362 @end deftypevr
11363 @end deftypevr
11364
11365 @deftypevr {@code{cups-configuration} parameter} access-log-level access-log-level
11366 Specifies the logging level for the AccessLog file. The @code{config}
11367 level logs when printers and classes are added, deleted, or modified and
11368 when configuration files are accessed or updated. The @code{actions}
11369 level logs when print jobs are submitted, held, released, modified, or
11370 canceled, and any of the conditions for @code{config}. The @code{all}
11371 level logs all requests.
11372
11373 Defaults to @samp{actions}.
11374 @end deftypevr
11375
11376 @deftypevr {@code{cups-configuration} parameter} boolean auto-purge-jobs?
11377 Specifies whether to purge job history data automatically when it is no
11378 longer required for quotas.
11379
11380 Defaults to @samp{#f}.
11381 @end deftypevr
11382
11383 @deftypevr {@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols
11384 Specifies which protocols to use for local printer sharing.
11385
11386 Defaults to @samp{dnssd}.
11387 @end deftypevr
11388
11389 @deftypevr {@code{cups-configuration} parameter} boolean browse-web-if?
11390 Specifies whether the CUPS web interface is advertised.
11391
11392 Defaults to @samp{#f}.
11393 @end deftypevr
11394
11395 @deftypevr {@code{cups-configuration} parameter} boolean browsing?
11396 Specifies whether shared printers are advertised.
11397
11398 Defaults to @samp{#f}.
11399 @end deftypevr
11400
11401 @deftypevr {@code{cups-configuration} parameter} string classification
11402 Specifies the security classification of the server. Any valid banner
11403 name can be used, including "classified", "confidential", "secret",
11404 "topsecret", and "unclassified", or the banner can be omitted to disable
11405 secure printing functions.
11406
11407 Defaults to @samp{""}.
11408 @end deftypevr
11409
11410 @deftypevr {@code{cups-configuration} parameter} boolean classify-override?
11411 Specifies whether users may override the classification (cover page) of
11412 individual print jobs using the @code{job-sheets} option.
11413
11414 Defaults to @samp{#f}.
11415 @end deftypevr
11416
11417 @deftypevr {@code{cups-configuration} parameter} default-auth-type default-auth-type
11418 Specifies the default type of authentication to use.
11419
11420 Defaults to @samp{Basic}.
11421 @end deftypevr
11422
11423 @deftypevr {@code{cups-configuration} parameter} default-encryption default-encryption
11424 Specifies whether encryption will be used for authenticated requests.
11425
11426 Defaults to @samp{Required}.
11427 @end deftypevr
11428
11429 @deftypevr {@code{cups-configuration} parameter} string default-language
11430 Specifies the default language to use for text and web content.
11431
11432 Defaults to @samp{"en"}.
11433 @end deftypevr
11434
11435 @deftypevr {@code{cups-configuration} parameter} string default-paper-size
11436 Specifies the default paper size for new print queues. @samp{"Auto"}
11437 uses a locale-specific default, while @samp{"None"} specifies there is
11438 no default paper size. Specific size names are typically
11439 @samp{"Letter"} or @samp{"A4"}.
11440
11441 Defaults to @samp{"Auto"}.
11442 @end deftypevr
11443
11444 @deftypevr {@code{cups-configuration} parameter} string default-policy
11445 Specifies the default access policy to use.
11446
11447 Defaults to @samp{"default"}.
11448 @end deftypevr
11449
11450 @deftypevr {@code{cups-configuration} parameter} boolean default-shared?
11451 Specifies whether local printers are shared by default.
11452
11453 Defaults to @samp{#t}.
11454 @end deftypevr
11455
11456 @deftypevr {@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval
11457 Specifies the delay for updating of configuration and state files, in
11458 seconds. A value of 0 causes the update to happen as soon as possible,
11459 typically within a few milliseconds.
11460
11461 Defaults to @samp{30}.
11462 @end deftypevr
11463
11464 @deftypevr {@code{cups-configuration} parameter} error-policy error-policy
11465 Specifies what to do when an error occurs. Possible values are
11466 @code{abort-job}, which will discard the failed print job;
11467 @code{retry-job}, which will retry the job at a later time;
11468 @code{retry-this-job}, which retries the failed job immediately; and
11469 @code{stop-printer}, which stops the printer.
11470
11471 Defaults to @samp{stop-printer}.
11472 @end deftypevr
11473
11474 @deftypevr {@code{cups-configuration} parameter} non-negative-integer filter-limit
11475 Specifies the maximum cost of filters that are run concurrently, which
11476 can be used to minimize disk, memory, and CPU resource problems. A
11477 limit of 0 disables filter limiting. An average print to a
11478 non-PostScript printer needs a filter limit of about 200. A PostScript
11479 printer needs about half that (100). Setting the limit below these
11480 thresholds will effectively limit the scheduler to printing a single job
11481 at any time.
11482
11483 Defaults to @samp{0}.
11484 @end deftypevr
11485
11486 @deftypevr {@code{cups-configuration} parameter} non-negative-integer filter-nice
11487 Specifies the scheduling priority of filters that are run to print a
11488 job. The nice value ranges from 0, the highest priority, to 19, the
11489 lowest priority.
11490
11491 Defaults to @samp{0}.
11492 @end deftypevr
11493
11494 @deftypevr {@code{cups-configuration} parameter} host-name-lookups host-name-lookups
11495 Specifies whether to do reverse lookups on connecting clients. The
11496 @code{double} setting causes @code{cupsd} to verify that the hostname
11497 resolved from the address matches one of the addresses returned for that
11498 hostname. Double lookups also prevent clients with unregistered
11499 addresses from connecting to your server. Only set this option to
11500 @code{#t} or @code{double} if absolutely required.
11501
11502 Defaults to @samp{#f}.
11503 @end deftypevr
11504
11505 @deftypevr {@code{cups-configuration} parameter} non-negative-integer job-kill-delay
11506 Specifies the number of seconds to wait before killing the filters and
11507 backend associated with a canceled or held job.
11508
11509 Defaults to @samp{30}.
11510 @end deftypevr
11511
11512 @deftypevr {@code{cups-configuration} parameter} non-negative-integer job-retry-interval
11513 Specifies the interval between retries of jobs in seconds. This is
11514 typically used for fax queues but can also be used with normal print
11515 queues whose error policy is @code{retry-job} or
11516 @code{retry-current-job}.
11517
11518 Defaults to @samp{30}.
11519 @end deftypevr
11520
11521 @deftypevr {@code{cups-configuration} parameter} non-negative-integer job-retry-limit
11522 Specifies the number of retries that are done for jobs. This is
11523 typically used for fax queues but can also be used with normal print
11524 queues whose error policy is @code{retry-job} or
11525 @code{retry-current-job}.
11526
11527 Defaults to @samp{5}.
11528 @end deftypevr
11529
11530 @deftypevr {@code{cups-configuration} parameter} boolean keep-alive?
11531 Specifies whether to support HTTP keep-alive connections.
11532
11533 Defaults to @samp{#t}.
11534 @end deftypevr
11535
11536 @deftypevr {@code{cups-configuration} parameter} non-negative-integer keep-alive-timeout
11537 Specifies how long an idle client connection remains open, in seconds.
11538
11539 Defaults to @samp{30}.
11540 @end deftypevr
11541
11542 @deftypevr {@code{cups-configuration} parameter} non-negative-integer limit-request-body
11543 Specifies the maximum size of print files, IPP requests, and HTML form
11544 data. A limit of 0 disables the limit check.
11545
11546 Defaults to @samp{0}.
11547 @end deftypevr
11548
11549 @deftypevr {@code{cups-configuration} parameter} multiline-string-list listen
11550 Listens on the specified interfaces for connections. Valid values are
11551 of the form @var{address}:@var{port}, where @var{address} is either an
11552 IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to
11553 indicate all addresses. Values can also be file names of local UNIX
11554 domain sockets. The Listen directive is similar to the Port directive
11555 but allows you to restrict access to specific interfaces or networks.
11556 @end deftypevr
11557
11558 @deftypevr {@code{cups-configuration} parameter} non-negative-integer listen-back-log
11559 Specifies the number of pending connections that will be allowed. This
11560 normally only affects very busy servers that have reached the MaxClients
11561 limit, but can also be triggered by large numbers of simultaneous
11562 connections. When the limit is reached, the operating system will
11563 refuse additional connections until the scheduler can accept the pending
11564 ones.
11565
11566 Defaults to @samp{128}.
11567 @end deftypevr
11568
11569 @deftypevr {@code{cups-configuration} parameter} location-access-control-list location-access-controls
11570 Specifies a set of additional access controls.
11571
11572 Available @code{location-access-controls} fields are:
11573
11574 @deftypevr {@code{location-access-controls} parameter} file-name path
11575 Specifies the URI path to which the access control applies.
11576 @end deftypevr
11577
11578 @deftypevr {@code{location-access-controls} parameter} access-control-list access-controls
11579 Access controls for all access to this path, in the same format as the
11580 @code{access-controls} of @code{operation-access-control}.
11581
11582 Defaults to @samp{()}.
11583 @end deftypevr
11584
11585 @deftypevr {@code{location-access-controls} parameter} method-access-control-list method-access-controls
11586 Access controls for method-specific access to this path.
11587
11588 Defaults to @samp{()}.
11589
11590 Available @code{method-access-controls} fields are:
11591
11592 @deftypevr {@code{method-access-controls} parameter} boolean reverse?
11593 If @code{#t}, apply access controls to all methods except the listed
11594 methods. Otherwise apply to only the listed methods.
11595
11596 Defaults to @samp{#f}.
11597 @end deftypevr
11598
11599 @deftypevr {@code{method-access-controls} parameter} method-list methods
11600 Methods to which this access control applies.
11601
11602 Defaults to @samp{()}.
11603 @end deftypevr
11604
11605 @deftypevr {@code{method-access-controls} parameter} access-control-list access-controls
11606 Access control directives, as a list of strings. Each string should be
11607 one directive, such as "Order allow,deny".
11608
11609 Defaults to @samp{()}.
11610 @end deftypevr
11611 @end deftypevr
11612 @end deftypevr
11613
11614 @deftypevr {@code{cups-configuration} parameter} non-negative-integer log-debug-history
11615 Specifies the number of debugging messages that are retained for logging
11616 if an error occurs in a print job. Debug messages are logged regardless
11617 of the LogLevel setting.
11618
11619 Defaults to @samp{100}.
11620 @end deftypevr
11621
11622 @deftypevr {@code{cups-configuration} parameter} log-level log-level
11623 Specifies the level of logging for the ErrorLog file. The value
11624 @code{none} stops all logging while @code{debug2} logs everything.
11625
11626 Defaults to @samp{info}.
11627 @end deftypevr
11628
11629 @deftypevr {@code{cups-configuration} parameter} log-time-format log-time-format
11630 Specifies the format of the date and time in the log files. The value
11631 @code{standard} logs whole seconds while @code{usecs} logs microseconds.
11632
11633 Defaults to @samp{standard}.
11634 @end deftypevr
11635
11636 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-clients
11637 Specifies the maximum number of simultaneous clients that are allowed by
11638 the scheduler.
11639
11640 Defaults to @samp{100}.
11641 @end deftypevr
11642
11643 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-clients-per-host
11644 Specifies the maximum number of simultaneous clients that are allowed
11645 from a single address.
11646
11647 Defaults to @samp{100}.
11648 @end deftypevr
11649
11650 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-copies
11651 Specifies the maximum number of copies that a user can print of each
11652 job.
11653
11654 Defaults to @samp{9999}.
11655 @end deftypevr
11656
11657 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-hold-time
11658 Specifies the maximum time a job may remain in the @code{indefinite}
11659 hold state before it is canceled. A value of 0 disables cancellation of
11660 held jobs.
11661
11662 Defaults to @samp{0}.
11663 @end deftypevr
11664
11665 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-jobs
11666 Specifies the maximum number of simultaneous jobs that are allowed. Set
11667 to 0 to allow an unlimited number of jobs.
11668
11669 Defaults to @samp{500}.
11670 @end deftypevr
11671
11672 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer
11673 Specifies the maximum number of simultaneous jobs that are allowed per
11674 printer. A value of 0 allows up to MaxJobs jobs per printer.
11675
11676 Defaults to @samp{0}.
11677 @end deftypevr
11678
11679 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user
11680 Specifies the maximum number of simultaneous jobs that are allowed per
11681 user. A value of 0 allows up to MaxJobs jobs per user.
11682
11683 Defaults to @samp{0}.
11684 @end deftypevr
11685
11686 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-job-time
11687 Specifies the maximum time a job may take to print before it is
11688 canceled, in seconds. Set to 0 to disable cancellation of "stuck" jobs.
11689
11690 Defaults to @samp{10800}.
11691 @end deftypevr
11692
11693 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-log-size
11694 Specifies the maximum size of the log files before they are rotated, in
11695 bytes. The value 0 disables log rotation.
11696
11697 Defaults to @samp{1048576}.
11698 @end deftypevr
11699
11700 @deftypevr {@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout
11701 Specifies the maximum amount of time to allow between files in a
11702 multiple file print job, in seconds.
11703
11704 Defaults to @samp{300}.
11705 @end deftypevr
11706
11707 @deftypevr {@code{cups-configuration} parameter} string page-log-format
11708 Specifies the format of PageLog lines. Sequences beginning with percent
11709 (@samp{%}) characters are replaced with the corresponding information,
11710 while all other characters are copied literally. The following percent
11711 sequences are recognized:
11712
11713 @table @samp
11714 @item %%
11715 insert a single percent character
11716
11717 @item %@{name@}
11718 insert the value of the specified IPP attribute
11719
11720 @item %C
11721 insert the number of copies for the current page
11722
11723 @item %P
11724 insert the current page number
11725
11726 @item %T
11727 insert the current date and time in common log format
11728
11729 @item %j
11730 insert the job ID
11731
11732 @item %p
11733 insert the printer name
11734
11735 @item %u
11736 insert the username
11737 @end table
11738
11739 A value of the empty string disables page logging. The string @code{%p
11740 %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@}
11741 %@{job-name@} %@{media@} %@{sides@}} creates a page log with the
11742 standard items.
11743
11744 Defaults to @samp{""}.
11745 @end deftypevr
11746
11747 @deftypevr {@code{cups-configuration} parameter} environment-variables environment-variables
11748 Passes the specified environment variable(s) to child processes; a list
11749 of strings.
11750
11751 Defaults to @samp{()}.
11752 @end deftypevr
11753
11754 @deftypevr {@code{cups-configuration} parameter} policy-configuration-list policies
11755 Specifies named access control policies.
11756
11757 Available @code{policy-configuration} fields are:
11758
11759 @deftypevr {@code{policy-configuration} parameter} string name
11760 Name of the policy.
11761 @end deftypevr
11762
11763 @deftypevr {@code{policy-configuration} parameter} string job-private-access
11764 Specifies an access list for a job's private values. @code{@@ACL} maps
11765 to the printer's requesting-user-name-allowed or
11766 requesting-user-name-denied values. @code{@@OWNER} maps to the job's
11767 owner. @code{@@SYSTEM} maps to the groups listed for the
11768 @code{system-group} field of the @code{files-config} configuration,
11769 which is reified into the @code{cups-files.conf(5)} file. Other
11770 possible elements of the access list include specific user names, and
11771 @code{@@@var{group}} to indicate members of a specific group. The
11772 access list may also be simply @code{all} or @code{default}.
11773
11774 Defaults to @samp{"@@OWNER @@SYSTEM"}.
11775 @end deftypevr
11776
11777 @deftypevr {@code{policy-configuration} parameter} string job-private-values
11778 Specifies the list of job values to make private, or @code{all},
11779 @code{default}, or @code{none}.
11780
11781 Defaults to @samp{"job-name job-originating-host-name
11782 job-originating-user-name phone"}.
11783 @end deftypevr
11784
11785 @deftypevr {@code{policy-configuration} parameter} string subscription-private-access
11786 Specifies an access list for a subscription's private values.
11787 @code{@@ACL} maps to the printer's requesting-user-name-allowed or
11788 requesting-user-name-denied values. @code{@@OWNER} maps to the job's
11789 owner. @code{@@SYSTEM} maps to the groups listed for the
11790 @code{system-group} field of the @code{files-config} configuration,
11791 which is reified into the @code{cups-files.conf(5)} file. Other
11792 possible elements of the access list include specific user names, and
11793 @code{@@@var{group}} to indicate members of a specific group. The
11794 access list may also be simply @code{all} or @code{default}.
11795
11796 Defaults to @samp{"@@OWNER @@SYSTEM"}.
11797 @end deftypevr
11798
11799 @deftypevr {@code{policy-configuration} parameter} string subscription-private-values
11800 Specifies the list of job values to make private, or @code{all},
11801 @code{default}, or @code{none}.
11802
11803 Defaults to @samp{"notify-events notify-pull-method notify-recipient-uri
11804 notify-subscriber-user-name notify-user-data"}.
11805 @end deftypevr
11806
11807 @deftypevr {@code{policy-configuration} parameter} operation-access-control-list access-controls
11808 Access control by IPP operation.
11809
11810 Defaults to @samp{()}.
11811 @end deftypevr
11812 @end deftypevr
11813
11814 @deftypevr {@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files
11815 Specifies whether job files (documents) are preserved after a job is
11816 printed. If a numeric value is specified, job files are preserved for
11817 the indicated number of seconds after printing. Otherwise a boolean
11818 value applies indefinitely.
11819
11820 Defaults to @samp{86400}.
11821 @end deftypevr
11822
11823 @deftypevr {@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history
11824 Specifies whether the job history is preserved after a job is printed.
11825 If a numeric value is specified, the job history is preserved for the
11826 indicated number of seconds after printing. If @code{#t}, the job
11827 history is preserved until the MaxJobs limit is reached.
11828
11829 Defaults to @samp{#t}.
11830 @end deftypevr
11831
11832 @deftypevr {@code{cups-configuration} parameter} non-negative-integer reload-timeout
11833 Specifies the amount of time to wait for job completion before
11834 restarting the scheduler.
11835
11836 Defaults to @samp{30}.
11837 @end deftypevr
11838
11839 @deftypevr {@code{cups-configuration} parameter} string rip-cache
11840 Specifies the maximum amount of memory to use when converting documents
11841 into bitmaps for a printer.
11842
11843 Defaults to @samp{"128m"}.
11844 @end deftypevr
11845
11846 @deftypevr {@code{cups-configuration} parameter} string server-admin
11847 Specifies the email address of the server administrator.
11848
11849 Defaults to @samp{"root@@localhost.localdomain"}.
11850 @end deftypevr
11851
11852 @deftypevr {@code{cups-configuration} parameter} host-name-list-or-* server-alias
11853 The ServerAlias directive is used for HTTP Host header validation when
11854 clients connect to the scheduler from external interfaces. Using the
11855 special name @code{*} can expose your system to known browser-based DNS
11856 rebinding attacks, even when accessing sites through a firewall. If the
11857 auto-discovery of alternate names does not work, we recommend listing
11858 each alternate name with a ServerAlias directive instead of using
11859 @code{*}.
11860
11861 Defaults to @samp{*}.
11862 @end deftypevr
11863
11864 @deftypevr {@code{cups-configuration} parameter} string server-name
11865 Specifies the fully-qualified host name of the server.
11866
11867 Defaults to @samp{"localhost"}.
11868 @end deftypevr
11869
11870 @deftypevr {@code{cups-configuration} parameter} server-tokens server-tokens
11871 Specifies what information is included in the Server header of HTTP
11872 responses. @code{None} disables the Server header. @code{ProductOnly}
11873 reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor}
11874 reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}.
11875 @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is
11876 the output of the @code{uname} command. @code{Full} reports @code{CUPS
11877 2.0.0 (@var{uname}) IPP/2.0}.
11878
11879 Defaults to @samp{Minimal}.
11880 @end deftypevr
11881
11882 @deftypevr {@code{cups-configuration} parameter} string set-env
11883 Set the specified environment variable to be passed to child processes.
11884
11885 Defaults to @samp{"variable value"}.
11886 @end deftypevr
11887
11888 @deftypevr {@code{cups-configuration} parameter} multiline-string-list ssl-listen
11889 Listens on the specified interfaces for encrypted connections. Valid
11890 values are of the form @var{address}:@var{port}, where @var{address} is
11891 either an IPv6 address enclosed in brackets, an IPv4 address, or
11892 @code{*} to indicate all addresses.
11893
11894 Defaults to @samp{()}.
11895 @end deftypevr
11896
11897 @deftypevr {@code{cups-configuration} parameter} ssl-options ssl-options
11898 Sets encryption options. By default, CUPS only supports encryption
11899 using TLS v1.0 or higher using known secure cipher suites. The
11900 @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are
11901 required for some older clients that do not implement newer ones. The
11902 @code{AllowSSL3} option enables SSL v3.0, which is required for some
11903 older clients that do not support TLS v1.0.
11904
11905 Defaults to @samp{()}.
11906 @end deftypevr
11907
11908 @deftypevr {@code{cups-configuration} parameter} boolean strict-conformance?
11909 Specifies whether the scheduler requires clients to strictly adhere to
11910 the IPP specifications.
11911
11912 Defaults to @samp{#f}.
11913 @end deftypevr
11914
11915 @deftypevr {@code{cups-configuration} parameter} non-negative-integer timeout
11916 Specifies the HTTP request timeout, in seconds.
11917
11918 Defaults to @samp{300}.
11919
11920 @end deftypevr
11921
11922 @deftypevr {@code{cups-configuration} parameter} boolean web-interface?
11923 Specifies whether the web interface is enabled.
11924
11925 Defaults to @samp{#f}.
11926 @end deftypevr
11927
11928 At this point you're probably thinking ``oh dear, Guix manual, I like
11929 you but you can stop already with the configuration options''. Indeed.
11930 However, one more point: it could be that you have an existing
11931 @code{cupsd.conf} that you want to use. In that case, you can pass an
11932 @code{opaque-cups-configuration} as the configuration of a
11933 @code{cups-service-type}.
11934
11935 Available @code{opaque-cups-configuration} fields are:
11936
11937 @deftypevr {@code{opaque-cups-configuration} parameter} package cups
11938 The CUPS package.
11939 @end deftypevr
11940
11941 @deftypevr {@code{opaque-cups-configuration} parameter} string cupsd.conf
11942 The contents of the @code{cupsd.conf}, as a string.
11943 @end deftypevr
11944
11945 @deftypevr {@code{opaque-cups-configuration} parameter} string cups-files.conf
11946 The contents of the @code{cups-files.conf} file, as a string.
11947 @end deftypevr
11948
11949 For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in
11950 strings of the same name, you could instantiate a CUPS service like
11951 this:
11952
11953 @example
11954 (service cups-service-type
11955 (opaque-cups-configuration
11956 (cupsd.conf cupsd.conf)
11957 (cups-files.conf cups-files.conf)))
11958 @end example
11959
11960
11961 @node Desktop Services
11962 @subsubsection Desktop Services
11963
11964 The @code{(gnu services desktop)} module provides services that are
11965 usually useful in the context of a ``desktop'' setup---that is, on a
11966 machine running a graphical display server, possibly with graphical user
11967 interfaces, etc. It also defines services that provide specific desktop
11968 environments like GNOME and XFCE.
11969
11970 To simplify things, the module defines a variable containing the set of
11971 services that users typically expect on a machine with a graphical
11972 environment and networking:
11973
11974 @defvr {Scheme Variable} %desktop-services
11975 This is a list of services that builds upon @var{%base-services} and
11976 adds or adjusts services for a typical ``desktop'' setup.
11977
11978 In particular, it adds a graphical login manager (@pxref{X Window,
11979 @code{slim-service}}), screen lockers, a network management tool
11980 (@pxref{Networking Services, @code{network-manager-service-type}}), energy and color
11981 management services, the @code{elogind} login and seat manager, the
11982 Polkit privilege service, the GeoClue location service, the
11983 AccountsService daemon that allows authorized users change system
11984 passwords, an NTP client (@pxref{Networking Services}), the Avahi
11985 daemon, and has the name service switch service configured to be able to
11986 use @code{nss-mdns} (@pxref{Name Service Switch, mDNS}).
11987 @end defvr
11988
11989 The @var{%desktop-services} variable can be used as the @code{services}
11990 field of an @code{operating-system} declaration (@pxref{operating-system
11991 Reference, @code{services}}).
11992
11993 Additionally, the @code{gnome-desktop-service} and
11994 @code{xfce-desktop-service} procedures can add GNOME and/or XFCE to a
11995 system. To ``add GNOME'' means that system-level services like the
11996 backlight adjustment helpers and the power management utilities are
11997 added to the system, extending @code{polkit} and @code{dbus}
11998 appropriately, allowing GNOME to operate with elevated privileges on a
11999 limited number of special-purpose system interfaces. Additionally,
12000 adding a service made by @code{gnome-desktop-service} adds the GNOME
12001 metapackage to the system profile. Likewise, adding the XFCE service
12002 not only adds the @code{xfce} metapackage to the system profile, but it
12003 also gives the Thunar file manager the ability to open a ``root-mode''
12004 file management window, if the user authenticates using the
12005 administrator's password via the standard polkit graphical interface.
12006
12007 @deffn {Scheme Procedure} gnome-desktop-service
12008 Return a service that adds the @code{gnome} package to the system
12009 profile, and extends polkit with the actions from
12010 @code{gnome-settings-daemon}.
12011 @end deffn
12012
12013 @deffn {Scheme Procedure} xfce-desktop-service
12014 Return a service that adds the @code{xfce} package to the system profile,
12015 and extends polkit with the ability for @code{thunar} to manipulate the
12016 file system as root from within a user session, after the user has
12017 authenticated with the administrator's password.
12018 @end deffn
12019
12020 Because the GNOME and XFCE desktop services pull in so many packages,
12021 the default @code{%desktop-services} variable doesn't include either of
12022 them by default. To add GNOME or XFCE, just @code{cons} them onto
12023 @code{%desktop-services} in the @code{services} field of your
12024 @code{operating-system}:
12025
12026 @example
12027 (use-modules (gnu))
12028 (use-service-modules desktop)
12029 (operating-system
12030 ...
12031 ;; cons* adds items to the list given as its last argument.
12032 (services (cons* (gnome-desktop-service)
12033 (xfce-desktop-service)
12034 %desktop-services))
12035 ...)
12036 @end example
12037
12038 These desktop environments will then be available as options in the
12039 graphical login window.
12040
12041 The actual service definitions included in @code{%desktop-services} and
12042 provided by @code{(gnu services dbus)} and @code{(gnu services desktop)}
12043 are described below.
12044
12045 @deffn {Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]
12046 Return a service that runs the ``system bus'', using @var{dbus}, with
12047 support for @var{services}.
12048
12049 @uref{http://dbus.freedesktop.org/, D-Bus} is an inter-process communication
12050 facility. Its system bus is used to allow system services to communicate
12051 and to be notified of system-wide events.
12052
12053 @var{services} must be a list of packages that provide an
12054 @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration
12055 and policy files. For example, to allow avahi-daemon to use the system bus,
12056 @var{services} must be equal to @code{(list avahi)}.
12057 @end deffn
12058
12059 @deffn {Scheme Procedure} elogind-service [#:config @var{config}]
12060 Return a service that runs the @code{elogind} login and
12061 seat management daemon. @uref{https://github.com/elogind/elogind,
12062 Elogind} exposes a D-Bus interface that can be used to know which users
12063 are logged in, know what kind of sessions they have open, suspend the
12064 system, inhibit system suspend, reboot the system, and other tasks.
12065
12066 Elogind handles most system-level power events for a computer, for
12067 example suspending the system when a lid is closed, or shutting it down
12068 when the power button is pressed.
12069
12070 The @var{config} keyword argument specifies the configuration for
12071 elogind, and should be the result of an @code{(elogind-configuration
12072 (@var{parameter} @var{value})...)} invocation. Available parameters and
12073 their default values are:
12074
12075 @table @code
12076 @item kill-user-processes?
12077 @code{#f}
12078 @item kill-only-users
12079 @code{()}
12080 @item kill-exclude-users
12081 @code{("root")}
12082 @item inhibit-delay-max-seconds
12083 @code{5}
12084 @item handle-power-key
12085 @code{poweroff}
12086 @item handle-suspend-key
12087 @code{suspend}
12088 @item handle-hibernate-key
12089 @code{hibernate}
12090 @item handle-lid-switch
12091 @code{suspend}
12092 @item handle-lid-switch-docked
12093 @code{ignore}
12094 @item power-key-ignore-inhibited?
12095 @code{#f}
12096 @item suspend-key-ignore-inhibited?
12097 @code{#f}
12098 @item hibernate-key-ignore-inhibited?
12099 @code{#f}
12100 @item lid-switch-ignore-inhibited?
12101 @code{#t}
12102 @item holdoff-timeout-seconds
12103 @code{30}
12104 @item idle-action
12105 @code{ignore}
12106 @item idle-action-seconds
12107 @code{(* 30 60)}
12108 @item runtime-directory-size-percent
12109 @code{10}
12110 @item runtime-directory-size
12111 @code{#f}
12112 @item remove-ipc?
12113 @code{#t}
12114 @item suspend-state
12115 @code{("mem" "standby" "freeze")}
12116 @item suspend-mode
12117 @code{()}
12118 @item hibernate-state
12119 @code{("disk")}
12120 @item hibernate-mode
12121 @code{("platform" "shutdown")}
12122 @item hybrid-sleep-state
12123 @code{("disk")}
12124 @item hybrid-sleep-mode
12125 @code{("suspend" "platform" "shutdown")}
12126 @end table
12127 @end deffn
12128
12129 @deffn {Scheme Procedure} accountsservice-service @
12130 [#:accountsservice @var{accountsservice}]
12131 Return a service that runs AccountsService, a system service that can
12132 list available accounts, change their passwords, and so on.
12133 AccountsService integrates with PolicyKit to enable unprivileged users
12134 to acquire the capability to modify their system configuration.
12135 @uref{https://www.freedesktop.org/wiki/Software/AccountsService/, the
12136 accountsservice web site} for more information.
12137
12138 The @var{accountsservice} keyword argument is the @code{accountsservice}
12139 package to expose as a service.
12140 @end deffn
12141
12142 @deffn {Scheme Procedure} polkit-service @
12143 [#:polkit @var{polkit}]
12144 Return a service that runs the
12145 @uref{http://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege
12146 management service}, which allows system administrators to grant access to
12147 privileged operations in a structured way. By querying the Polkit service, a
12148 privileged system component can know when it should grant additional
12149 capabilities to ordinary users. For example, an ordinary user can be granted
12150 the capability to suspend the system if the user is logged in locally.
12151 @end deffn
12152
12153 @deffn {Scheme Procedure} upower-service [#:upower @var{upower}] @
12154 [#:watts-up-pro? #f] @
12155 [#:poll-batteries? #t] @
12156 [#:ignore-lid? #f] @
12157 [#:use-percentage-for-policy? #f] @
12158 [#:percentage-low 10] @
12159 [#:percentage-critical 3] @
12160 [#:percentage-action 2] @
12161 [#:time-low 1200] @
12162 [#:time-critical 300] @
12163 [#:time-action 120] @
12164 [#:critical-power-action 'hybrid-sleep]
12165 Return a service that runs @uref{http://upower.freedesktop.org/,
12166 @command{upowerd}}, a system-wide monitor for power consumption and battery
12167 levels, with the given configuration settings. It implements the
12168 @code{org.freedesktop.UPower} D-Bus interface, and is notably used by
12169 GNOME.
12170 @end deffn
12171
12172 @deffn {Scheme Procedure} udisks-service [#:udisks @var{udisks}]
12173 Return a service for @uref{http://udisks.freedesktop.org/docs/latest/,
12174 UDisks}, a @dfn{disk management} daemon that provides user interfaces with
12175 notifications and ways to mount/unmount disks. Programs that talk to UDisks
12176 include the @command{udisksctl} command, part of UDisks, and GNOME Disks.
12177 @end deffn
12178
12179 @deffn {Scheme Procedure} colord-service [#:colord @var{colord}]
12180 Return a service that runs @command{colord}, a system service with a D-Bus
12181 interface to manage the color profiles of input and output devices such as
12182 screens and scanners. It is notably used by the GNOME Color Manager graphical
12183 tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
12184 site} for more information.
12185 @end deffn
12186
12187 @deffn {Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]
12188 Return a configuration allowing an application to access GeoClue
12189 location data. @var{name} is the Desktop ID of the application, without
12190 the @code{.desktop} part. If @var{allowed?} is true, the application
12191 will have access to location information by default. The boolean
12192 @var{system?} value indicates whether an application is a system component
12193 or not. Finally @var{users} is a list of UIDs of all users for which
12194 this application is allowed location info access. An empty users list
12195 means that all users are allowed.
12196 @end deffn
12197
12198 @defvr {Scheme Variable} %standard-geoclue-applications
12199 The standard list of well-known GeoClue application configurations,
12200 granting authority to the GNOME date-and-time utility to ask for the
12201 current location in order to set the time zone, and allowing the
12202 IceCat and Epiphany web browsers to request location information.
12203 IceCat and Epiphany both query the user before allowing a web page to
12204 know the user's location.
12205 @end defvr
12206
12207 @deffn {Scheme Procedure} geoclue-service [#:colord @var{colord}] @
12208 [#:whitelist '()] @
12209 [#:wifi-geolocation-url "https://location.services.mozilla.com/v1/geolocate?key=geoclue"] @
12210 [#:submit-data? #f]
12211 [#:wifi-submission-url "https://location.services.mozilla.com/v1/submit?key=geoclue"] @
12212 [#:submission-nick "geoclue"] @
12213 [#:applications %standard-geoclue-applications]
12214 Return a service that runs the GeoClue location service. This service
12215 provides a D-Bus interface to allow applications to request access to a
12216 user's physical location, and optionally to add information to online
12217 location databases. See
12218 @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue
12219 web site} for more information.
12220 @end deffn
12221
12222 @deffn {Scheme Procedure} bluetooth-service [#:bluez @var{bluez}] @
12223 [@w{#:auto-enable? #f}]
12224 Return a service that runs the @command{bluetoothd} daemon, which
12225 manages all the Bluetooth devices and provides a number of D-Bus
12226 interfaces. When AUTO-ENABLE? is true, the bluetooth controller is
12227 powered automatically at boot, which can be useful when using a
12228 bluetooth keyboard or mouse.
12229
12230 Users need to be in the @code{lp} group to access the D-Bus service.
12231 @end deffn
12232
12233 @node Database Services
12234 @subsubsection Database Services
12235
12236 @cindex database
12237 @cindex SQL
12238 The @code{(gnu services databases)} module provides the following services.
12239
12240 @deffn {Scheme Procedure} postgresql-service [#:postgresql postgresql] @
12241 [#:config-file] [#:data-directory ``/var/lib/postgresql/data''] @
12242 [#:port 5432] [#:locale ``en_US.utf8'']
12243 Return a service that runs @var{postgresql}, the PostgreSQL database
12244 server.
12245
12246 The PostgreSQL daemon loads its runtime configuration from @var{config-file},
12247 creates a database cluster with @var{locale} as the default
12248 locale, stored in @var{data-directory}. It then listens on @var{port}.
12249 @end deffn
12250
12251 @deffn {Scheme Procedure} mysql-service [#:config (mysql-configuration)]
12252 Return a service that runs @command{mysqld}, the MySQL or MariaDB
12253 database server.
12254
12255 The optional @var{config} argument specifies the configuration for
12256 @command{mysqld}, which should be a @code{<mysql-configuration>} object.
12257 @end deffn
12258
12259 @deftp {Data Type} mysql-configuration
12260 Data type representing the configuration of @var{mysql-service}.
12261
12262 @table @asis
12263 @item @code{mysql} (default: @var{mariadb})
12264 Package object of the MySQL database server, can be either @var{mariadb}
12265 or @var{mysql}.
12266
12267 For MySQL, a temporary root password will be displayed at activation time.
12268 For MariaDB, the root password is empty.
12269
12270 @item @code{port} (default: @code{3306})
12271 TCP port on which the database server listens for incoming connections.
12272 @end table
12273 @end deftp
12274
12275 @defvr {Scheme Variable} memcached-service-type
12276 This is the service type for the @uref{https://memcached.org/,
12277 Memcached} service, which provides a distributed in memory cache. The
12278 value for the service type is a @code{memcached-configuration} object.
12279 @end defvr
12280
12281 @example
12282 (service memcached-service-type)
12283 @end example
12284
12285 @deftp {Data Type} memcached-configuration
12286 Data type representing the configuration of memcached.
12287
12288 @table @asis
12289 @item @code{memcached} (default: @code{memcached})
12290 The Memcached package to use.
12291
12292 @item @code{interfaces} (default: @code{'("0.0.0.0")})
12293 Network interfaces on which to listen.
12294
12295 @item @code{tcp-port} (default: @code{11211})
12296 Port on which to accept connections on,
12297
12298 @item @code{udp-port} (default: @code{11211})
12299 Port on which to accept UDP connections on, a value of 0 will disable
12300 listening on a UDP socket.
12301
12302 @item @code{additional-options} (default: @code{'()})
12303 Additional command line options to pass to @code{memcached}.
12304 @end table
12305 @end deftp
12306
12307 @defvr {Scheme Variable} mongodb-service-type
12308 This is the service type for @uref{https://www.mongodb.com/, MongoDB}.
12309 The value for the service type is a @code{mongodb-configuration} object.
12310 @end defvr
12311
12312 @example
12313 (service mongodb-service-type)
12314 @end example
12315
12316 @deftp {Data Type} mongodb-configuration
12317 Data type representing the configuration of mongodb.
12318
12319 @table @asis
12320 @item @code{mongodb} (default: @code{mongodb})
12321 The MongoDB package to use.
12322
12323 @item @code{config-file} (default: @code{%default-mongodb-configuration-file})
12324 The configuration file for MongoDB.
12325
12326 @item @code{data-directory} (default: @code{"/var/lib/mongodb"})
12327 This value is used to create the directory, so that it exists and is
12328 owned by the mongodb user. It should match the data-directory which
12329 MongoDB is configured to use through the configuration file.
12330 @end table
12331 @end deftp
12332
12333 @defvr {Scheme Variable} redis-service-type
12334 This is the service type for the @uref{https://redis.io/, Redis}
12335 key/value store, whose value is a @code{redis-configuration} object.
12336 @end defvr
12337
12338 @deftp {Data Type} redis-configuration
12339 Data type representing the configuration of redis.
12340
12341 @table @asis
12342 @item @code{redis} (default: @code{redis})
12343 The Redis package to use.
12344
12345 @item @code{bind} (default: @code{"127.0.0.1"})
12346 Network interface on which to listen.
12347
12348 @item @code{port} (default: @code{6379})
12349 Port on which to accept connections on, a value of 0 will disable
12350 listening on a TCP socket.
12351
12352 @item @code{working-directory} (default: @code{"/var/lib/redis"})
12353 Directory in which to store the database and related files.
12354 @end table
12355 @end deftp
12356
12357 @node Mail Services
12358 @subsubsection Mail Services
12359
12360 @cindex mail
12361 @cindex email
12362 The @code{(gnu services mail)} module provides Guix service definitions
12363 for email services: IMAP, POP3, and LMTP servers, as well as mail
12364 transport agents (MTAs). Lots of acronyms! These services are detailed
12365 in the subsections below.
12366
12367 @subsubheading Dovecot Service
12368
12369 @deffn {Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]
12370 Return a service that runs the Dovecot IMAP/POP3/LMTP mail server.
12371 @end deffn
12372
12373 By default, Dovecot does not need much configuration; the default
12374 configuration object created by @code{(dovecot-configuration)} will
12375 suffice if your mail is delivered to @code{~/Maildir}. A self-signed
12376 certificate will be generated for TLS-protected connections, though
12377 Dovecot will also listen on cleartext ports by default. There are a
12378 number of options, though, which mail administrators might need to change,
12379 and as is the case with other services, Guix allows the system
12380 administrator to specify these parameters via a uniform Scheme interface.
12381
12382 For example, to specify that mail is located at @code{maildir~/.mail},
12383 one would instantiate the Dovecot service like this:
12384
12385 @example
12386 (dovecot-service #:config
12387 (dovecot-configuration
12388 (mail-location "maildir:~/.mail")))
12389 @end example
12390
12391 The available configuration parameters follow. Each parameter
12392 definition is preceded by its type; for example, @samp{string-list foo}
12393 indicates that the @code{foo} parameter should be specified as a list of
12394 strings. There is also a way to specify the configuration as a string,
12395 if you have an old @code{dovecot.conf} file that you want to port over
12396 from some other system; see the end for more details.
12397
12398 @c The following documentation was initially generated by
12399 @c (generate-documentation) in (gnu services mail). Manually maintained
12400 @c documentation is better, so we shouldn't hesitate to edit below as
12401 @c needed. However if the change you want to make to this documentation
12402 @c can be done in an automated way, it's probably easier to change
12403 @c (generate-documentation) than to make it below and have to deal with
12404 @c the churn as dovecot updates.
12405
12406 Available @code{dovecot-configuration} fields are:
12407
12408 @deftypevr {@code{dovecot-configuration} parameter} package dovecot
12409 The dovecot package.
12410 @end deftypevr
12411
12412 @deftypevr {@code{dovecot-configuration} parameter} comma-separated-string-list listen
12413 A list of IPs or hosts where to listen for connections. @samp{*}
12414 listens on all IPv4 interfaces, @samp{::} listens on all IPv6
12415 interfaces. If you want to specify non-default ports or anything more
12416 complex, customize the address and port fields of the
12417 @samp{inet-listener} of the specific services you are interested in.
12418 @end deftypevr
12419
12420 @deftypevr {@code{dovecot-configuration} parameter} protocol-configuration-list protocols
12421 List of protocols we want to serve. Available protocols include
12422 @samp{imap}, @samp{pop3}, and @samp{lmtp}.
12423
12424 Available @code{protocol-configuration} fields are:
12425
12426 @deftypevr {@code{protocol-configuration} parameter} string name
12427 The name of the protocol.
12428 @end deftypevr
12429
12430 @deftypevr {@code{protocol-configuration} parameter} string auth-socket-path
12431 UNIX socket path to the master authentication server to find users.
12432 This is used by imap (for shared users) and lda.
12433 It defaults to @samp{"/var/run/dovecot/auth-userdb"}.
12434 @end deftypevr
12435
12436 @deftypevr {@code{protocol-configuration} parameter} space-separated-string-list mail-plugins
12437 Space separated list of plugins to load.
12438 @end deftypevr
12439
12440 @deftypevr {@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections
12441 Maximum number of IMAP connections allowed for a user from each IP
12442 address. NOTE: The username is compared case-sensitively.
12443 Defaults to @samp{10}.
12444 @end deftypevr
12445
12446 @end deftypevr
12447
12448 @deftypevr {@code{dovecot-configuration} parameter} service-configuration-list services
12449 List of services to enable. Available services include @samp{imap},
12450 @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and
12451 @samp{lmtp}.
12452
12453 Available @code{service-configuration} fields are:
12454
12455 @deftypevr {@code{service-configuration} parameter} string kind
12456 The service kind. Valid values include @code{director},
12457 @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap},
12458 @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict},
12459 @code{tcpwrap}, @code{quota-warning}, or anything else.
12460 @end deftypevr
12461
12462 @deftypevr {@code{service-configuration} parameter} listener-configuration-list listeners
12463 Listeners for the service. A listener is either a
12464 @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or
12465 an @code{inet-listener-configuration}.
12466 Defaults to @samp{()}.
12467
12468 Available @code{unix-listener-configuration} fields are:
12469
12470 @deftypevr {@code{unix-listener-configuration} parameter} string path
12471 Path to the file, relative to @code{base-dir} field. This is also used as
12472 the section name.
12473 @end deftypevr
12474
12475 @deftypevr {@code{unix-listener-configuration} parameter} string mode
12476 The access mode for the socket.
12477 Defaults to @samp{"0600"}.
12478 @end deftypevr
12479
12480 @deftypevr {@code{unix-listener-configuration} parameter} string user
12481 The user to own the socket.
12482 Defaults to @samp{""}.
12483 @end deftypevr
12484
12485 @deftypevr {@code{unix-listener-configuration} parameter} string group
12486 The group to own the socket.
12487 Defaults to @samp{""}.
12488 @end deftypevr
12489
12490
12491 Available @code{fifo-listener-configuration} fields are:
12492
12493 @deftypevr {@code{fifo-listener-configuration} parameter} string path
12494 Path to the file, relative to @code{base-dir} field. This is also used as
12495 the section name.
12496 @end deftypevr
12497
12498 @deftypevr {@code{fifo-listener-configuration} parameter} string mode
12499 The access mode for the socket.
12500 Defaults to @samp{"0600"}.
12501 @end deftypevr
12502
12503 @deftypevr {@code{fifo-listener-configuration} parameter} string user
12504 The user to own the socket.
12505 Defaults to @samp{""}.
12506 @end deftypevr
12507
12508 @deftypevr {@code{fifo-listener-configuration} parameter} string group
12509 The group to own the socket.
12510 Defaults to @samp{""}.
12511 @end deftypevr
12512
12513
12514 Available @code{inet-listener-configuration} fields are:
12515
12516 @deftypevr {@code{inet-listener-configuration} parameter} string protocol
12517 The protocol to listen for.
12518 @end deftypevr
12519
12520 @deftypevr {@code{inet-listener-configuration} parameter} string address
12521 The address on which to listen, or empty for all addresses.
12522 Defaults to @samp{""}.
12523 @end deftypevr
12524
12525 @deftypevr {@code{inet-listener-configuration} parameter} non-negative-integer port
12526 The port on which to listen.
12527 @end deftypevr
12528
12529 @deftypevr {@code{inet-listener-configuration} parameter} boolean ssl?
12530 Whether to use SSL for this service; @samp{yes}, @samp{no}, or
12531 @samp{required}.
12532 Defaults to @samp{#t}.
12533 @end deftypevr
12534
12535 @end deftypevr
12536
12537 @deftypevr {@code{service-configuration} parameter} non-negative-integer service-count
12538 Number of connections to handle before starting a new process.
12539 Typically the only useful values are 0 (unlimited) or 1. 1 is more
12540 secure, but 0 is faster. <doc/wiki/LoginProcess.txt>.
12541 Defaults to @samp{1}.
12542 @end deftypevr
12543
12544 @deftypevr {@code{service-configuration} parameter} non-negative-integer process-min-avail
12545 Number of processes to always keep waiting for more connections.
12546 Defaults to @samp{0}.
12547 @end deftypevr
12548
12549 @deftypevr {@code{service-configuration} parameter} non-negative-integer vsz-limit
12550 If you set @samp{service-count 0}, you probably need to grow
12551 this.
12552 Defaults to @samp{256000000}.
12553 @end deftypevr
12554
12555 @end deftypevr
12556
12557 @deftypevr {@code{dovecot-configuration} parameter} dict-configuration dict
12558 Dict configuration, as created by the @code{dict-configuration}
12559 constructor.
12560
12561 Available @code{dict-configuration} fields are:
12562
12563 @deftypevr {@code{dict-configuration} parameter} free-form-fields entries
12564 A list of key-value pairs that this dict should hold.
12565 Defaults to @samp{()}.
12566 @end deftypevr
12567
12568 @end deftypevr
12569
12570 @deftypevr {@code{dovecot-configuration} parameter} passdb-configuration-list passdbs
12571 A list of passdb configurations, each one created by the
12572 @code{passdb-configuration} constructor.
12573
12574 Available @code{passdb-configuration} fields are:
12575
12576 @deftypevr {@code{passdb-configuration} parameter} string driver
12577 The driver that the passdb should use. Valid values include
12578 @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and
12579 @samp{static}.
12580 Defaults to @samp{"pam"}.
12581 @end deftypevr
12582
12583 @deftypevr {@code{passdb-configuration} parameter} space-separated-string-list args
12584 Space separated list of arguments to the passdb driver.
12585 Defaults to @samp{""}.
12586 @end deftypevr
12587
12588 @end deftypevr
12589
12590 @deftypevr {@code{dovecot-configuration} parameter} userdb-configuration-list userdbs
12591 List of userdb configurations, each one created by the
12592 @code{userdb-configuration} constructor.
12593
12594 Available @code{userdb-configuration} fields are:
12595
12596 @deftypevr {@code{userdb-configuration} parameter} string driver
12597 The driver that the userdb should use. Valid values include
12598 @samp{passwd} and @samp{static}.
12599 Defaults to @samp{"passwd"}.
12600 @end deftypevr
12601
12602 @deftypevr {@code{userdb-configuration} parameter} space-separated-string-list args
12603 Space separated list of arguments to the userdb driver.
12604 Defaults to @samp{""}.
12605 @end deftypevr
12606
12607 @deftypevr {@code{userdb-configuration} parameter} free-form-args override-fields
12608 Override fields from passwd.
12609 Defaults to @samp{()}.
12610 @end deftypevr
12611
12612 @end deftypevr
12613
12614 @deftypevr {@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration
12615 Plug-in configuration, created by the @code{plugin-configuration}
12616 constructor.
12617 @end deftypevr
12618
12619 @deftypevr {@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces
12620 List of namespaces. Each item in the list is created by the
12621 @code{namespace-configuration} constructor.
12622
12623 Available @code{namespace-configuration} fields are:
12624
12625 @deftypevr {@code{namespace-configuration} parameter} string name
12626 Name for this namespace.
12627 @end deftypevr
12628
12629 @deftypevr {@code{namespace-configuration} parameter} string type
12630 Namespace type: @samp{private}, @samp{shared} or @samp{public}.
12631 Defaults to @samp{"private"}.
12632 @end deftypevr
12633
12634 @deftypevr {@code{namespace-configuration} parameter} string separator
12635 Hierarchy separator to use. You should use the same separator for
12636 all namespaces or some clients get confused. @samp{/} is usually a good
12637 one. The default however depends on the underlying mail storage
12638 format.
12639 Defaults to @samp{""}.
12640 @end deftypevr
12641
12642 @deftypevr {@code{namespace-configuration} parameter} string prefix
12643 Prefix required to access this namespace. This needs to be
12644 different for all namespaces. For example @samp{Public/}.
12645 Defaults to @samp{""}.
12646 @end deftypevr
12647
12648 @deftypevr {@code{namespace-configuration} parameter} string location
12649 Physical location of the mailbox. This is in the same format as
12650 mail_location, which is also the default for it.
12651 Defaults to @samp{""}.
12652 @end deftypevr
12653
12654 @deftypevr {@code{namespace-configuration} parameter} boolean inbox?
12655 There can be only one INBOX, and this setting defines which
12656 namespace has it.
12657 Defaults to @samp{#f}.
12658 @end deftypevr
12659
12660 @deftypevr {@code{namespace-configuration} parameter} boolean hidden?
12661 If namespace is hidden, it's not advertised to clients via NAMESPACE
12662 extension. You'll most likely also want to set @samp{list? #f}. This is mostly
12663 useful when converting from another server with different namespaces
12664 which you want to deprecate but still keep working. For example you can
12665 create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/}
12666 and @samp{mail/}.
12667 Defaults to @samp{#f}.
12668 @end deftypevr
12669
12670 @deftypevr {@code{namespace-configuration} parameter} boolean list?
12671 Show the mailboxes under this namespace with the LIST command. This
12672 makes the namespace visible for clients that do not support the NAMESPACE
12673 extension. The special @code{children} value lists child mailboxes, but
12674 hides the namespace prefix.
12675 Defaults to @samp{#t}.
12676 @end deftypevr
12677
12678 @deftypevr {@code{namespace-configuration} parameter} boolean subscriptions?
12679 Namespace handles its own subscriptions. If set to @code{#f}, the
12680 parent namespace handles them. The empty prefix should always have this
12681 as @code{#t}).
12682 Defaults to @samp{#t}.
12683 @end deftypevr
12684
12685 @deftypevr {@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes
12686 List of predefined mailboxes in this namespace.
12687 Defaults to @samp{()}.
12688
12689 Available @code{mailbox-configuration} fields are:
12690
12691 @deftypevr {@code{mailbox-configuration} parameter} string name
12692 Name for this mailbox.
12693 @end deftypevr
12694
12695 @deftypevr {@code{mailbox-configuration} parameter} string auto
12696 @samp{create} will automatically create this mailbox.
12697 @samp{subscribe} will both create and subscribe to the mailbox.
12698 Defaults to @samp{"no"}.
12699 @end deftypevr
12700
12701 @deftypevr {@code{mailbox-configuration} parameter} space-separated-string-list special-use
12702 List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154.
12703 Valid values are @code{\All}, @code{\Archive}, @code{\Drafts},
12704 @code{\Flagged}, @code{\Junk}, @code{\Sent}, and @code{\Trash}.
12705 Defaults to @samp{()}.
12706 @end deftypevr
12707
12708 @end deftypevr
12709
12710 @end deftypevr
12711
12712 @deftypevr {@code{dovecot-configuration} parameter} file-name base-dir
12713 Base directory where to store runtime data.
12714 Defaults to @samp{"/var/run/dovecot/"}.
12715 @end deftypevr
12716
12717 @deftypevr {@code{dovecot-configuration} parameter} string login-greeting
12718 Greeting message for clients.
12719 Defaults to @samp{"Dovecot ready."}.
12720 @end deftypevr
12721
12722 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks
12723 List of trusted network ranges. Connections from these IPs are
12724 allowed to override their IP addresses and ports (for logging and for
12725 authentication checks). @samp{disable-plaintext-auth} is also ignored
12726 for these networks. Typically you would specify your IMAP proxy servers
12727 here.
12728 Defaults to @samp{()}.
12729 @end deftypevr
12730
12731 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets
12732 List of login access check sockets (e.g. tcpwrap).
12733 Defaults to @samp{()}.
12734 @end deftypevr
12735
12736 @deftypevr {@code{dovecot-configuration} parameter} boolean verbose-proctitle?
12737 Show more verbose process titles (in ps). Currently shows user name
12738 and IP address. Useful for seeing who is actually using the IMAP
12739 processes (e.g. shared mailboxes or if the same uid is used for multiple
12740 accounts).
12741 Defaults to @samp{#f}.
12742 @end deftypevr
12743
12744 @deftypevr {@code{dovecot-configuration} parameter} boolean shutdown-clients?
12745 Should all processes be killed when Dovecot master process shuts down.
12746 Setting this to @code{#f} means that Dovecot can be upgraded without
12747 forcing existing client connections to close (although that could also
12748 be a problem if the upgrade is e.g. due to a security fix).
12749 Defaults to @samp{#t}.
12750 @end deftypevr
12751
12752 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count
12753 If non-zero, run mail commands via this many connections to doveadm
12754 server, instead of running them directly in the same process.
12755 Defaults to @samp{0}.
12756 @end deftypevr
12757
12758 @deftypevr {@code{dovecot-configuration} parameter} string doveadm-socket-path
12759 UNIX socket or host:port used for connecting to doveadm server.
12760 Defaults to @samp{"doveadm-server"}.
12761 @end deftypevr
12762
12763 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list import-environment
12764 List of environment variables that are preserved on Dovecot startup
12765 and passed down to all of its child processes. You can also give
12766 key=value pairs to always set specific settings.
12767 @end deftypevr
12768
12769 @deftypevr {@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?
12770 Disable LOGIN command and all other plaintext authentications unless
12771 SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
12772 matches the local IP (i.e. you're connecting from the same computer),
12773 the connection is considered secure and plaintext authentication is
12774 allowed. See also ssl=required setting.
12775 Defaults to @samp{#t}.
12776 @end deftypevr
12777
12778 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size
12779 Authentication cache size (e.g. @samp{#e10e6}). 0 means it's disabled.
12780 Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set
12781 for caching to be used.
12782 Defaults to @samp{0}.
12783 @end deftypevr
12784
12785 @deftypevr {@code{dovecot-configuration} parameter} string auth-cache-ttl
12786 Time to live for cached data. After TTL expires the cached record
12787 is no longer used, *except* if the main database lookup returns internal
12788 failure. We also try to handle password changes automatically: If
12789 user's previous authentication was successful, but this one wasn't, the
12790 cache isn't used. For now this works only with plaintext
12791 authentication.
12792 Defaults to @samp{"1 hour"}.
12793 @end deftypevr
12794
12795 @deftypevr {@code{dovecot-configuration} parameter} string auth-cache-negative-ttl
12796 TTL for negative hits (user not found, password mismatch).
12797 0 disables caching them completely.
12798 Defaults to @samp{"1 hour"}.
12799 @end deftypevr
12800
12801 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-realms
12802 List of realms for SASL authentication mechanisms that need them.
12803 You can leave it empty if you don't want to support multiple realms.
12804 Many clients simply use the first one listed here, so keep the default
12805 realm first.
12806 Defaults to @samp{()}.
12807 @end deftypevr
12808
12809 @deftypevr {@code{dovecot-configuration} parameter} string auth-default-realm
12810 Default realm/domain to use if none was specified. This is used for
12811 both SASL realms and appending @@domain to username in plaintext
12812 logins.
12813 Defaults to @samp{""}.
12814 @end deftypevr
12815
12816 @deftypevr {@code{dovecot-configuration} parameter} string auth-username-chars
12817 List of allowed characters in username. If the user-given username
12818 contains a character not listed in here, the login automatically fails.
12819 This is just an extra check to make sure user can't exploit any
12820 potential quote escaping vulnerabilities with SQL/LDAP databases. If
12821 you want to allow all characters, set this value to empty.
12822 Defaults to @samp{"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@"}.
12823 @end deftypevr
12824
12825 @deftypevr {@code{dovecot-configuration} parameter} string auth-username-translation
12826 Username character translations before it's looked up from
12827 databases. The value contains series of from -> to characters. For
12828 example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are
12829 translated to @samp{@@}.
12830 Defaults to @samp{""}.
12831 @end deftypevr
12832
12833 @deftypevr {@code{dovecot-configuration} parameter} string auth-username-format
12834 Username formatting before it's looked up from databases. You can
12835 use the standard variables here, e.g. %Lu would lowercase the username,
12836 %n would drop away the domain if it was given, or @samp{%n-AT-%d} would
12837 change the @samp{@@} into @samp{-AT-}. This translation is done after
12838 @samp{auth-username-translation} changes.
12839 Defaults to @samp{"%Lu"}.
12840 @end deftypevr
12841
12842 @deftypevr {@code{dovecot-configuration} parameter} string auth-master-user-separator
12843 If you want to allow master users to log in by specifying the master
12844 username within the normal username string (i.e. not using SASL
12845 mechanism's support for it), you can specify the separator character
12846 here. The format is then <username><separator><master username>.
12847 UW-IMAP uses @samp{*} as the separator, so that could be a good
12848 choice.
12849 Defaults to @samp{""}.
12850 @end deftypevr
12851
12852 @deftypevr {@code{dovecot-configuration} parameter} string auth-anonymous-username
12853 Username to use for users logging in with ANONYMOUS SASL
12854 mechanism.
12855 Defaults to @samp{"anonymous"}.
12856 @end deftypevr
12857
12858 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count
12859 Maximum number of dovecot-auth worker processes. They're used to
12860 execute blocking passdb and userdb queries (e.g. MySQL and PAM).
12861 They're automatically created and destroyed as needed.
12862 Defaults to @samp{30}.
12863 @end deftypevr
12864
12865 @deftypevr {@code{dovecot-configuration} parameter} string auth-gssapi-hostname
12866 Host name to use in GSSAPI principal names. The default is to use
12867 the name returned by gethostname(). Use @samp{$ALL} (with quotes) to
12868 allow all keytab entries.
12869 Defaults to @samp{""}.
12870 @end deftypevr
12871
12872 @deftypevr {@code{dovecot-configuration} parameter} string auth-krb5-keytab
12873 Kerberos keytab to use for the GSSAPI mechanism. Will use the
12874 system default (usually @file{/etc/krb5.keytab}) if not specified. You may
12875 need to change the auth service to run as root to be able to read this
12876 file.
12877 Defaults to @samp{""}.
12878 @end deftypevr
12879
12880 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-use-winbind?
12881 Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon
12882 and @samp{ntlm-auth} helper.
12883 <doc/wiki/Authentication/Mechanisms/Winbind.txt>.
12884 Defaults to @samp{#f}.
12885 @end deftypevr
12886
12887 @deftypevr {@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path
12888 Path for Samba's @samp{ntlm-auth} helper binary.
12889 Defaults to @samp{"/usr/bin/ntlm_auth"}.
12890 @end deftypevr
12891
12892 @deftypevr {@code{dovecot-configuration} parameter} string auth-failure-delay
12893 Time to delay before replying to failed authentications.
12894 Defaults to @samp{"2 secs"}.
12895 @end deftypevr
12896
12897 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?
12898 Require a valid SSL client certificate or the authentication
12899 fails.
12900 Defaults to @samp{#f}.
12901 @end deftypevr
12902
12903 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?
12904 Take the username from client's SSL certificate, using
12905 @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's
12906 CommonName.
12907 Defaults to @samp{#f}.
12908 @end deftypevr
12909
12910 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms
12911 List of wanted authentication mechanisms. Supported mechanisms are:
12912 @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5},
12913 @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi},
12914 @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also
12915 @samp{disable-plaintext-auth} setting.
12916 @end deftypevr
12917
12918 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-servers
12919 List of IPs or hostnames to all director servers, including ourself.
12920 Ports can be specified as ip:port. The default port is the same as what
12921 director service's @samp{inet-listener} is using.
12922 Defaults to @samp{()}.
12923 @end deftypevr
12924
12925 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers
12926 List of IPs or hostnames to all backend mail servers. Ranges are
12927 allowed too, like 10.0.0.10-10.0.0.30.
12928 Defaults to @samp{()}.
12929 @end deftypevr
12930
12931 @deftypevr {@code{dovecot-configuration} parameter} string director-user-expire
12932 How long to redirect users to a specific server after it no longer
12933 has any connections.
12934 Defaults to @samp{"15 min"}.
12935 @end deftypevr
12936
12937 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer director-doveadm-port
12938 TCP/IP port that accepts doveadm connections (instead of director
12939 connections) If you enable this, you'll also need to add
12940 @samp{inet-listener} for the port.
12941 Defaults to @samp{0}.
12942 @end deftypevr
12943
12944 @deftypevr {@code{dovecot-configuration} parameter} string director-username-hash
12945 How the username is translated before being hashed. Useful values
12946 include %Ln if user can log in with or without @@domain, %Ld if mailboxes
12947 are shared within domain.
12948 Defaults to @samp{"%Lu"}.
12949 @end deftypevr
12950
12951 @deftypevr {@code{dovecot-configuration} parameter} string log-path
12952 Log file to use for error messages. @samp{syslog} logs to syslog,
12953 @samp{/dev/stderr} logs to stderr.
12954 Defaults to @samp{"syslog"}.
12955 @end deftypevr
12956
12957 @deftypevr {@code{dovecot-configuration} parameter} string info-log-path
12958 Log file to use for informational messages. Defaults to
12959 @samp{log-path}.
12960 Defaults to @samp{""}.
12961 @end deftypevr
12962
12963 @deftypevr {@code{dovecot-configuration} parameter} string debug-log-path
12964 Log file to use for debug messages. Defaults to
12965 @samp{info-log-path}.
12966 Defaults to @samp{""}.
12967 @end deftypevr
12968
12969 @deftypevr {@code{dovecot-configuration} parameter} string syslog-facility
12970 Syslog facility to use if you're logging to syslog. Usually if you
12971 don't want to use @samp{mail}, you'll use local0..local7. Also other
12972 standard facilities are supported.
12973 Defaults to @samp{"mail"}.
12974 @end deftypevr
12975
12976 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose?
12977 Log unsuccessful authentication attempts and the reasons why they
12978 failed.
12979 Defaults to @samp{#f}.
12980 @end deftypevr
12981
12982 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose-passwords?
12983 In case of password mismatches, log the attempted password. Valid
12984 values are no, plain and sha1. sha1 can be useful for detecting brute
12985 force password attempts vs. user simply trying the same password over
12986 and over again. You can also truncate the value to n chars by appending
12987 ":n" (e.g. sha1:6).
12988 Defaults to @samp{#f}.
12989 @end deftypevr
12990
12991 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug?
12992 Even more verbose logging for debugging purposes. Shows for example
12993 SQL queries.
12994 Defaults to @samp{#f}.
12995 @end deftypevr
12996
12997 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug-passwords?
12998 In case of password mismatches, log the passwords and used scheme so
12999 the problem can be debugged. Enabling this also enables
13000 @samp{auth-debug}.
13001 Defaults to @samp{#f}.
13002 @end deftypevr
13003
13004 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-debug?
13005 Enable mail process debugging. This can help you figure out why
13006 Dovecot isn't finding your mails.
13007 Defaults to @samp{#f}.
13008 @end deftypevr
13009
13010 @deftypevr {@code{dovecot-configuration} parameter} boolean verbose-ssl?
13011 Show protocol level SSL errors.
13012 Defaults to @samp{#f}.
13013 @end deftypevr
13014
13015 @deftypevr {@code{dovecot-configuration} parameter} string log-timestamp
13016 Prefix for each line written to log file. % codes are in
13017 strftime(3) format.
13018 Defaults to @samp{"\"%b %d %H:%M:%S \""}.
13019 @end deftypevr
13020
13021 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements
13022 List of elements we want to log. The elements which have a
13023 non-empty variable value are joined together to form a comma-separated
13024 string.
13025 @end deftypevr
13026
13027 @deftypevr {@code{dovecot-configuration} parameter} string login-log-format
13028 Login log format. %s contains @samp{login-log-format-elements}
13029 string, %$ contains the data we want to log.
13030 Defaults to @samp{"%$: %s"}.
13031 @end deftypevr
13032
13033 @deftypevr {@code{dovecot-configuration} parameter} string mail-log-prefix
13034 Log prefix for mail processes. See doc/wiki/Variables.txt for list
13035 of possible variables you can use.
13036 Defaults to @samp{"\"%s(%u): \""}.
13037 @end deftypevr
13038
13039 @deftypevr {@code{dovecot-configuration} parameter} string deliver-log-format
13040 Format to use for logging mail deliveries. You can use variables:
13041 @table @code
13042 @item %$
13043 Delivery status message (e.g. @samp{saved to INBOX})
13044 @item %m
13045 Message-ID
13046 @item %s
13047 Subject
13048 @item %f
13049 From address
13050 @item %p
13051 Physical size
13052 @item %w
13053 Virtual size.
13054 @end table
13055 Defaults to @samp{"msgid=%m: %$"}.
13056 @end deftypevr
13057
13058 @deftypevr {@code{dovecot-configuration} parameter} string mail-location
13059 Location for users' mailboxes. The default is empty, which means
13060 that Dovecot tries to find the mailboxes automatically. This won't work
13061 if the user doesn't yet have any mail, so you should explicitly tell
13062 Dovecot the full location.
13063
13064 If you're using mbox, giving a path to the INBOX
13065 file (e.g. /var/mail/%u) isn't enough. You'll also need to tell Dovecot
13066 where the other mailboxes are kept. This is called the "root mail
13067 directory", and it must be the first path given in the
13068 @samp{mail-location} setting.
13069
13070 There are a few special variables you can use, eg.:
13071
13072 @table @samp
13073 @item %u
13074 username
13075 @item %n
13076 user part in user@@domain, same as %u if there's no domain
13077 @item %d
13078 domain part in user@@domain, empty if there's no domain
13079 @item %h
13080 home director
13081 @end table
13082
13083 See doc/wiki/Variables.txt for full list. Some examples:
13084 @table @samp
13085 @item maildir:~/Maildir
13086 @item mbox:~/mail:INBOX=/var/mail/%u
13087 @item mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%
13088 @end table
13089 Defaults to @samp{""}.
13090 @end deftypevr
13091
13092 @deftypevr {@code{dovecot-configuration} parameter} string mail-uid
13093 System user and group used to access mails. If you use multiple,
13094 userdb can override these by returning uid or gid fields. You can use
13095 either numbers or names. <doc/wiki/UserIds.txt>.
13096 Defaults to @samp{""}.
13097 @end deftypevr
13098
13099 @deftypevr {@code{dovecot-configuration} parameter} string mail-gid
13100
13101 Defaults to @samp{""}.
13102 @end deftypevr
13103
13104 @deftypevr {@code{dovecot-configuration} parameter} string mail-privileged-group
13105 Group to enable temporarily for privileged operations. Currently
13106 this is used only with INBOX when either its initial creation or
13107 dotlocking fails. Typically this is set to "mail" to give access to
13108 /var/mail.
13109 Defaults to @samp{""}.
13110 @end deftypevr
13111
13112 @deftypevr {@code{dovecot-configuration} parameter} string mail-access-groups
13113 Grant access to these supplementary groups for mail processes.
13114 Typically these are used to set up access to shared mailboxes. Note
13115 that it may be dangerous to set these if users can create
13116 symlinks (e.g. if "mail" group is set here, ln -s /var/mail ~/mail/var
13117 could allow a user to delete others' mailboxes, or ln -s
13118 /secret/shared/box ~/mail/mybox would allow reading it).
13119 Defaults to @samp{""}.
13120 @end deftypevr
13121
13122 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?
13123 Allow full file system access to clients. There's no access checks
13124 other than what the operating system does for the active UID/GID. It
13125 works with both maildir and mboxes, allowing you to prefix mailboxes
13126 names with e.g. /path/ or ~user/.
13127 Defaults to @samp{#f}.
13128 @end deftypevr
13129
13130 @deftypevr {@code{dovecot-configuration} parameter} boolean mmap-disable?
13131 Don't use mmap() at all. This is required if you store indexes to
13132 shared file systems (NFS or clustered file system).
13133 Defaults to @samp{#f}.
13134 @end deftypevr
13135
13136 @deftypevr {@code{dovecot-configuration} parameter} boolean dotlock-use-excl?
13137 Rely on @samp{O_EXCL} to work when creating dotlock files. NFS
13138 supports @samp{O_EXCL} since version 3, so this should be safe to use
13139 nowadays by default.
13140 Defaults to @samp{#t}.
13141 @end deftypevr
13142
13143 @deftypevr {@code{dovecot-configuration} parameter} string mail-fsync
13144 When to use fsync() or fdatasync() calls:
13145 @table @code
13146 @item optimized
13147 Whenever necessary to avoid losing important data
13148 @item always
13149 Useful with e.g. NFS when write()s are delayed
13150 @item never
13151 Never use it (best performance, but crashes can lose data).
13152 @end table
13153 Defaults to @samp{"optimized"}.
13154 @end deftypevr
13155
13156 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-storage?
13157 Mail storage exists in NFS. Set this to yes to make Dovecot flush
13158 NFS caches whenever needed. If you're using only a single mail server
13159 this isn't needed.
13160 Defaults to @samp{#f}.
13161 @end deftypevr
13162
13163 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-index?
13164 Mail index files also exist in NFS. Setting this to yes requires
13165 @samp{mmap-disable? #t} and @samp{fsync-disable? #f}.
13166 Defaults to @samp{#f}.
13167 @end deftypevr
13168
13169 @deftypevr {@code{dovecot-configuration} parameter} string lock-method
13170 Locking method for index files. Alternatives are fcntl, flock and
13171 dotlock. Dotlocking uses some tricks which may create more disk I/O
13172 than other locking methods. NFS users: flock doesn't work, remember to
13173 change @samp{mmap-disable}.
13174 Defaults to @samp{"fcntl"}.
13175 @end deftypevr
13176
13177 @deftypevr {@code{dovecot-configuration} parameter} file-name mail-temp-dir
13178 Directory in which LDA/LMTP temporarily stores incoming mails >128
13179 kB.
13180 Defaults to @samp{"/tmp"}.
13181 @end deftypevr
13182
13183 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid
13184 Valid UID range for users. This is mostly to make sure that users can't
13185 log in as daemons or other system users. Note that denying root logins is
13186 hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid}
13187 is set to 0.
13188 Defaults to @samp{500}.
13189 @end deftypevr
13190
13191 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid
13192
13193 Defaults to @samp{0}.
13194 @end deftypevr
13195
13196 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid
13197 Valid GID range for users. Users having non-valid GID as primary group ID
13198 aren't allowed to log in. If user belongs to supplementary groups with
13199 non-valid GIDs, those groups are not set.
13200 Defaults to @samp{1}.
13201 @end deftypevr
13202
13203 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid
13204
13205 Defaults to @samp{0}.
13206 @end deftypevr
13207
13208 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length
13209 Maximum allowed length for mail keyword name. It's only forced when
13210 trying to create new keywords.
13211 Defaults to @samp{50}.
13212 @end deftypevr
13213
13214 @deftypevr {@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs
13215 List of directories under which chrooting is allowed for mail
13216 processes (i.e. /var/mail will allow chrooting to /var/mail/foo/bar
13217 too). This setting doesn't affect @samp{login-chroot}
13218 @samp{mail-chroot} or auth chroot settings. If this setting is empty,
13219 "/./" in home dirs are ignored. WARNING: Never add directories here
13220 which local users can modify, that may lead to root exploit. Usually
13221 this should be done only if you don't allow shell access for users.
13222 <doc/wiki/Chrooting.txt>.
13223 Defaults to @samp{()}.
13224 @end deftypevr
13225
13226 @deftypevr {@code{dovecot-configuration} parameter} string mail-chroot
13227 Default chroot directory for mail processes. This can be overridden
13228 for specific users in user database by giving /./ in user's home
13229 directory (e.g. /home/./user chroots into /home). Note that usually
13230 there is no real need to do chrooting, Dovecot doesn't allow users to
13231 access files outside their mail directory anyway. If your home
13232 directories are prefixed with the chroot directory, append "/." to
13233 @samp{mail-chroot}. <doc/wiki/Chrooting.txt>.
13234 Defaults to @samp{""}.
13235 @end deftypevr
13236
13237 @deftypevr {@code{dovecot-configuration} parameter} file-name auth-socket-path
13238 UNIX socket path to master authentication server to find users.
13239 This is used by imap (for shared users) and lda.
13240 Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
13241 @end deftypevr
13242
13243 @deftypevr {@code{dovecot-configuration} parameter} file-name mail-plugin-dir
13244 Directory where to look up mail plugins.
13245 Defaults to @samp{"/usr/lib/dovecot"}.
13246 @end deftypevr
13247
13248 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins
13249 List of plugins to load for all services. Plugins specific to IMAP,
13250 LDA, etc. are added to this list in their own .conf files.
13251 Defaults to @samp{()}.
13252 @end deftypevr
13253
13254 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count
13255 The minimum number of mails in a mailbox before updates are done to
13256 cache file. This allows optimizing Dovecot's behavior to do less disk
13257 writes at the cost of more disk reads.
13258 Defaults to @samp{0}.
13259 @end deftypevr
13260
13261 @deftypevr {@code{dovecot-configuration} parameter} string mailbox-idle-check-interval
13262 When IDLE command is running, mailbox is checked once in a while to
13263 see if there are any new mails or other changes. This setting defines
13264 the minimum time to wait between those checks. Dovecot can also use
13265 dnotify, inotify and kqueue to find out immediately when changes
13266 occur.
13267 Defaults to @samp{"30 secs"}.
13268 @end deftypevr
13269
13270 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-save-crlf?
13271 Save mails with CR+LF instead of plain LF. This makes sending those
13272 mails take less CPU, especially with sendfile() syscall with Linux and
13273 FreeBSD. But it also creates a bit more disk I/O which may just make it
13274 slower. Also note that if other software reads the mboxes/maildirs,
13275 they may handle the extra CRs wrong and cause problems.
13276 Defaults to @samp{#f}.
13277 @end deftypevr
13278
13279 @deftypevr {@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?
13280 By default LIST command returns all entries in maildir beginning
13281 with a dot. Enabling this option makes Dovecot return only entries
13282 which are directories. This is done by stat()ing each entry, so it
13283 causes more disk I/O.
13284 (For systems setting struct @samp{dirent->d_type} this check is free
13285 and it's done always regardless of this setting).
13286 Defaults to @samp{#f}.
13287 @end deftypevr
13288
13289 @deftypevr {@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?
13290 When copying a message, do it with hard links whenever possible.
13291 This makes the performance much better, and it's unlikely to have any
13292 side effects.
13293 Defaults to @samp{#t}.
13294 @end deftypevr
13295
13296 @deftypevr {@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?
13297 Assume Dovecot is the only MUA accessing Maildir: Scan cur/
13298 directory only when its mtime changes unexpectedly or when we can't find
13299 the mail otherwise.
13300 Defaults to @samp{#f}.
13301 @end deftypevr
13302
13303 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks
13304 Which locking methods to use for locking mbox. There are four
13305 available:
13306
13307 @table @code
13308 @item dotlock
13309 Create <mailbox>.lock file. This is the oldest and most NFS-safe
13310 solution. If you want to use /var/mail/ like directory, the users will
13311 need write access to that directory.
13312 @item dotlock-try
13313 Same as dotlock, but if it fails because of permissions or because there
13314 isn't enough disk space, just skip it.
13315 @item fcntl
13316 Use this if possible. Works with NFS too if lockd is used.
13317 @item flock
13318 May not exist in all systems. Doesn't work with NFS.
13319 @item lockf
13320 May not exist in all systems. Doesn't work with NFS.
13321 @end table
13322
13323 You can use multiple locking methods; if you do the order they're declared
13324 in is important to avoid deadlocks if other MTAs/MUAs are using multiple
13325 locking methods as well. Some operating systems don't allow using some of
13326 them simultaneously.
13327 @end deftypevr
13328
13329 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks
13330
13331 @end deftypevr
13332
13333 @deftypevr {@code{dovecot-configuration} parameter} string mbox-lock-timeout
13334 Maximum time to wait for lock (all of them) before aborting.
13335 Defaults to @samp{"5 mins"}.
13336 @end deftypevr
13337
13338 @deftypevr {@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout
13339 If dotlock exists but the mailbox isn't modified in any way,
13340 override the lock file after this much time.
13341 Defaults to @samp{"2 mins"}.
13342 @end deftypevr
13343
13344 @deftypevr {@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?
13345 When mbox changes unexpectedly we have to fully read it to find out
13346 what changed. If the mbox is large this can take a long time. Since
13347 the change is usually just a newly appended mail, it'd be faster to
13348 simply read the new mails. If this setting is enabled, Dovecot does
13349 this but still safely fallbacks to re-reading the whole mbox file
13350 whenever something in mbox isn't how it's expected to be. The only real
13351 downside to this setting is that if some other MUA changes message
13352 flags, Dovecot doesn't notice it immediately. Note that a full sync is
13353 done with SELECT, EXAMINE, EXPUNGE and CHECK commands.
13354 Defaults to @samp{#t}.
13355 @end deftypevr
13356
13357 @deftypevr {@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?
13358 Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT,
13359 EXAMINE, EXPUNGE or CHECK commands. If this is set,
13360 @samp{mbox-dirty-syncs} is ignored.
13361 Defaults to @samp{#f}.
13362 @end deftypevr
13363
13364 @deftypevr {@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?
13365 Delay writing mbox headers until doing a full write sync (EXPUNGE
13366 and CHECK commands and when closing the mailbox). This is especially
13367 useful for POP3 where clients often delete all mails. The downside is
13368 that our changes aren't immediately visible to other MUAs.
13369 Defaults to @samp{#t}.
13370 @end deftypevr
13371
13372 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size
13373 If mbox size is smaller than this (e.g. 100k), don't write index
13374 files. If an index file already exists it's still read, just not
13375 updated.
13376 Defaults to @samp{0}.
13377 @end deftypevr
13378
13379 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size
13380 Maximum dbox file size until it's rotated.
13381 Defaults to @samp{2000000}.
13382 @end deftypevr
13383
13384 @deftypevr {@code{dovecot-configuration} parameter} string mdbox-rotate-interval
13385 Maximum dbox file age until it's rotated. Typically in days. Day
13386 begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check
13387 disabled.
13388 Defaults to @samp{"1d"}.
13389 @end deftypevr
13390
13391 @deftypevr {@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?
13392 When creating new mdbox files, immediately preallocate their size to
13393 @samp{mdbox-rotate-size}. This setting currently works only in Linux
13394 with some file systems (ext4, xfs).
13395 Defaults to @samp{#f}.
13396 @end deftypevr
13397
13398 @deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-dir
13399 sdbox and mdbox support saving mail attachments to external files,
13400 which also allows single instance storage for them. Other backends
13401 don't support this for now.
13402
13403 WARNING: This feature hasn't been tested much yet. Use at your own risk.
13404
13405 Directory root where to store mail attachments. Disabled, if empty.
13406 Defaults to @samp{""}.
13407 @end deftypevr
13408
13409 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size
13410 Attachments smaller than this aren't saved externally. It's also
13411 possible to write a plugin to disable saving specific attachments
13412 externally.
13413 Defaults to @samp{128000}.
13414 @end deftypevr
13415
13416 @deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-fs
13417 File system backend to use for saving attachments:
13418 @table @code
13419 @item posix
13420 No SiS done by Dovecot (but this might help FS's own deduplication)
13421 @item sis posix
13422 SiS with immediate byte-by-byte comparison during saving
13423 @item sis-queue posix
13424 SiS with delayed comparison and deduplication.
13425 @end table
13426 Defaults to @samp{"sis posix"}.
13427 @end deftypevr
13428
13429 @deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-hash
13430 Hash format to use in attachment filenames. You can add any text and
13431 variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}},
13432 @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be
13433 truncated, e.g. @code{%@{sha256:80@}} returns only first 80 bits.
13434 Defaults to @samp{"%@{sha1@}"}.
13435 @end deftypevr
13436
13437 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-process-limit
13438
13439 Defaults to @samp{100}.
13440 @end deftypevr
13441
13442 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-client-limit
13443
13444 Defaults to @samp{1000}.
13445 @end deftypevr
13446
13447 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit
13448 Default VSZ (virtual memory size) limit for service processes.
13449 This is mainly intended to catch and kill processes that leak memory
13450 before they eat up everything.
13451 Defaults to @samp{256000000}.
13452 @end deftypevr
13453
13454 @deftypevr {@code{dovecot-configuration} parameter} string default-login-user
13455 Login user is internally used by login processes. This is the most
13456 untrusted user in Dovecot system. It shouldn't have access to anything
13457 at all.
13458 Defaults to @samp{"dovenull"}.
13459 @end deftypevr
13460
13461 @deftypevr {@code{dovecot-configuration} parameter} string default-internal-user
13462 Internal user is used by unprivileged processes. It should be
13463 separate from login user, so that login processes can't disturb other
13464 processes.
13465 Defaults to @samp{"dovecot"}.
13466 @end deftypevr
13467
13468 @deftypevr {@code{dovecot-configuration} parameter} string ssl?
13469 SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>.
13470 Defaults to @samp{"required"}.
13471 @end deftypevr
13472
13473 @deftypevr {@code{dovecot-configuration} parameter} string ssl-cert
13474 PEM encoded X.509 SSL/TLS certificate (public key).
13475 Defaults to @samp{"</etc/dovecot/default.pem"}.
13476 @end deftypevr
13477
13478 @deftypevr {@code{dovecot-configuration} parameter} string ssl-key
13479 PEM encoded SSL/TLS private key. The key is opened before
13480 dropping root privileges, so keep the key file unreadable by anyone but
13481 root.
13482 Defaults to @samp{"</etc/dovecot/private/default.pem"}.
13483 @end deftypevr
13484
13485 @deftypevr {@code{dovecot-configuration} parameter} string ssl-key-password
13486 If key file is password protected, give the password here.
13487 Alternatively give it when starting dovecot with -p parameter. Since
13488 this file is often world-readable, you may want to place this setting
13489 instead to a different.
13490 Defaults to @samp{""}.
13491 @end deftypevr
13492
13493 @deftypevr {@code{dovecot-configuration} parameter} string ssl-ca
13494 PEM encoded trusted certificate authority. Set this only if you
13495 intend to use @samp{ssl-verify-client-cert? #t}. The file should
13496 contain the CA certificate(s) followed by the matching
13497 CRL(s). (e.g. @samp{ssl-ca </etc/ssl/certs/ca.pem}).
13498 Defaults to @samp{""}.
13499 @end deftypevr
13500
13501 @deftypevr {@code{dovecot-configuration} parameter} boolean ssl-require-crl?
13502 Require that CRL check succeeds for client certificates.
13503 Defaults to @samp{#t}.
13504 @end deftypevr
13505
13506 @deftypevr {@code{dovecot-configuration} parameter} boolean ssl-verify-client-cert?
13507 Request client to send a certificate. If you also want to require
13508 it, set @samp{auth-ssl-require-client-cert? #t} in auth section.
13509 Defaults to @samp{#f}.
13510 @end deftypevr
13511
13512 @deftypevr {@code{dovecot-configuration} parameter} string ssl-cert-username-field
13513 Which field from certificate to use for username. commonName and
13514 x500UniqueIdentifier are the usual choices. You'll also need to set
13515 @samp{auth-ssl-username-from-cert? #t}.
13516 Defaults to @samp{"commonName"}.
13517 @end deftypevr
13518
13519 @deftypevr {@code{dovecot-configuration} parameter} hours ssl-parameters-regenerate
13520 How often to regenerate the SSL parameters file. Generation is
13521 quite CPU intensive operation. The value is in hours, 0 disables
13522 regeneration entirely.
13523 Defaults to @samp{168}.
13524 @end deftypevr
13525
13526 @deftypevr {@code{dovecot-configuration} parameter} string ssl-protocols
13527 SSL protocols to use.
13528 Defaults to @samp{"!SSLv2"}.
13529 @end deftypevr
13530
13531 @deftypevr {@code{dovecot-configuration} parameter} string ssl-cipher-list
13532 SSL ciphers to use.
13533 Defaults to @samp{"ALL:!LOW:!SSLv2:!EXP:!aNULL"}.
13534 @end deftypevr
13535
13536 @deftypevr {@code{dovecot-configuration} parameter} string ssl-crypto-device
13537 SSL crypto device to use, for valid values run "openssl engine".
13538 Defaults to @samp{""}.
13539 @end deftypevr
13540
13541 @deftypevr {@code{dovecot-configuration} parameter} string postmaster-address
13542 Address to use when sending rejection mails.
13543 %d expands to recipient domain.
13544 Defaults to @samp{"postmaster@@%d"}.
13545 @end deftypevr
13546
13547 @deftypevr {@code{dovecot-configuration} parameter} string hostname
13548 Hostname to use in various parts of sent mails (e.g. in Message-Id)
13549 and in LMTP replies. Default is the system's real hostname@@domain.
13550 Defaults to @samp{""}.
13551 @end deftypevr
13552
13553 @deftypevr {@code{dovecot-configuration} parameter} boolean quota-full-tempfail?
13554 If user is over quota, return with temporary failure instead of
13555 bouncing the mail.
13556 Defaults to @samp{#f}.
13557 @end deftypevr
13558
13559 @deftypevr {@code{dovecot-configuration} parameter} file-name sendmail-path
13560 Binary to use for sending mails.
13561 Defaults to @samp{"/usr/sbin/sendmail"}.
13562 @end deftypevr
13563
13564 @deftypevr {@code{dovecot-configuration} parameter} string submission-host
13565 If non-empty, send mails via this SMTP host[:port] instead of
13566 sendmail.
13567 Defaults to @samp{""}.
13568 @end deftypevr
13569
13570 @deftypevr {@code{dovecot-configuration} parameter} string rejection-subject
13571 Subject: header to use for rejection mails. You can use the same
13572 variables as for @samp{rejection-reason} below.
13573 Defaults to @samp{"Rejected: %s"}.
13574 @end deftypevr
13575
13576 @deftypevr {@code{dovecot-configuration} parameter} string rejection-reason
13577 Human readable error message for rejection mails. You can use
13578 variables:
13579
13580 @table @code
13581 @item %n
13582 CRLF
13583 @item %r
13584 reason
13585 @item %s
13586 original subject
13587 @item %t
13588 recipient
13589 @end table
13590 Defaults to @samp{"Your message to <%t> was automatically rejected:%n%r"}.
13591 @end deftypevr
13592
13593 @deftypevr {@code{dovecot-configuration} parameter} string recipient-delimiter
13594 Delimiter character between local-part and detail in email
13595 address.
13596 Defaults to @samp{"+"}.
13597 @end deftypevr
13598
13599 @deftypevr {@code{dovecot-configuration} parameter} string lda-original-recipient-header
13600 Header where the original recipient address (SMTP's RCPT TO:
13601 address) is taken from if not available elsewhere. With dovecot-lda -a
13602 parameter overrides this. A commonly used header for this is
13603 X-Original-To.
13604 Defaults to @samp{""}.
13605 @end deftypevr
13606
13607 @deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?
13608 Should saving a mail to a nonexistent mailbox automatically create
13609 it?.
13610 Defaults to @samp{#f}.
13611 @end deftypevr
13612
13613 @deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?
13614 Should automatically created mailboxes be also automatically
13615 subscribed?.
13616 Defaults to @samp{#f}.
13617 @end deftypevr
13618
13619 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length
13620 Maximum IMAP command line length. Some clients generate very long
13621 command lines with huge mailboxes, so you may need to raise this if you
13622 get "Too long argument" or "IMAP command line too large" errors
13623 often.
13624 Defaults to @samp{64000}.
13625 @end deftypevr
13626
13627 @deftypevr {@code{dovecot-configuration} parameter} string imap-logout-format
13628 IMAP logout format string:
13629 @table @code
13630 @item %i
13631 total number of bytes read from client
13632 @item %o
13633 total number of bytes sent to client.
13634 @end table
13635 Defaults to @samp{"in=%i out=%o"}.
13636 @end deftypevr
13637
13638 @deftypevr {@code{dovecot-configuration} parameter} string imap-capability
13639 Override the IMAP CAPABILITY response. If the value begins with '+',
13640 add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
13641 Defaults to @samp{""}.
13642 @end deftypevr
13643
13644 @deftypevr {@code{dovecot-configuration} parameter} string imap-idle-notify-interval
13645 How long to wait between "OK Still here" notifications when client
13646 is IDLEing.
13647 Defaults to @samp{"2 mins"}.
13648 @end deftypevr
13649
13650 @deftypevr {@code{dovecot-configuration} parameter} string imap-id-send
13651 ID field names and values to send to clients. Using * as the value
13652 makes Dovecot use the default value. The following fields have default
13653 values currently: name, version, os, os-version, support-url,
13654 support-email.
13655 Defaults to @samp{""}.
13656 @end deftypevr
13657
13658 @deftypevr {@code{dovecot-configuration} parameter} string imap-id-log
13659 ID fields sent by client to log. * means everything.
13660 Defaults to @samp{""}.
13661 @end deftypevr
13662
13663 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds
13664 Workarounds for various client bugs:
13665
13666 @table @code
13667 @item delay-newmail
13668 Send EXISTS/RECENT new mail notifications only when replying to NOOP and
13669 CHECK commands. Some clients ignore them otherwise, for example OSX
13670 Mail (<v2.1). Outlook Express breaks more badly though, without this it
13671 may show user "Message no longer in server" errors. Note that OE6
13672 still breaks even with this workaround if synchronization is set to
13673 "Headers Only".
13674
13675 @item tb-extra-mailbox-sep
13676 Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
13677 adds extra @samp{/} suffixes to mailbox names. This option causes Dovecot to
13678 ignore the extra @samp{/} instead of treating it as invalid mailbox name.
13679
13680 @item tb-lsub-flags
13681 Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
13682 This makes Thunderbird realize they aren't selectable and show them
13683 greyed out, instead of only later giving "not selectable" popup error.
13684 @end table
13685 Defaults to @samp{()}.
13686 @end deftypevr
13687
13688 @deftypevr {@code{dovecot-configuration} parameter} string imap-urlauth-host
13689 Host allowed in URLAUTH URLs sent by client. "*" allows all.
13690 Defaults to @samp{""}.
13691 @end deftypevr
13692
13693
13694 Whew! Lots of configuration options. The nice thing about it though is
13695 that GuixSD has a complete interface to Dovecot's configuration
13696 language. This allows not only a nice way to declare configurations,
13697 but also offers reflective capabilities as well: users can write code to
13698 inspect and transform configurations from within Scheme.
13699
13700 However, it could be that you just want to get a @code{dovecot.conf} up
13701 and running. In that case, you can pass an
13702 @code{opaque-dovecot-configuration} as the @code{#:config} parameter to
13703 @code{dovecot-service}. As its name indicates, an opaque configuration
13704 does not have easy reflective capabilities.
13705
13706 Available @code{opaque-dovecot-configuration} fields are:
13707
13708 @deftypevr {@code{opaque-dovecot-configuration} parameter} package dovecot
13709 The dovecot package.
13710 @end deftypevr
13711
13712 @deftypevr {@code{opaque-dovecot-configuration} parameter} string string
13713 The contents of the @code{dovecot.conf}, as a string.
13714 @end deftypevr
13715
13716 For example, if your @code{dovecot.conf} is just the empty string, you
13717 could instantiate a dovecot service like this:
13718
13719 @example
13720 (dovecot-service #:config
13721 (opaque-dovecot-configuration
13722 (string "")))
13723 @end example
13724
13725 @subsubheading OpenSMTPD Service
13726
13727 @deffn {Scheme Variable} opensmtpd-service-type
13728 This is the type of the @uref{https://www.opensmtpd.org, OpenSMTPD}
13729 service, whose value should be an @code{opensmtpd-configuration} object
13730 as in this example:
13731
13732 @example
13733 (service opensmtpd-service-type
13734 (opensmtpd-configuration
13735 (config-file (local-file "./my-smtpd.conf"))))
13736 @end example
13737 @end deffn
13738
13739 @deftp {Data Type} opensmtpd-configuration
13740 Data type representing the configuration of opensmtpd.
13741
13742 @table @asis
13743 @item @code{package} (default: @var{opensmtpd})
13744 Package object of the OpenSMTPD SMTP server.
13745
13746 @item @code{config-file} (default: @var{%default-opensmtpd-file})
13747 File-like object of the OpenSMTPD configuration file to use. By default
13748 it listens on the loopback network interface, and allows for mail from
13749 users and daemons on the local machine, as well as permitting email to
13750 remote servers. Run @command{man smtpd.conf} for more information.
13751
13752 @end table
13753 @end deftp
13754
13755 @subsubheading Exim Service
13756
13757 @cindex mail transfer agent (MTA)
13758 @cindex MTA (mail transfer agent)
13759 @cindex SMTP
13760
13761 @deffn {Scheme Variable} exim-service-type
13762 This is the type of the @uref{https://exim.org, Exim} mail transfer
13763 agent (MTA), whose value should be an @code{exim-configuration} object
13764 as in this example:
13765
13766 @example
13767 (service exim-service-type
13768 (exim-configuration
13769 (config-file (local-file "./my-exim.conf"))))
13770 @end example
13771 @end deffn
13772
13773 In order to use an @code{exim-service-type} service you must also have a
13774 @code{mail-aliases-service-type} service present in your
13775 @code{operating-system} (even if it has no aliases).
13776
13777 @deftp {Data Type} exim-configuration
13778 Data type representing the configuration of exim.
13779
13780 @table @asis
13781 @item @code{package} (default: @var{exim})
13782 Package object of the Exim server.
13783
13784 @item @code{config-file} (default: @code{#f})
13785 File-like object of the Exim configuration file to use. If its value is
13786 @code{#f} then use the default configuration file from the package
13787 provided in @code{package}. The resulting configuration file is loaded
13788 after setting the @code{exim_user} and @code{exim_group} configuration
13789 variables.
13790
13791 @end table
13792 @end deftp
13793
13794 @subsubheading Mail Aliases Service
13795
13796 @cindex email aliases
13797 @cindex aliases, for email addresses
13798
13799 @deffn {Scheme Variable} mail-aliases-service-type
13800 This is the type of the service which provides @code{/etc/aliases},
13801 specifying how to deliver mail to users on this system.
13802
13803 @example
13804 (service mail-aliases-service-type
13805 '(("postmaster" "bob")
13806 ("bob" "bob@@example.com" "bob@@example2.com")))
13807 @end example
13808 @end deffn
13809
13810 The configuration for a @code{mail-aliases-service-type} service is an
13811 association list denoting how to deliver mail that comes to this
13812 system. Each entry is of the form @code{(alias addresses ...)}, with
13813 @code{alias} specifying the local alias and @code{addresses} specifying
13814 where to deliver this user's mail.
13815
13816 The aliases aren't required to exist as users on the local system. In
13817 the above example, there doesn't need to be a @code{postmaster} entry in
13818 the @code{operating-system}'s @code{user-accounts} in order to deliver
13819 the @code{postmaster} mail to @code{bob} (which subsequently would
13820 deliver mail to @code{bob@@example.com} and @code{bob@@example2.com}).
13821
13822 @node Messaging Services
13823 @subsubsection Messaging Services
13824
13825 @cindex messaging
13826 @cindex jabber
13827 @cindex XMPP
13828 The @code{(gnu services messaging)} module provides Guix service
13829 definitions for messaging services: currently only Prosody is supported.
13830
13831 @subsubheading Prosody Service
13832
13833 @deffn {Scheme Variable} prosody-service-type
13834 This is the type for the @uref{http://prosody.im, Prosody XMPP
13835 communication server}. Its value must be a @code{prosody-configuration}
13836 record as in this example:
13837
13838 @example
13839 (service prosody-service-type
13840 (prosody-configuration
13841 (modules-enabled (cons "groups" %default-modules-enabled))
13842 (int-components
13843 (list
13844 (int-component-configuration
13845 (hostname "conference.example.net")
13846 (plugin "muc")
13847 (mod-muc (mod-muc-configuration)))))
13848 (virtualhosts
13849 (list
13850 (virtualhost-configuration
13851 (domain "example.net"))))))
13852 @end example
13853
13854 See below for details about @code{prosody-configuration}.
13855
13856 @end deffn
13857
13858 By default, Prosody does not need much configuration. Only one
13859 @code{virtualhosts} field is needed: it specifies the domain you wish
13860 Prosody to serve.
13861
13862 Prosodyctl will help you generate X.509 certificates and keys:
13863
13864 @example
13865 prosodyctl cert request example.net
13866 @end example
13867
13868 The available configuration parameters follow. Each parameter
13869 definition is preceded by its type; for example, @samp{string-list foo}
13870 indicates that the @code{foo} parameter should be specified as a list of
13871 strings. Types starting with @code{maybe-} denote parameters that won't
13872 show up in @code{prosody.cfg.lua} when their value is @code{'disabled}.
13873
13874 There is also a way to specify the configuration as a string, if you
13875 have an old @code{prosody.cfg.lua} file that you want to port over from
13876 some other system; see the end for more details.
13877
13878 @c The following documentation was initially generated by
13879 @c (generate-documentation) in (gnu services messaging). Manually maintained
13880 @c documentation is better, so we shouldn't hesitate to edit below as
13881 @c needed. However if the change you want to make to this documentation
13882 @c can be done in an automated way, it's probably easier to change
13883 @c (generate-documentation) than to make it below and have to deal with
13884 @c the churn as Prosody updates.
13885
13886 Available @code{prosody-configuration} fields are:
13887
13888 @deftypevr {@code{prosody-configuration} parameter} package prosody
13889 The Prosody package.
13890 @end deftypevr
13891
13892 @deftypevr {@code{prosody-configuration} parameter} file-name data-path
13893 Location of the Prosody data storage directory. See
13894 @url{http://prosody.im/doc/configure}.
13895 Defaults to @samp{"/var/lib/prosody"}.
13896 @end deftypevr
13897
13898 @deftypevr {@code{prosody-configuration} parameter} file-name-list plugin-paths
13899 Additional plugin directories. They are searched in all the specified
13900 paths in order. See @url{http://prosody.im/doc/plugins_directory}.
13901 Defaults to @samp{()}.
13902 @end deftypevr
13903
13904 @deftypevr {@code{prosody-configuration} parameter} string-list admins
13905 This is a list of accounts that are admins for the server. Note that you
13906 must create the accounts separately. See @url{http://prosody.im/doc/admins} and
13907 @url{http://prosody.im/doc/creating_accounts}.
13908 Example: @code{(admins '("user1@@example.com" "user2@@example.net"))}
13909 Defaults to @samp{()}.
13910 @end deftypevr
13911
13912 @deftypevr {@code{prosody-configuration} parameter} boolean use-libevent?
13913 Enable use of libevent for better performance under high load. See
13914 @url{http://prosody.im/doc/libevent}.
13915 Defaults to @samp{#f}.
13916 @end deftypevr
13917
13918 @deftypevr {@code{prosody-configuration} parameter} module-list modules-enabled
13919 This is the list of modules Prosody will load on startup. It looks for
13920 @code{mod_modulename.lua} in the plugins folder, so make sure that exists too.
13921 Documentation on modules can be found at: @url{http://prosody.im/doc/modules}.
13922 Defaults to @samp{%default-modules-enabled}.
13923 @end deftypevr
13924
13925 @deftypevr {@code{prosody-configuration} parameter} string-list modules-disabled
13926 @samp{"offline"}, @samp{"c2s"} and @samp{"s2s"} are auto-loaded, but
13927 should you want to disable them then add them to this list.
13928 Defaults to @samp{()}.
13929 @end deftypevr
13930
13931 @deftypevr {@code{prosody-configuration} parameter} file-name groups-file
13932 Path to a text file where the shared groups are defined. If this path is
13933 empty then @samp{mod_groups} does nothing. See
13934 @url{http://prosody.im/doc/modules/mod_groups}.
13935 Defaults to @samp{"/var/lib/prosody/sharedgroups.txt"}.
13936 @end deftypevr
13937
13938 @deftypevr {@code{prosody-configuration} parameter} boolean allow-registration?
13939 Disable account creation by default, for security. See
13940 @url{http://prosody.im/doc/creating_accounts}.
13941 Defaults to @samp{#f}.
13942 @end deftypevr
13943
13944 @deftypevr {@code{prosody-configuration} parameter} maybe-ssl-configuration ssl
13945 These are the SSL/TLS-related settings. Most of them are disabled so to
13946 use Prosody's defaults. If you do not completely understand these options, do
13947 not add them to your config, it is easy to lower the security of your server
13948 using them. See @url{http://prosody.im/doc/advanced_ssl_config}.
13949
13950 Available @code{ssl-configuration} fields are:
13951
13952 @deftypevr {@code{ssl-configuration} parameter} maybe-string protocol
13953 This determines what handshake to use.
13954 @end deftypevr
13955
13956 @deftypevr {@code{ssl-configuration} parameter} file-name key
13957 Path to your private key file, relative to @code{/etc/prosody}.
13958 Defaults to @samp{"/etc/prosody/certs/key.pem"}.
13959 @end deftypevr
13960
13961 @deftypevr {@code{ssl-configuration} parameter} file-name certificate
13962 Path to your certificate file, relative to @code{/etc/prosody}.
13963 Defaults to @samp{"/etc/prosody/certs/cert.pem"}.
13964 @end deftypevr
13965
13966 @deftypevr {@code{ssl-configuration} parameter} file-name capath
13967 Path to directory containing root certificates that you wish Prosody to
13968 trust when verifying the certificates of remote servers.
13969 Defaults to @samp{"/etc/ssl/certs"}.
13970 @end deftypevr
13971
13972 @deftypevr {@code{ssl-configuration} parameter} maybe-file-name cafile
13973 Path to a file containing root certificates that you wish Prosody to trust.
13974 Similar to @code{capath} but with all certificates concatenated together.
13975 @end deftypevr
13976
13977 @deftypevr {@code{ssl-configuration} parameter} maybe-string-list verify
13978 A list of verification options (these mostly map to OpenSSL's
13979 @code{set_verify()} flags).
13980 @end deftypevr
13981
13982 @deftypevr {@code{ssl-configuration} parameter} maybe-string-list options
13983 A list of general options relating to SSL/TLS. These map to OpenSSL's
13984 @code{set_options()}. For a full list of options available in LuaSec, see the
13985 LuaSec source.
13986 @end deftypevr
13987
13988 @deftypevr {@code{ssl-configuration} parameter} maybe-non-negative-integer depth
13989 How long a chain of certificate authorities to check when looking for a
13990 trusted root certificate.
13991 @end deftypevr
13992
13993 @deftypevr {@code{ssl-configuration} parameter} maybe-string ciphers
13994 An OpenSSL cipher string. This selects what ciphers Prosody will offer to
13995 clients, and in what order.
13996 @end deftypevr
13997
13998 @deftypevr {@code{ssl-configuration} parameter} maybe-file-name dhparam
13999 A path to a file containing parameters for Diffie-Hellman key exchange. You
14000 can create such a file with:
14001 @code{openssl dhparam -out /etc/prosody/certs/dh-2048.pem 2048}
14002 @end deftypevr
14003
14004 @deftypevr {@code{ssl-configuration} parameter} maybe-string curve
14005 Curve for Elliptic curve Diffie-Hellman. Prosody's default is
14006 @samp{"secp384r1"}.
14007 @end deftypevr
14008
14009 @deftypevr {@code{ssl-configuration} parameter} maybe-string-list verifyext
14010 A list of "extra" verification options.
14011 @end deftypevr
14012
14013 @deftypevr {@code{ssl-configuration} parameter} maybe-string password
14014 Password for encrypted private keys.
14015 @end deftypevr
14016
14017 @end deftypevr
14018
14019 @deftypevr {@code{prosody-configuration} parameter} boolean c2s-require-encryption?
14020 Whether to force all client-to-server connections to be encrypted or not.
14021 See @url{http://prosody.im/doc/modules/mod_tls}.
14022 Defaults to @samp{#f}.
14023 @end deftypevr
14024
14025 @deftypevr {@code{prosody-configuration} parameter} boolean s2s-require-encryption?
14026 Whether to force all server-to-server connections to be encrypted or not.
14027 See @url{http://prosody.im/doc/modules/mod_tls}.
14028 Defaults to @samp{#f}.
14029 @end deftypevr
14030
14031 @deftypevr {@code{prosody-configuration} parameter} boolean s2s-secure-auth?
14032 Whether to require encryption and certificate authentication. This
14033 provides ideal security, but requires servers you communicate with to support
14034 encryption AND present valid, trusted certificates. See
14035 @url{http://prosody.im/doc/s2s#security}.
14036 Defaults to @samp{#f}.
14037 @end deftypevr
14038
14039 @deftypevr {@code{prosody-configuration} parameter} string-list s2s-insecure-domains
14040 Many servers don't support encryption or have invalid or self-signed
14041 certificates. You can list domains here that will not be required to
14042 authenticate using certificates. They will be authenticated using DNS. See
14043 @url{http://prosody.im/doc/s2s#security}.
14044 Defaults to @samp{()}.
14045 @end deftypevr
14046
14047 @deftypevr {@code{prosody-configuration} parameter} string-list s2s-secure-domains
14048 Even if you leave @code{s2s-secure-auth?} disabled, you can still require
14049 valid certificates for some domains by specifying a list here. See
14050 @url{http://prosody.im/doc/s2s#security}.
14051 Defaults to @samp{()}.
14052 @end deftypevr
14053
14054 @deftypevr {@code{prosody-configuration} parameter} string authentication
14055 Select the authentication backend to use. The default provider stores
14056 passwords in plaintext and uses Prosody's configured data storage to store the
14057 authentication data. If you do not trust your server please see
14058 @url{http://prosody.im/doc/modules/mod_auth_internal_hashed} for information
14059 about using the hashed backend. See also
14060 @url{http://prosody.im/doc/authentication}
14061 Defaults to @samp{"internal_plain"}.
14062 @end deftypevr
14063
14064 @deftypevr {@code{prosody-configuration} parameter} maybe-string log
14065 Set logging options. Advanced logging configuration is not yet supported
14066 by the GuixSD Prosody Service. See @url{http://prosody.im/doc/logging}.
14067 Defaults to @samp{"*syslog"}.
14068 @end deftypevr
14069
14070 @deftypevr {@code{prosody-configuration} parameter} file-name pidfile
14071 File to write pid in. See @url{http://prosody.im/doc/modules/mod_posix}.
14072 Defaults to @samp{"/var/run/prosody/prosody.pid"}.
14073 @end deftypevr
14074
14075 @deftypevr {@code{prosody-configuration} parameter} virtualhost-configuration-list virtualhosts
14076 A host in Prosody is a domain on which user accounts can be created. For
14077 example if you want your users to have addresses like
14078 @samp{"john.smith@@example.com"} then you need to add a host
14079 @samp{"example.com"}. All options in this list will apply only to this host.
14080
14081 Note: the name "virtual" host is used in configuration to avoid confusion with
14082 the actual physical host that Prosody is installed on. A single Prosody
14083 instance can serve many domains, each one defined as a VirtualHost entry in
14084 Prosody's configuration. Conversely a server that hosts a single domain would
14085 have just one VirtualHost entry.
14086
14087 See @url{http://prosody.im/doc/configure#virtual_host_settings}.
14088
14089 Available @code{virtualhost-configuration} fields are:
14090
14091 all these @code{prosody-configuration} fields: @code{admins}, @code{use-libevent?}, @code{modules-enabled}, @code{modules-disabled}, @code{groups-file}, @code{allow-registration?}, @code{ssl}, @code{c2s-require-encryption?}, @code{s2s-require-encryption?}, @code{s2s-secure-auth?}, @code{s2s-insecure-domains}, @code{s2s-secure-domains}, @code{authentication}, @code{log}, plus:
14092 @deftypevr {@code{virtualhost-configuration} parameter} string domain
14093 Domain you wish Prosody to serve.
14094 @end deftypevr
14095
14096 @end deftypevr
14097
14098 @deftypevr {@code{prosody-configuration} parameter} int-component-configuration-list int-components
14099 Components are extra services on a server which are available to clients,
14100 usually on a subdomain of the main server (such as
14101 @samp{"mycomponent.example.com"}). Example components might be chatroom
14102 servers, user directories, or gateways to other protocols.
14103
14104 Internal components are implemented with Prosody-specific plugins. To add an
14105 internal component, you simply fill the hostname field, and the plugin you wish
14106 to use for the component.
14107
14108 See @url{http://prosody.im/doc/components}.
14109 Defaults to @samp{()}.
14110
14111 Available @code{int-component-configuration} fields are:
14112
14113 all these @code{prosody-configuration} fields: @code{admins}, @code{use-libevent?}, @code{modules-enabled}, @code{modules-disabled}, @code{groups-file}, @code{allow-registration?}, @code{ssl}, @code{c2s-require-encryption?}, @code{s2s-require-encryption?}, @code{s2s-secure-auth?}, @code{s2s-insecure-domains}, @code{s2s-secure-domains}, @code{authentication}, @code{log}, plus:
14114 @deftypevr {@code{int-component-configuration} parameter} string hostname
14115 Hostname of the component.
14116 @end deftypevr
14117
14118 @deftypevr {@code{int-component-configuration} parameter} string plugin
14119 Plugin you wish to use for the component.
14120 @end deftypevr
14121
14122 @deftypevr {@code{int-component-configuration} parameter} maybe-mod-muc-configuration mod-muc
14123 Multi-user chat (MUC) is Prosody's module for allowing you to create
14124 hosted chatrooms/conferences for XMPP users.
14125
14126 General information on setting up and using multi-user chatrooms can be found
14127 in the "Chatrooms" documentation (@url{http://prosody.im/doc/chatrooms}),
14128 which you should read if you are new to XMPP chatrooms.
14129
14130 See also @url{http://prosody.im/doc/modules/mod_muc}.
14131
14132 Available @code{mod-muc-configuration} fields are:
14133
14134 @deftypevr {@code{mod-muc-configuration} parameter} string name
14135 The name to return in service discovery responses.
14136 Defaults to @samp{"Prosody Chatrooms"}.
14137 @end deftypevr
14138
14139 @deftypevr {@code{mod-muc-configuration} parameter} string-or-boolean restrict-room-creation
14140 If @samp{#t}, this will only allow admins to create new chatrooms.
14141 Otherwise anyone can create a room. The value @samp{"local"} restricts room
14142 creation to users on the service's parent domain. E.g. @samp{user@@example.com}
14143 can create rooms on @samp{rooms.example.com}. The value @samp{"admin"}
14144 restricts to service administrators only.
14145 Defaults to @samp{#f}.
14146 @end deftypevr
14147
14148 @deftypevr {@code{mod-muc-configuration} parameter} non-negative-integer max-history-messages
14149 Maximum number of history messages that will be sent to the member that has
14150 just joined the room.
14151 Defaults to @samp{20}.
14152 @end deftypevr
14153
14154 @end deftypevr
14155
14156 @end deftypevr
14157
14158 @deftypevr {@code{prosody-configuration} parameter} ext-component-configuration-list ext-components
14159 External components use XEP-0114, which most standalone components
14160 support. To add an external component, you simply fill the hostname field. See
14161 @url{http://prosody.im/doc/components}.
14162 Defaults to @samp{()}.
14163
14164 Available @code{ext-component-configuration} fields are:
14165
14166 all these @code{prosody-configuration} fields: @code{admins}, @code{use-libevent?}, @code{modules-enabled}, @code{modules-disabled}, @code{groups-file}, @code{allow-registration?}, @code{ssl}, @code{c2s-require-encryption?}, @code{s2s-require-encryption?}, @code{s2s-secure-auth?}, @code{s2s-insecure-domains}, @code{s2s-secure-domains}, @code{authentication}, @code{log}, plus:
14167 @deftypevr {@code{ext-component-configuration} parameter} string component-secret
14168 Password which the component will use to log in.
14169 @end deftypevr
14170
14171 @deftypevr {@code{ext-component-configuration} parameter} string hostname
14172 Hostname of the component.
14173 @end deftypevr
14174
14175 @end deftypevr
14176
14177 @deftypevr {@code{prosody-configuration} parameter} non-negative-integer-list component-ports
14178 Port(s) Prosody listens on for component connections.
14179 @end deftypevr
14180
14181 @deftypevr {@code{prosody-configuration} parameter} string component-interface
14182 Interface Prosody listens on for component connections.
14183 Defaults to @samp{"127.0.0.1"}.
14184 @end deftypevr
14185
14186 It could be that you just want to get a @code{prosody.cfg.lua}
14187 up and running. In that case, you can pass an
14188 @code{opaque-prosody-configuration} record as the value of
14189 @code{prosody-service-type}. As its name indicates, an opaque configuration
14190 does not have easy reflective capabilities.
14191 Available @code{opaque-prosody-configuration} fields are:
14192
14193 @deftypevr {@code{opaque-prosody-configuration} parameter} package prosody
14194 The prosody package.
14195 @end deftypevr
14196
14197 @deftypevr {@code{opaque-prosody-configuration} parameter} string prosody.cfg.lua
14198 The contents of the @code{prosody.cfg.lua} to use.
14199 @end deftypevr
14200
14201 For example, if your @code{prosody.cfg.lua} is just the empty
14202 string, you could instantiate a prosody service like this:
14203
14204 @example
14205 (service prosody-service-type
14206 (opaque-prosody-configuration
14207 (prosody.cfg.lua "")))
14208 @end example
14209
14210
14211 @node Telephony Services
14212 @subsubsection Telephony Services
14213
14214 @cindex Murmur (VoIP server)
14215 @cindex VoIP server
14216 This section describes how to set up and run a Murmur server. Murmur is
14217 the server of the @uref{https://mumble.info, Mumble} voice-over-IP
14218 (VoIP) suite.
14219
14220 @deftp {Data Type} murmur-configuration
14221 The service type for the Murmur server. An example configuration can
14222 look like this:
14223
14224 @example
14225 (service murmur-service-type
14226 (murmur-configuration
14227 (welcome-text
14228 "Welcome to this Mumble server running on GuixSD!")
14229 (cert-required? #t) ;disallow text password logins
14230 (ssl-cert "/etc/letsencrypt/live/mumble.example.com/fullchain.pem")
14231 (ssl-key "/etc/letsencrypt/live/mumble.example.com/privkey.pem")))
14232 @end example
14233
14234 After reconfiguring your system, you can manually set the murmur @code{SuperUser}
14235 password with the command that is printed during the activation phase.
14236
14237 It is recommended to register a normal Mumble user account
14238 and grant it admin or moderator rights.
14239 You can use the @code{mumble} client to
14240 login as new normal user, register yourself, and log out.
14241 For the next step login with the name @code{SuperUser} use
14242 the @code{SuperUser} password that you set previously,
14243 and grant your newly registered mumble user administrator or moderator
14244 rights and create some channels.
14245
14246 Available @code{murmur-configuration} fields are:
14247
14248 @table @asis
14249 @item @code{package} (default: @code{mumble})
14250 Package that contains @code{bin/murmurd}.
14251
14252 @item @code{user} (default: @code{"murmur"})
14253 User who will run the Murmur server.
14254
14255 @item @code{group} (default: @code{"murmur"})
14256 Group of the user who will run the murmur server.
14257
14258 @item @code{port} (default: @code{64738})
14259 Port on which the server will listen.
14260
14261 @item @code{welcome-text} (default: @code{""})
14262 Welcome text sent to clients when they connect.
14263
14264 @item @code{server-password} (default: @code{""})
14265 Password the clients have to enter in order to connect.
14266
14267 @item @code{max-users} (default: @code{100})
14268 Maximum of users that can be connected to the server at once.
14269
14270 @item @code{max-user-bandwidth} (default: @code{#f})
14271 Maximum voice traffic a user can send per second.
14272
14273 @item @code{database-file} (default: @code{"/var/lib/murmur/db.sqlite"})
14274 File name of the sqlite database.
14275 The service's user will become the owner of the directory.
14276
14277 @item @code{log-file} (default: @code{"/var/log/murmur/murmur.log"})
14278 File name of the log file.
14279 The service's user will become the owner of the directory.
14280
14281 @item @code{autoban-attempts} (default: @code{10})
14282 Maximum number of logins a user can make in @code{autoban-timeframe}
14283 without getting auto banned for @code{autoban-time}.
14284
14285 @item @code{autoban-timeframe} (default: @code{120})
14286 Timeframe for autoban in seconds.
14287
14288 @item @code{autoban-time} (default: @code{300})
14289 Amount of time in seconds for which a client gets banned
14290 when violating the autoban limits.
14291
14292 @item @code{opus-threshold} (default: @code{100})
14293 Percentage of clients that need to support opus
14294 before switching over to opus audio codec.
14295
14296 @item @code{channel-nesting-limit} (default: @code{10})
14297 How deep channels can be nested at maximum.
14298
14299 @item @code{channelname-regex} (default: @code{#f})
14300 A string in from of a Qt regular expression that channel names must conform to.
14301
14302 @item @code{username-regex} (default: @code{#f})
14303 A string in from of a Qt regular expression that user names must conform to.
14304
14305 @item @code{text-message-length} (default: @code{5000})
14306 Maximum size in bytes that a user can send in one text chat message.
14307
14308 @item @code{image-message-length} (default: @code{(* 128 1024)})
14309 Maximum size in bytes that a user can send in one image message.
14310
14311 @item @code{cert-required?} (default: @code{#f})
14312 If it is set to @code{#t} clients that use weak password authentification
14313 will not be accepted. Users must have completed the certificate wizard to join.
14314
14315 @item @code{remember-channel?} (defualt @code{#f})
14316 Should murmur remember the last channel each user was in when they disconnected
14317 and put them into the remembered channel when they rejoin.
14318
14319 @item @code{allow-html?} (default: @code{#f})
14320 Should html be allowed in text messages, user comments, and channel descriptions.
14321
14322 @item @code{allow-ping?} (default: @code{#f})
14323 Setting to true exposes the current user count, the maximum user count, and
14324 the server's maximum bandwidth per client to unauthenticated users. In the
14325 Mumble client, this information is shown in the Connect dialog.
14326
14327 Disabling this setting will prevent public listing of the server.
14328
14329 @item @code{bonjour?} (default: @code{#f})
14330 Should the server advertise itself in the local network through the bonjour protocol.
14331
14332 @item @code{send-version?} (default: @code{#f})
14333 Should the murmur server version be exposed in ping requests.
14334
14335 @item @code{log-days} (default: @code{31})
14336 Murmur also stores logs in the database, which are accessible via RPC.
14337 The default is 31 days of months, but you can set this setting to 0 to keep logs forever,
14338 or -1 to disable logging to the database.
14339
14340 @item @code{obfuscate-ips?} (default @code{#t})
14341 Should logged ips be obfuscated to protect the privacy of users.
14342
14343 @item @code{ssl-cert} (default: @code{#f})
14344 File name of the SSL/TLS certificate used for encrypted connections.
14345
14346 @example
14347 (ssl-cert "/etc/letsencrypt/live/example.com/fullchain.pem")
14348 @end example
14349 @item @code{ssl-key} (default: @code{#f})
14350 Filepath to the ssl private key used for encrypted connections.
14351 @example
14352 (ssl-key "/etc/letsencrypt/live/example.com/privkey.pem")
14353 @end example
14354
14355 @item @code{ssl-dh-params} (default: @code{#f})
14356 File name of a PEM-encoded file with Diffie-Hellman parameters
14357 for the SSL/TLS encryption. Alternatively you set it to
14358 @code{"@@ffdhe2048"}, @code{"@@ffdhe3072"}, @code{"@@ffdhe4096"}, @code{"@@ffdhe6144"}
14359 or @code{"@@ffdhe8192"} to use bundled parameters from RFC 7919.
14360
14361 @item @code{ssl-ciphers} (default: @code{#f})
14362 The @code{ssl-ciphers} option chooses the cipher suites to make available for use
14363 in SSL/TLS.
14364
14365 This option is specified using
14366 @uref{https://www.openssl.org/docs/apps/ciphers.html#CIPHER-LIST-FORMAT,
14367 OpenSSL cipher list notation}.
14368
14369 It is recommended that you try your cipher string using 'openssl ciphers <string>'
14370 before setting it here, to get a feel for which cipher suites you will get.
14371 After setting this option, it is recommend that you inspect your Murmur log
14372 to ensure that Murmur is using the cipher suites that you expected it to.
14373
14374 Note: Changing this option may impact the backwards compatibility of your
14375 Murmur server, and can remove the ability for older Mumble clients to be able
14376 to connect to it.
14377
14378 @item @code{public-registration} (default: @code{#f})
14379 Must be a @code{<murmur-public-registration-configuration>} record or @code{#f}.
14380
14381 You can optionally register your server in the public server list that the
14382 @code{mumble} client shows on startup.
14383 You cannot register your server if you have set a @code{server-password},
14384 or set @code{allow-ping} to @code{#f}.
14385
14386 It might take a few hours until it shows up in the public list.
14387
14388 @item @code{file} (default: @code{#f})
14389 Optional alternative override for this configuration.
14390 @end table
14391 @end deftp
14392
14393 @deftp {Data Type} murmur-public-registration-configuration
14394 Configuration for public registration of a murmur service.
14395
14396 @table @asis
14397 @item @code{name}
14398 This is a display name for your server. Not to be confused with the hostname.
14399
14400 @item @code{password}
14401 A password to identify your registration.
14402 Subsequent updates will need the same password. Don't lose your password.
14403
14404 @item @code{url}
14405 This should be a @code{http://} or @code{https://} link to your web
14406 site.
14407
14408 @item @code{hostname} (default: @code{#f})
14409 By default your server will be listed by its IP address.
14410 If it is set your server will be linked by this host name instead.
14411 @end table
14412 @end deftp
14413
14414
14415
14416 @node Monitoring Services
14417 @subsubsection Monitoring Services
14418
14419 @subsubheading Tailon Service
14420
14421 @uref{https://tailon.readthedocs.io/, Tailon} is a web application for
14422 viewing and searching log files.
14423
14424 The following example will configure the service with default values.
14425 By default, Tailon can be accessed on port 8080 (@code{http://localhost:8080}).
14426
14427 @example
14428 (service tailon-service-type)
14429 @end example
14430
14431 The following example customises more of the Tailon configuration,
14432 adding @command{sed} to the list of allowed commands.
14433
14434 @example
14435 (service tailon-service-type
14436 (tailon-configuration
14437 (config-file
14438 (tailon-configuration-file
14439 (allowed-commands '("tail" "grep" "awk" "sed"))))))
14440 @end example
14441
14442
14443 @deftp {Data Type} tailon-configuration
14444 Data type representing the configuration of Tailon.
14445 This type has the following parameters:
14446
14447 @table @asis
14448 @item @code{config-file} (default: @code{(tailon-configuration-file)})
14449 The configuration file to use for Tailon. This can be set to a
14450 @dfn{tailon-configuration-file} record value, or any gexp
14451 (@pxref{G-Expressions}).
14452
14453 For example, to instead use a local file, the @code{local-file} function
14454 can be used:
14455
14456 @example
14457 (service tailon-service-type
14458 (tailon-configuration
14459 (config-file (local-file "./my-tailon.conf"))))
14460 @end example
14461
14462 @item @code{package} (default: @code{tailon})
14463 The tailon package to use.
14464
14465 @end table
14466 @end deftp
14467
14468 @deftp {Data Type} tailon-configuration-file
14469 Data type representing the configuration options for Tailon.
14470 This type has the following parameters:
14471
14472 @table @asis
14473 @item @code{files} (default: @code{(list "/var/log")})
14474 List of files to display. The list can include strings for a single file
14475 or directory, or a list, where the first item is the name of a
14476 subsection, and the remaining items are the files or directories in that
14477 subsection.
14478
14479 @item @code{bind} (default: @code{"localhost:8080"})
14480 Address and port to which Tailon should bind on.
14481
14482 @item @code{relative-root} (default: @code{#f})
14483 URL path to use for Tailon, set to @code{#f} to not use a path.
14484
14485 @item @code{allow-transfers?} (default: @code{#t})
14486 Allow downloading the log files in the web interface.
14487
14488 @item @code{follow-names?} (default: @code{#t})
14489 Allow tailing of not-yet existent files.
14490
14491 @item @code{tail-lines} (default: @code{200})
14492 Number of lines to read initially from each file.
14493
14494 @item @code{allowed-commands} (default: @code{(list "tail" "grep" "awk")})
14495 Commands to allow running. By default, @code{sed} is disabled.
14496
14497 @item @code{debug?} (default: @code{#f})
14498 Set @code{debug?} to @code{#t} to show debug messages.
14499
14500 @item @code{wrap-lines} (default: @code{#t})
14501 Initial line wrapping state in the web interface. Set to @code{#t} to
14502 initially wrap lines (the default), or to @code{#f} to initially not
14503 wrap lines.
14504
14505 @item @code{http-auth} (default: @code{#f})
14506 HTTP authentication type to use. Set to @code{#f} to disable
14507 authentication (the default). Supported values are @code{"digest"} or
14508 @code{"basic"}.
14509
14510 @item @code{users} (default: @code{#f})
14511 If HTTP authentication is enabled (see @code{http-auth}), access will be
14512 restricted to the credentials provided here. To configure users, use a
14513 list of pairs, where the first element of the pair is the username, and
14514 the 2nd element of the pair is the password.
14515
14516 @example
14517 (tailon-configuration-file
14518 (http-auth "basic")
14519 (users '(("user1" . "password1")
14520 ("user2" . "password2"))))
14521 @end example
14522
14523 @end table
14524 @end deftp
14525
14526
14527 @node Kerberos Services
14528 @subsubsection Kerberos Services
14529 @cindex Kerberos
14530
14531 The @code{(gnu services kerberos)} module provides services relating to
14532 the authentication protocol @dfn{Kerberos}.
14533
14534 @subsubheading Krb5 Service
14535
14536 Programs using a Kerberos client library normally
14537 expect a configuration file in @file{/etc/krb5.conf}.
14538 This service generates such a file from a definition provided in the
14539 operating system declaration.
14540 It does not cause any daemon to be started.
14541
14542 No ``keytab'' files are provided by this service---you must explicitly create them.
14543 This service is known to work with the MIT client library, @code{mit-krb5}.
14544 Other implementations have not been tested.
14545
14546 @defvr {Scheme Variable} krb5-service-type
14547 A service type for Kerberos 5 clients.
14548 @end defvr
14549
14550 @noindent
14551 Here is an example of its use:
14552 @lisp
14553 (service krb5-service-type
14554 (krb5-configuration
14555 (default-realm "EXAMPLE.COM")
14556 (allow-weak-crypto? #t)
14557 (realms (list
14558 (krb5-realm
14559 (name "EXAMPLE.COM")
14560 (admin-server "groucho.example.com")
14561 (kdc "karl.example.com"))
14562 (krb5-realm
14563 (name "ARGRX.EDU")
14564 (admin-server "kerb-admin.argrx.edu")
14565 (kdc "keys.argrx.edu"))))))
14566 @end lisp
14567
14568 @noindent
14569 This example provides a Kerberos@tie{}5 client configuration which:
14570 @itemize
14571 @item Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both
14572 of which have distinct administration servers and key distribution centers;
14573 @item Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly
14574 specified by clients;
14575 @item Accepts services which only support encryption types known to be weak.
14576 @end itemize
14577
14578 The @code{krb5-realm} and @code{krb5-configuration} types have many fields.
14579 Only the most commonly used ones are described here.
14580 For a full list, and more detailed explanation of each, see the MIT
14581 @uref{http://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf}
14582 documentation.
14583
14584
14585 @deftp {Data Type} krb5-realm
14586 @cindex realm, kerberos
14587 @table @asis
14588 @item @code{name}
14589 This field is a string identifying the name of the realm.
14590 A common convention is to use the fully qualified DNS name of your organization,
14591 converted to upper case.
14592
14593 @item @code{admin-server}
14594 This field is a string identifying the host where the administration server is
14595 running.
14596
14597 @item @code{kdc}
14598 This field is a string identifying the key distribution center
14599 for the realm.
14600 @end table
14601 @end deftp
14602
14603 @deftp {Data Type} krb5-configuration
14604
14605 @table @asis
14606 @item @code{allow-weak-crypto?} (default: @code{#f})
14607 If this flag is @code{#t} then services which only offer encryption algorithms
14608 known to be weak will be accepted.
14609
14610 @item @code{default-realm} (default: @code{#f})
14611 This field should be a string identifying the default Kerberos
14612 realm for the client.
14613 You should set this field to the name of your Kerberos realm.
14614 If this value is @code{#f}
14615 then a realm must be specified with every Kerberos principal when invoking programs
14616 such as @command{kinit}.
14617
14618 @item @code{realms}
14619 This should be a non-empty list of @code{krb5-realm} objects, which clients may
14620 access.
14621 Normally, one of them will have a @code{name} field matching the @code{default-realm}
14622 field.
14623 @end table
14624 @end deftp
14625
14626
14627 @subsubheading PAM krb5 Service
14628 @cindex pam-krb5
14629
14630 The @code{pam-krb5} service allows for login authentication and password
14631 management via Kerberos.
14632 You will need this service if you want PAM enabled applications to authenticate
14633 users using Kerberos.
14634
14635 @defvr {Scheme Variable} pam-krb5-service-type
14636 A service type for the Kerberos 5 PAM module.
14637 @end defvr
14638
14639 @deftp {Data Type} pam-krb5-configuration
14640 Data type representing the configuration of the Kerberos 5 PAM module
14641 This type has the following parameters:
14642 @table @asis
14643 @item @code{pam-krb5} (default: @code{pam-krb5})
14644 The pam-krb5 package to use.
14645
14646 @item @code{minimum-uid} (default: @code{1000})
14647 The smallest user ID for which Kerberos authentications should be attempted.
14648 Local accounts with lower values will silently fail to authenticate.
14649 @end table
14650 @end deftp
14651
14652
14653 @node Web Services
14654 @subsubsection Web Services
14655
14656 @cindex web
14657 @cindex www
14658 @cindex HTTP
14659 The @code{(gnu services web)} module provides the nginx web server and
14660 also a fastcgi wrapper daemon.
14661
14662 @deffn {Scheme Variable} nginx-service-type
14663 Service type for the @uref{https://nginx.org/,NGinx} web server. The
14664 value for this service type is a @code{<nginx-configuration>} record.
14665
14666 A simple example configuration is given below.
14667
14668 @example
14669 (service nginx-service-type
14670 (nginx-configuration
14671 (server-blocks
14672 (list (nginx-server-configuration
14673 (server-name '("www.example.com"))
14674 (root "/srv/http/www.example.com")
14675 (https-port #f)
14676 (ssl-certificate #f)
14677 (ssl-certificate-key #f))))))
14678 @end example
14679
14680 In addition to adding server blocks to the service configuration
14681 directly, this service can be extended by other services to add server
14682 blocks, as in this example:
14683
14684 @example
14685 (simple-service 'my-extra-server nginx-service-type
14686 (list (nginx-server-configuration
14687 (https-port #f)
14688 (ssl-certificate #f)
14689 (ssl-certificate-key #f)
14690 (root "/srv/http/extra-website")
14691 (try-files (list "$uri" "$uri/index.html")))))
14692 @end example
14693 @end deffn
14694
14695 At startup, @command{nginx} has not yet read its configuration file, so
14696 it uses a default file to log error messages. If it fails to load its
14697 configuration file, that is where error messages are logged. After the
14698 configuration file is loaded, the default error log file changes as per
14699 configuration. In our case, startup error messages can be found in
14700 @file{/var/run/nginx/logs/error.log}, and after configuration in
14701 @file{/var/log/nginx/error.log}. The second location can be changed
14702 with the @var{log-directory} configuration option.
14703
14704 @deffn {Data Type} nginx-configuration
14705 This data type represents the configuration for NGinx. Some
14706 configuration can be done through this and the other provided record
14707 types, or alternatively, a config file can be provided.
14708
14709 @table @asis
14710 @item @code{nginx} (default: @code{nginx})
14711 The nginx package to use.
14712
14713 @item @code{log-directory} (default: @code{"/var/log/nginx"})
14714 The directory to which NGinx will write log files.
14715
14716 @item @code{run-directory} (default: @code{"/var/run/nginx"})
14717 The directory in which NGinx will create a pid file, and write temporary
14718 files.
14719
14720 @item @code{server-blocks} (default: @code{'()})
14721 A list of @dfn{server blocks} to create in the generated configuration
14722 file, the elements should be of type
14723 @code{<nginx-server-configuration>}.
14724
14725 The following example would setup NGinx to serve @code{www.example.com}
14726 from the @code{/srv/http/www.example.com} directory, without using
14727 HTTPS.
14728 @example
14729 (service nginx-service-type
14730 (nginx-configuration
14731 (server-blocks
14732 (list (nginx-server-configuration
14733 (server-name '("www.example.com"))
14734 (root "/srv/http/www.example.com")
14735 (https-port #f)
14736 (ssl-certificate #f)
14737 (ssl-certificate-key #f))))))
14738 @end example
14739
14740 @item @code{upstream-blocks} (default: @code{'()})
14741 A list of @dfn{upstream blocks} to create in the generated configuration
14742 file, the elements should be of type
14743 @code{<nginx-upstream-configuration>}.
14744
14745 Configuring upstreams through the @code{upstream-blocks} can be useful
14746 when combined with @code{locations} in the
14747 @code{<nginx-server-configuration>} records. The following example
14748 creates a server configuration with one location configuration, that
14749 will proxy requests to a upstream configuration, which will handle
14750 requests with two servers.
14751
14752 @example
14753 (service
14754 nginx-service-type
14755 (nginx-configuration
14756 (server-blocks
14757 (list (nginx-server-configuration
14758 (server-name '("www.example.com"))
14759 (root "/srv/http/www.example.com")
14760 (https-port #f)
14761 (ssl-certificate #f)
14762 (ssl-certificate-key #f)
14763 (locations
14764 (list
14765 (nginx-location-configuration
14766 (uri "/path1")
14767 (body '("proxy_pass http://server-proxy;"))))))))
14768 (upstream-blocks
14769 (list (nginx-upstream-configuration
14770 (name "server-proxy")
14771 (servers (list "server1.example.com"
14772 "server2.example.com")))))))
14773 @end example
14774
14775 @item @code{file} (default: @code{#f})
14776 If a configuration @var{file} is provided, this will be used, rather than
14777 generating a configuration file from the provided @code{log-directory},
14778 @code{run-directory}, @code{server-blocks} and @code{upstream-blocks}. For
14779 proper operation, these arguments should match what is in @var{file} to ensure
14780 that the directories are created when the service is activated.
14781
14782 This can be useful if you have an existing configuration file, or it's
14783 not possible to do what is required through the other parts of the
14784 nginx-configuration record.
14785
14786 @end table
14787 @end deffn
14788
14789 @deftp {Data Type} nginx-server-configuration
14790 Data type representing the configuration of an nginx server block.
14791 This type has the following parameters:
14792
14793 @table @asis
14794 @item @code{http-port} (default: @code{80})
14795 Nginx will listen for HTTP connection on this port. Set it at @code{#f} if
14796 nginx should not listen for HTTP (non secure) connection for this
14797 @dfn{server block}.
14798
14799 @item @code{https-port} (default: @code{443})
14800 Nginx will listen for HTTPS connection on this port. Set it at @code{#f} if
14801 nginx should not listen for HTTPS (secure) connection for this @dfn{server block}.
14802
14803 Note that nginx can listen for HTTP and HTTPS connections in the same
14804 @dfn{server block}.
14805
14806 @item @code{server-name} (default: @code{(list 'default)})
14807 A list of server names this server represents. @code{'default} represents the
14808 default server for connections matching no other server.
14809
14810 @item @code{root} (default: @code{"/srv/http"})
14811 Root of the website nginx will serve.
14812
14813 @item @code{locations} (default: @code{'()})
14814 A list of @dfn{nginx-location-configuration} or
14815 @dfn{nginx-named-location-configuration} records to use within this
14816 server block.
14817
14818 @item @code{index} (default: @code{(list "index.html")})
14819 Index files to look for when clients ask for a directory. If it cannot be found,
14820 Nginx will send the list of files in the directory.
14821
14822 @item @code{try-files} (default: @code{'()})
14823 A list of files whose existence is checked in the specified order.
14824 @code{nginx} will use the first file it finds to process the request.
14825
14826 @item @code{ssl-certificate} (default: @code{"/etc/nginx/cert.pem"})
14827 Where to find the certificate for secure connections. Set it to @code{#f} if
14828 you don't have a certificate or you don't want to use HTTPS.
14829
14830 @item @code{ssl-certificate-key} (default: @code{"/etc/nginx/key.pem"})
14831 Where to find the private key for secure connections. Set it to @code{#f} if
14832 you don't have a key or you don't want to use HTTPS.
14833
14834 @item @code{server-tokens?} (default: @code{#f})
14835 Whether the server should add its configuration to response.
14836
14837 @end table
14838 @end deftp
14839
14840 @deftp {Data Type} nginx-upstream-configuration
14841 Data type representing the configuration of an nginx @code{upstream}
14842 block. This type has the following parameters:
14843
14844 @table @asis
14845 @item @code{name}
14846 Name for this group of servers.
14847
14848 @item @code{servers}
14849 Specify the addresses of the servers in the group. The address can be
14850 specified as a IP address (e.g. @samp{127.0.0.1}), domain name
14851 (e.g. @samp{backend1.example.com}) or a path to a UNIX socket using the
14852 prefix @samp{unix:}. For addresses using an IP address or domain name,
14853 the default port is 80, and a different port can be specified
14854 explicitly.
14855
14856 @end table
14857 @end deftp
14858
14859 @deftp {Data Type} nginx-location-configuration
14860 Data type representing the configuration of an nginx @code{location}
14861 block. This type has the following parameters:
14862
14863 @table @asis
14864 @item @code{uri}
14865 URI which this location block matches.
14866
14867 @anchor{nginx-location-configuration body}
14868 @item @code{body}
14869 Body of the location block, specified as a string. This can contain many
14870 configuration directives. For example, to pass requests to a upstream
14871 server group defined using an @code{nginx-upstream-configuration} block,
14872 the following directive would be specified in the body @samp{proxy_pass
14873 http://upstream-name;}.
14874
14875 @end table
14876 @end deftp
14877
14878 @deftp {Data Type} nginx-named-location-configuration
14879 Data type representing the configuration of an nginx named location
14880 block. Named location blocks are used for request redirection, and not
14881 used for regular request processing. This type has the following
14882 parameters:
14883
14884 @table @asis
14885 @item @code{name}
14886 Name to identify this location block.
14887
14888 @item @code{body}
14889 @xref{nginx-location-configuration body}, as the body for named location
14890 blocks can be used in a similar way to the
14891 @code{nginx-location-configuration body}. One restriction is that the
14892 body of a named location block cannot contain location blocks.
14893
14894 @end table
14895 @end deftp
14896
14897 @cindex fastcgi
14898 @cindex fcgiwrap
14899 FastCGI is an interface between the front-end and the back-end of a web
14900 service. It is a somewhat legacy facility; new web services should
14901 generally just talk HTTP between the front-end and the back-end.
14902 However there are a number of back-end services such as PHP or the
14903 optimized HTTP Git repository access that use FastCGI, so we have
14904 support for it in Guix.
14905
14906 To use FastCGI, you configure the front-end web server (e.g., nginx) to
14907 dispatch some subset of its requests to the fastcgi backend, which
14908 listens on a local TCP or UNIX socket. There is an intermediary
14909 @code{fcgiwrap} program that sits between the actual backend process and
14910 the web server. The front-end indicates which backend program to run,
14911 passing that information to the @code{fcgiwrap} process.
14912
14913 @defvr {Scheme Variable} fcgiwrap-service-type
14914 A service type for the @code{fcgiwrap} FastCGI proxy.
14915 @end defvr
14916
14917 @deftp {Data Type} fcgiwrap-configuration
14918 Data type representing the configuration of the @code{fcgiwrap} serice.
14919 This type has the following parameters:
14920 @table @asis
14921 @item @code{package} (default: @code{fcgiwrap})
14922 The fcgiwrap package to use.
14923
14924 @item @code{socket} (default: @code{tcp:127.0.0.1:9000})
14925 The socket on which the @code{fcgiwrap} process should listen, as a
14926 string. Valid @var{socket} values include
14927 @code{unix:@var{/path/to/unix/socket}},
14928 @code{tcp:@var{dot.ted.qu.ad}:@var{port}} and
14929 @code{tcp6:[@var{ipv6_addr}]:port}.
14930
14931 @item @code{user} (default: @code{fcgiwrap})
14932 @itemx @code{group} (default: @code{fcgiwrap})
14933 The user and group names, as strings, under which to run the
14934 @code{fcgiwrap} process. The @code{fastcgi} service will ensure that if
14935 the user asks for the specific user or group names @code{fcgiwrap} that
14936 the corresponding user and/or group is present on the system.
14937
14938 It is possible to configure a FastCGI-backed web service to pass HTTP
14939 authentication information from the front-end to the back-end, and to
14940 allow @code{fcgiwrap} to run the back-end process as a corresponding
14941 local user. To enable this capability on the back-end., run
14942 @code{fcgiwrap} as the @code{root} user and group. Note that this
14943 capability also has to be configured on the front-end as well.
14944 @end table
14945 @end deftp
14946
14947
14948 @node DNS Services
14949 @subsubsection DNS Services
14950 @cindex DNS (domain name system)
14951 @cindex domain name system (DNS)
14952
14953 The @code{(gnu services dns)} module provides services related to the
14954 @dfn{domain name system} (DNS). It provides a server service for hosting
14955 an @emph{authoritative} DNS server for multiple zones, slave or master.
14956 This service uses @uref{https://www.knot-dns.cz/, Knot DNS}.
14957
14958 An example configuration of an authoritative server for two zones, one master
14959 and one slave, is:
14960
14961 @lisp
14962 (define-zone-entries example.org.zone
14963 ;; Name TTL Class Type Data
14964 ("@@" "" "IN" "A" "127.0.0.1")
14965 ("@@" "" "IN" "NS" "ns")
14966 ("ns" "" "IN" "A" "127.0.0.1"))
14967
14968 (define master-zone
14969 (knot-zone-configuration
14970 (domain "example.org")
14971 (zone (zone-file
14972 (origin "example.org")
14973 (entries example.org.zone)))))
14974
14975 (define slave-zone
14976 (knot-zone-configuration
14977 (domain "plop.org")
14978 (dnssec-policy "default")
14979 (master (list "plop-master"))))
14980
14981 (define plop-master
14982 (knot-remote-configuration
14983 (id "plop-master")
14984 (address (list "208.76.58.171"))))
14985
14986 (operating-system
14987 ;; ...
14988 (services (cons* (service knot-service-type
14989 (knot-confifguration
14990 (remotes (list plop-master))
14991 (zones (list master-zone slave-zone))))
14992 ;; ...
14993 %base-services)))
14994 @end lisp
14995
14996 @deffn {Scheme Variable} knot-service-type
14997 This is the type for the Knot DNS server.
14998
14999 Knot DNS is an authoritative DNS server, meaning that it can serve multiple
15000 zones, that is to say domain names you would buy from a registrar. This server
15001 is not a resolver, meaning that it can only resolve names for which it is
15002 authoritative. This server can be configured to serve zones as a master server
15003 or a slave server as a per-zone basis. Slave zones will get their data from
15004 masters, and will serve it as an authoritative server. From the point of view
15005 of a resolver, there is no difference between master and slave.
15006
15007 The following data types are used to configure the Knot DNS server:
15008 @end deffn
15009
15010 @deftp {Data Type} knot-key-configuration
15011 Data type representing a key.
15012 This type has the following parameters:
15013
15014 @table @asis
15015 @item @code{id} (default: @code{""})
15016 An identifier for other configuration fields to refer to this key. IDs must
15017 be unique and must not be empty.
15018
15019 @item @code{algorithm} (default: @code{#f})
15020 The algorithm to use. Choose between @code{#f}, @code{'hmac-md5},
15021 @code{'hmac-sha1}, @code{'hmac-sha224}, @code{'hmac-sha256}, @code{'hmac-sha384}
15022 and @code{'hmac-sha512}.
15023
15024 @item @code{secret} (default: @code{""})
15025 The secret key itself.
15026
15027 @end table
15028 @end deftp
15029
15030 @deftp {Data Type} knot-acl-configuration
15031 Data type representing an Access Control List (ACL) configuration.
15032 This type has the following parameters:
15033
15034 @table @asis
15035 @item @code{id} (default: @code{""})
15036 An identifier for ether configuration fields to refer to this key. IDs must be
15037 unique and must not be empty.
15038
15039 @item @code{address} (default: @code{'()})
15040 An ordered list of IP addresses, network subnets, or network ranges represented
15041 with strings. The query must match one of them. Empty value means that
15042 address match is not required.
15043
15044 @item @code{key} (default: @code{'()})
15045 An ordered list of references to keys represented with strings. The string
15046 must match a key ID defined in a @code{knot-key-configuration}. No key means
15047 that a key is not require to match that ACL.
15048
15049 @item @code{action} (default: @code{'()})
15050 An ordered list of actions that are permitted or forbidden by this ACL. Possible
15051 values are lists of zero or more elements from @code{'transfer}, @code{'notify}
15052 and @code{'update}.
15053
15054 @item @code{deny?} (default: @code{#f})
15055 When true, the ACL defines restrictions. Listed actions are forbidden. When
15056 false, listed actions are allowed.
15057
15058 @end table
15059 @end deftp
15060
15061 @deftp {Data Type} zone-entry
15062 Data type represnting a record entry in a zone file.
15063 This type has the following parameters:
15064
15065 @table @asis
15066 @item @code{name} (default: @code{"@@"})
15067 The name of the record. @code{"@@"} refers to the origin of the zone. Names
15068 are relative to the origin of the zone. For example, in the @code{example.org}
15069 zone, @code{"ns.example.org"} actually refers to @code{ns.example.org.example.org}.
15070 Names ending with a dot are absolute, which means that @code{"ns.example.org."}
15071 refers to @code{ns.example.org}.
15072
15073 @item @code{ttl} (default: @code{""})
15074 The Time-To-Live (TTL) of this record. If not set, the default TTL is used.
15075
15076 @item @code{class} (default: @code{"IN"})
15077 The class of the record. Knot currently supports only @code{"IN"} and
15078 partially @code{"CH"}.
15079
15080 @item @code{type} (default: @code{"A"})
15081 The type of the record. Common types include A (IPv4 address), AAAA (IPv6
15082 address), NS (Name Server) and MX (Mail eXchange). Many other types are
15083 defined.
15084
15085 @item @code{data} (default: @code{""})
15086 The data contained in the record. For instance an IP address associated with
15087 an A record, or a domain name associated with an NS record. Remember that
15088 domain names are relative to the origin unless they end with a dot.
15089
15090 @end table
15091 @end deftp
15092
15093 @deftp {Data Type} zone-file
15094 Data type representing the content of a zone file.
15095 This type has the following parameters:
15096
15097 @table @asis
15098 @item @code{entries} (default: @code{'()})
15099 The list of entries. The SOA record is taken care of, so you don't need to
15100 put it in the list of entries. This list should probably contain an entry
15101 for your primary authoritative DNS server. Other than using a list of entries
15102 directly, you can use @code{define-zone-entries} to define a object containing
15103 the list of entries more easily, that you can later pass to the @code{entries}
15104 field of the @code{zone-file}.
15105
15106 @item @code{origin} (default: @code{""})
15107 The name of your zone. This parameter cannot be empty.
15108
15109 @item @code{ns} (default: @code{"ns"})
15110 The domain of your primary authoritative DNS server. The name is relative to
15111 the origin, unless it ends with a dot. It is mandatory that this primary
15112 DNS server corresponds to an NS record in the zone and that it is associated
15113 to an IP address in the list of entries.
15114
15115 @item @code{mail} (default: @code{"hostmaster"})
15116 An email address people can contact you at, as the owner of the zone. This
15117 is translated as @code{<mail>@@<origin>}.
15118
15119 @item @code{serial} (default: @code{1})
15120 The serial number of the zone. As this is used to keep track of changes by
15121 both slaves and resolvers, it is mandatory that it @emph{never} decreases.
15122 Always increment it when you make a change in your zone.
15123
15124 @item @code{refresh} (default: @code{(* 2 24 3600)})
15125 The frequency at which slaves will do a zone transfer. This value is a number
15126 of seconds. It can be computed by multiplications or with
15127 @code{(string->duration)}.
15128
15129 @item @code{retry} (default: @code{(* 15 60)})
15130 The period after which a slave will retry to contact its master when it fails
15131 to do so a first time.
15132
15133 @item @code{expiry} (default: @code{(* 14 24 3600)})
15134 Default TTL of records. Existing records are considered correct for at most
15135 this amount of time. After this period, resolvers will invalidate their cache
15136 and check again that it still exists.
15137
15138 @item @code{nx} (default: @code{3600})
15139 Default TTL of inexistant records. This delay is usually short because you want
15140 your new domains to reach everyone quickly.
15141
15142 @end table
15143 @end deftp
15144
15145 @deftp {Data Type} knot-remote-configuration
15146 Data type representing a remote configuration.
15147 This type has the following parameters:
15148
15149 @table @asis
15150 @item @code{id} (default: @code{""})
15151 An identifier for other configuration fields to refer to this remote. IDs must
15152 be unique and must not be empty.
15153
15154 @item @code{address} (default: @code{'()})
15155 An ordered list of destination IP addresses. Addresses are tried in sequence.
15156 An optional port can be given with the @@ separator. For instance:
15157 @code{(list "1.2.3.4" "2.3.4.5@@53")}. Default port is 53.
15158
15159 @item @code{via} (default: @code{'()})
15160 An ordered list of source IP addresses. An empty list will have Knot choose
15161 an appropriate source IP. An optional port can be given with the @@ separator.
15162 The default is to choose at random.
15163
15164 @item @code{key} (default: @code{#f})
15165 A reference to a key, that is a string containing the identifier of a key
15166 defined in a @code{knot-key-configuration} field.
15167
15168 @end table
15169 @end deftp
15170
15171 @deftp {Data Type} knot-keystore-configuration
15172 Data type representing a keystore to hold dnssec keys.
15173 This type has the following parameters:
15174
15175 @table @asis
15176 @item @code{id} (default: @code{""})
15177 The id of the keystore. It must not be empty.
15178
15179 @item @code{backend} (default: @code{'pem})
15180 The backend to store the keys in. Can be @code{'pem} or @code{'pkcs11}.
15181
15182 @item @code{config} (default: @code{"/var/lib/knot/keys/keys"})
15183 The configuration string of the backend. An example for the PKCS#11 is:
15184 @code{"pkcs11:token=knot;pin-value=1234 /gnu/store/.../lib/pkcs11/libsofthsm2.so"}.
15185 For the pem backend, the string reprensents a path in the filesystem.
15186
15187 @end table
15188 @end deftp
15189
15190 @deftp {Data Type} knot-policy-configuration
15191 Data type representing a dnssec policy. Knot DNS is able to automatically
15192 sign your zones. It can either generate and manage your keys automatically or
15193 use keys that you generate.
15194
15195 Dnssec is usually implemented using two keys: a Key Signing Key (KSK) that is
15196 used to sign the second, and a Zone Signing Key (ZSK) that is used to sign the
15197 zone. In order to be trusted, the KSK needs to be present in the parent zone
15198 (usually a top-level domain). If your registrar supports dnssec, you will
15199 have to send them your KSK's hash so they can add a DS record in their zone.
15200 This is not automated and need to be done each time you change your KSK.
15201
15202 The policy also defines the lifetime of keys. Usually, ZSK can be changed
15203 easily and use weaker cryptographic functions (they use lower parameters) in
15204 order to sign records quickly, so they are changed often. The KSK however
15205 requires manual interaction with the registrar, so they are changed less often
15206 and use stronger parameters because they sign only one record.
15207
15208 This type has the following parameters:
15209
15210 @table @asis
15211 @item @code{id} (default: @code{""})
15212 The id of the policy. It must not be empty.
15213
15214 @item @code{keystore} (default: @code{"default"})
15215 A reference to a keystore, that is a string containing the identifier of a
15216 keystore defined in a @code{knot-keystore-configuration} field. The
15217 @code{"default"} identifier means the default keystore (a kasp database that
15218 was setup by this service).
15219
15220 @item @code{manual?} (default: @code{#f})
15221 Whether the key management is manual or automatic.
15222
15223 @item @code{single-type-signing?} (default: @code{#f})
15224 When @code{#t}, use the Single-Type Signing Scheme.
15225
15226 @item @code{algorithm} (default: @code{"ecdsap256sha256"})
15227 An algorithm of signing keys and issued signatures.
15228
15229 @item @code{ksk-size} (default: @code{256})
15230 The length of the KSK. Note that this value is correct for the default
15231 algorithm, but would be unsecure for other algorithms.
15232
15233 @item @code{zsk-size} (default: @code{256})
15234 The length of the ZSK. Note that this value is correct for the default
15235 algorithm, but would be unsecure for other algorithms.
15236
15237 @item @code{dnskey-ttl} (default: @code{'default})
15238 The TTL value for DNSKEY records added into zone apex. The special
15239 @code{'default} value means same as the zone SOA TTL.
15240
15241 @item @code{zsk-lifetime} (default: @code{(* 30 24 3600)})
15242 The period between ZSK publication and the next rollover initiation.
15243
15244 @item @code{propagation-delay} (default: @code{(* 24 3600)})
15245 An extra delay added for each key rollover step. This value should be high
15246 enough to cover propagation of data from the master server to all slaves.
15247
15248 @item @code{rrsig-lifetime} (default: @code{(* 14 24 3600)})
15249 A validity period of newly issued signatures.
15250
15251 @item @code{rrsig-refresh} (default: @code{(* 7 24 3600)})
15252 A period how long before a signature expiration the signature will be refreshed.
15253
15254 @item @code{nsec3?} (default: @code{#f})
15255 When @code{#t}, NSEC3 will be used instead of NSEC.
15256
15257 @item @code{nsec3-iterations} (default: @code{5})
15258 The number of additional times the hashing is performed.
15259
15260 @item @code{nsec3-salt-length} (default: @code{8})
15261 The length of a salt field in octets, which is appended to the original owner
15262 name before hashing.
15263
15264 @item @code{nsec3-salt-lifetime} (default: @code{(* 30 24 3600)})
15265 The validity period of newly issued salt field.
15266
15267 @end table
15268 @end deftp
15269
15270 @deftp {Data Type} knot-zone-configuration
15271 Data type representing a zone served by Knot.
15272 This type has the following parameters:
15273
15274 @table @asis
15275 @item @code{domain} (default: @code{""})
15276 The domain served by this configuration. It must not be empty.
15277
15278 @item @code{file} (default: @code{""})
15279 The file where this zone is saved. This parameter is ignored by master zones.
15280 Empty means default location that depends on the domain name.
15281
15282 @item @code{zone} (default: @code{(zone-file)})
15283 The content of the zone file. This parameter is ignored by slave zones. It
15284 must contain a zone-file record.
15285
15286 @item @code{master} (default: @code{'()})
15287 A list of master remotes. When empty, this zone is a master. When set, this
15288 zone is a slave. This is a list of remotes identifiers.
15289
15290 @item @code{ddns-master} (default: @code{#f})
15291 The main master. When empty, it defaults to the first master in the list of
15292 masters.
15293
15294 @item @code{notify} (default: @code{'()})
15295 A list of slave remote identifiers.
15296
15297 @item @code{acl} (default: @code{'()})
15298 A list of acl identifiers.
15299
15300 @item @code{semantic-checks?} (default: @code{#f})
15301 When set, this adds more semantic checks to the zone.
15302
15303 @item @code{disable-any?} (default: @code{#f})
15304 When set, this forbids queries of the ANY type.
15305
15306 @item @code{zonefile-sync} (default: @code{0})
15307 The delay between a modification in memory and on disk. 0 means immediate
15308 synchronization.
15309
15310 @item @code{serial-policy} (default: @code{'increment})
15311 A policy between @code{'increment} and @code{'unixtime}.
15312
15313 @end table
15314 @end deftp
15315
15316 @deftp {Data Type} knot-configuration
15317 Data type representing the Knot configuration.
15318 This type has the following parameters:
15319
15320 @table @asis
15321 @item @code{knot} (default: @code{knot})
15322 The Knot package.
15323
15324 @item @code{run-directory} (default: @code{"/var/run/knot"})
15325 The run directory. This directory will be used for pid file and sockets.
15326
15327 @item @code{listen-v4} (default: @code{"0.0.0.0"})
15328 An ip address on which to listen.
15329
15330 @item @code{listen-v6} (default: @code{"::"})
15331 An ip address on which to listen.
15332
15333 @item @code{listen-port} (default: @code{53})
15334 A port on which to listen.
15335
15336 @item @code{keys} (default: @code{'()})
15337 The list of knot-key-configuration used by this configuration.
15338
15339 @item @code{acls} (default: @code{'()})
15340 The list of knot-acl-configuration used by this configuration.
15341
15342 @item @code{remotes} (default: @code{'()})
15343 The list of knot-remote-configuration used by this configuration.
15344
15345 @item @code{zones} (default: @code{'()})
15346 The list of knot-zone-configuration used by this configuration.
15347
15348 @end table
15349 @end deftp
15350
15351 @node VPN Services
15352 @subsubsection VPN Services
15353 @cindex VPN (virtual private network)
15354 @cindex virtual private network (VPN)
15355
15356 The @code{(gnu services vpn)} module provides services related to
15357 @dfn{virtual private networks} (VPNs). It provides a @emph{client} service for
15358 your machine to connect to a VPN, and a @emph{servire} service for your machine
15359 to host a VPN. Both services use @uref{https://openvpn.net/, OpenVPN}.
15360
15361 @deffn {Scheme Procedure} openvpn-client-service @
15362 [#:config (openvpn-client-configuration)]
15363
15364 Return a service that runs @command{openvpn}, a VPN daemon, as a client.
15365 @end deffn
15366
15367 @deffn {Scheme Procedure} openvpn-server-service @
15368 [#:config (openvpn-server-configuration)]
15369
15370 Return a service that runs @command{openvpn}, a VPN daemon, as a server.
15371
15372 Both can be run simultaneously.
15373 @end deffn
15374
15375 @c %automatically generated documentation
15376
15377 Available @code{openvpn-client-configuration} fields are:
15378
15379 @deftypevr {@code{openvpn-client-configuration} parameter} package openvpn
15380 The OpenVPN package.
15381
15382 @end deftypevr
15383
15384 @deftypevr {@code{openvpn-client-configuration} parameter} string pid-file
15385 The OpenVPN pid file.
15386
15387 Defaults to @samp{"/var/run/openvpn/openvpn.pid"}.
15388
15389 @end deftypevr
15390
15391 @deftypevr {@code{openvpn-client-configuration} parameter} proto proto
15392 The protocol (UDP or TCP) used to open a channel between clients and
15393 servers.
15394
15395 Defaults to @samp{udp}.
15396
15397 @end deftypevr
15398
15399 @deftypevr {@code{openvpn-client-configuration} parameter} dev dev
15400 The device type used to represent the VPN connection.
15401
15402 Defaults to @samp{tun}.
15403
15404 @end deftypevr
15405
15406 @deftypevr {@code{openvpn-client-configuration} parameter} string ca
15407 The certificate authority to check connections against.
15408
15409 Defaults to @samp{"/etc/openvpn/ca.crt"}.
15410
15411 @end deftypevr
15412
15413 @deftypevr {@code{openvpn-client-configuration} parameter} string cert
15414 The certificate of the machine the daemon is running on. It should be
15415 signed by the authority given in @code{ca}.
15416
15417 Defaults to @samp{"/etc/openvpn/client.crt"}.
15418
15419 @end deftypevr
15420
15421 @deftypevr {@code{openvpn-client-configuration} parameter} string key
15422 The key of the machine the daemon is running on. It must be the key whose
15423 certificate is @code{cert}.
15424
15425 Defaults to @samp{"/etc/openvpn/client.key"}.
15426
15427 @end deftypevr
15428
15429 @deftypevr {@code{openvpn-client-configuration} parameter} boolean comp-lzo?
15430 Whether to use the lzo compression algorithm.
15431
15432 Defaults to @samp{#t}.
15433
15434 @end deftypevr
15435
15436 @deftypevr {@code{openvpn-client-configuration} parameter} boolean persist-key?
15437 Don't re-read key files across SIGUSR1 or --ping-restart.
15438
15439 Defaults to @samp{#t}.
15440
15441 @end deftypevr
15442
15443 @deftypevr {@code{openvpn-client-configuration} parameter} boolean persist-tun?
15444 Don't close and reopen TUN/TAP device or run up/down scripts across
15445 SIGUSR1 or --ping-restart restarts.
15446
15447 Defaults to @samp{#t}.
15448
15449 @end deftypevr
15450
15451 @deftypevr {@code{openvpn-client-configuration} parameter} number verbosity
15452 Verbosity level.
15453
15454 Defaults to @samp{3}.
15455
15456 @end deftypevr
15457
15458 @deftypevr {@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth
15459 Add an additional layer of HMAC authentication on top of the TLS control
15460 channel to protect against DoS attacks.
15461
15462 Defaults to @samp{#f}.
15463
15464 @end deftypevr
15465
15466 @deftypevr {@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?
15467 Whether to check the server certificate has server usage extension.
15468
15469 Defaults to @samp{#t}.
15470
15471 @end deftypevr
15472
15473 @deftypevr {@code{openvpn-client-configuration} parameter} bind bind?
15474 Bind to a specific local port number.
15475
15476 Defaults to @samp{#f}.
15477
15478 @end deftypevr
15479
15480 @deftypevr {@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?
15481 Retry resolving server address.
15482
15483 Defaults to @samp{#t}.
15484
15485 @end deftypevr
15486
15487 @deftypevr {@code{openvpn-client-configuration} parameter} openvpn-remote-list remote
15488 A list of remote servers to connect to.
15489
15490 Defaults to @samp{()}.
15491
15492 Available @code{openvpn-remote-configuration} fields are:
15493
15494 @deftypevr {@code{openvpn-remote-configuration} parameter} string name
15495 Server name.
15496
15497 Defaults to @samp{"my-server"}.
15498
15499 @end deftypevr
15500
15501 @deftypevr {@code{openvpn-remote-configuration} parameter} number port
15502 Port number the server listens to.
15503
15504 Defaults to @samp{1194}.
15505
15506 @end deftypevr
15507
15508 @end deftypevr
15509 @c %end of automatic openvpn-client documentation
15510
15511 @c %automatically generated documentation
15512
15513 Available @code{openvpn-server-configuration} fields are:
15514
15515 @deftypevr {@code{openvpn-server-configuration} parameter} package openvpn
15516 The OpenVPN package.
15517
15518 @end deftypevr
15519
15520 @deftypevr {@code{openvpn-server-configuration} parameter} string pid-file
15521 The OpenVPN pid file.
15522
15523 Defaults to @samp{"/var/run/openvpn/openvpn.pid"}.
15524
15525 @end deftypevr
15526
15527 @deftypevr {@code{openvpn-server-configuration} parameter} proto proto
15528 The protocol (UDP or TCP) used to open a channel between clients and
15529 servers.
15530
15531 Defaults to @samp{udp}.
15532
15533 @end deftypevr
15534
15535 @deftypevr {@code{openvpn-server-configuration} parameter} dev dev
15536 The device type used to represent the VPN connection.
15537
15538 Defaults to @samp{tun}.
15539
15540 @end deftypevr
15541
15542 @deftypevr {@code{openvpn-server-configuration} parameter} string ca
15543 The certificate authority to check connections against.
15544
15545 Defaults to @samp{"/etc/openvpn/ca.crt"}.
15546
15547 @end deftypevr
15548
15549 @deftypevr {@code{openvpn-server-configuration} parameter} string cert
15550 The certificate of the machine the daemon is running on. It should be
15551 signed by the authority given in @code{ca}.
15552
15553 Defaults to @samp{"/etc/openvpn/client.crt"}.
15554
15555 @end deftypevr
15556
15557 @deftypevr {@code{openvpn-server-configuration} parameter} string key
15558 The key of the machine the daemon is running on. It must be the key whose
15559 certificate is @code{cert}.
15560
15561 Defaults to @samp{"/etc/openvpn/client.key"}.
15562
15563 @end deftypevr
15564
15565 @deftypevr {@code{openvpn-server-configuration} parameter} boolean comp-lzo?
15566 Whether to use the lzo compression algorithm.
15567
15568 Defaults to @samp{#t}.
15569
15570 @end deftypevr
15571
15572 @deftypevr {@code{openvpn-server-configuration} parameter} boolean persist-key?
15573 Don't re-read key files across SIGUSR1 or --ping-restart.
15574
15575 Defaults to @samp{#t}.
15576
15577 @end deftypevr
15578
15579 @deftypevr {@code{openvpn-server-configuration} parameter} boolean persist-tun?
15580 Don't close and reopen TUN/TAP device or run up/down scripts across
15581 SIGUSR1 or --ping-restart restarts.
15582
15583 Defaults to @samp{#t}.
15584
15585 @end deftypevr
15586
15587 @deftypevr {@code{openvpn-server-configuration} parameter} number verbosity
15588 Verbosity level.
15589
15590 Defaults to @samp{3}.
15591
15592 @end deftypevr
15593
15594 @deftypevr {@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth
15595 Add an additional layer of HMAC authentication on top of the TLS control
15596 channel to protect against DoS attacks.
15597
15598 Defaults to @samp{#f}.
15599
15600 @end deftypevr
15601
15602 @deftypevr {@code{openvpn-server-configuration} parameter} number port
15603 Specifies the port number on which the server listens.
15604
15605 Defaults to @samp{1194}.
15606
15607 @end deftypevr
15608
15609 @deftypevr {@code{openvpn-server-configuration} parameter} ip-mask server
15610 An ip and mask specifying the subnet inside the virtual network.
15611
15612 Defaults to @samp{"10.8.0.0 255.255.255.0"}.
15613
15614 @end deftypevr
15615
15616 @deftypevr {@code{openvpn-server-configuration} parameter} cidr6 server-ipv6
15617 A CIDR notation specifying the IPv6 subnet inside the virtual network.
15618
15619 Defaults to @samp{#f}.
15620
15621 @end deftypevr
15622
15623 @deftypevr {@code{openvpn-server-configuration} parameter} string dh
15624 The Diffie-Hellman parameters file.
15625
15626 Defaults to @samp{"/etc/openvpn/dh2048.pem"}.
15627
15628 @end deftypevr
15629
15630 @deftypevr {@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist
15631 The file that records client IPs.
15632
15633 Defaults to @samp{"/etc/openvpn/ipp.txt"}.
15634
15635 @end deftypevr
15636
15637 @deftypevr {@code{openvpn-server-configuration} parameter} gateway redirect-gateway?
15638 When true, the server will act as a gateway for its clients.
15639
15640 Defaults to @samp{#f}.
15641
15642 @end deftypevr
15643
15644 @deftypevr {@code{openvpn-server-configuration} parameter} boolean client-to-client?
15645 When true, clients are allowed to talk to each other inside the VPN.
15646
15647 Defaults to @samp{#f}.
15648
15649 @end deftypevr
15650
15651 @deftypevr {@code{openvpn-server-configuration} parameter} keepalive keepalive
15652 Causes ping-like messages to be sent back and forth over the link so
15653 that each side knows when the other side has gone down. @code{keepalive}
15654 requires a pair. The first element is the period of the ping sending,
15655 and the second element is the timeout before considering the other side
15656 down.
15657
15658 @end deftypevr
15659
15660 @deftypevr {@code{openvpn-server-configuration} parameter} number max-clients
15661 The maximum number of clients.
15662
15663 Defaults to @samp{100}.
15664
15665 @end deftypevr
15666
15667 @deftypevr {@code{openvpn-server-configuration} parameter} string status
15668 The status file. This file shows a small report on current connection.
15669 It is truncated and rewritten every minute.
15670
15671 Defaults to @samp{"/var/run/openvpn/status"}.
15672
15673 @end deftypevr
15674
15675 @deftypevr {@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir
15676 The list of configuration for some clients.
15677
15678 Defaults to @samp{()}.
15679
15680 Available @code{openvpn-ccd-configuration} fields are:
15681
15682 @deftypevr {@code{openvpn-ccd-configuration} parameter} string name
15683 Client name.
15684
15685 Defaults to @samp{"client"}.
15686
15687 @end deftypevr
15688
15689 @deftypevr {@code{openvpn-ccd-configuration} parameter} ip-mask iroute
15690 Client own network
15691
15692 Defaults to @samp{#f}.
15693
15694 @end deftypevr
15695
15696 @deftypevr {@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push
15697 Client VPN IP.
15698
15699 Defaults to @samp{#f}.
15700
15701 @end deftypevr
15702
15703 @end deftypevr
15704
15705
15706 @c %end of automatic openvpn-server documentation
15707
15708
15709 @node Network File System
15710 @subsubsection Network File System
15711 @cindex NFS
15712
15713 The @code{(gnu services nfs)} module provides the following services,
15714 which are most commonly used in relation to mounting or exporting
15715 directory trees as @dfn{network file systems} (NFS).
15716
15717 @subsubheading RPC Bind Service
15718 @cindex rpcbind
15719
15720 The RPC Bind service provides a facility to map program numbers into
15721 universal addresses.
15722 Many NFS related services use this facility. Hence it is automatically
15723 started when a dependent service starts.
15724
15725 @defvr {Scheme Variable} rpcbind-service-type
15726 A service type for the RPC portmapper daemon.
15727 @end defvr
15728
15729
15730 @deftp {Data Type} rpcbind-configuration
15731 Data type representing the configuration of the RPC Bind Service.
15732 This type has the following parameters:
15733 @table @asis
15734 @item @code{rpcbind} (default: @code{rpcbind})
15735 The rpcbind package to use.
15736
15737 @item @code{warm-start?} (default: @code{#t})
15738 If this parameter is @code{#t}, then the daemon will read a
15739 state file on startup thus reloading state information saved by a previous
15740 instance.
15741 @end table
15742 @end deftp
15743
15744
15745 @subsubheading Pipefs Pseudo File System
15746 @cindex pipefs
15747 @cindex rpc_pipefs
15748
15749 The pipefs file system is used to transfer NFS related data
15750 between the kernel and user space programs.
15751
15752 @defvr {Scheme Variable} pipefs-service-type
15753 A service type for the pipefs pseudo file system.
15754 @end defvr
15755
15756 @deftp {Data Type} pipefs-configuration
15757 Data type representing the configuration of the pipefs pseudo file system service.
15758 This type has the following parameters:
15759 @table @asis
15760 @item @code{mount-point} (default: @code{"/var/lib/nfs/rpc_pipefs"})
15761 The directory to which the file system is to be attached.
15762 @end table
15763 @end deftp
15764
15765
15766 @subsubheading GSS Daemon Service
15767 @cindex GSSD
15768 @cindex GSS
15769 @cindex global security system
15770
15771 The @dfn{global security system} (GSS) daemon provides strong security for RPC
15772 based protocols.
15773 Before exchanging RPC requests an RPC client must establish a security
15774 context. Typically this is done using the Kerberos command @command{kinit}
15775 or automatically at login time using PAM services (@pxref{Kerberos Services}).
15776
15777 @defvr {Scheme Variable} gss-service-type
15778 A service type for the Global Security System (GSS) daemon.
15779 @end defvr
15780
15781 @deftp {Data Type} gss-configuration
15782 Data type representing the configuration of the GSS daemon service.
15783 This type has the following parameters:
15784 @table @asis
15785 @item @code{nfs-utils} (default: @code{nfs-utils})
15786 The package in which the @command{rpc.gssd} command is to be found.
15787
15788 @item @code{pipefs-directory} (default: @code{"/var/lib/nfs/rpc_pipefs"})
15789 The directory where the pipefs file system is mounted.
15790
15791 @end table
15792 @end deftp
15793
15794
15795 @subsubheading IDMAP Daemon Service
15796 @cindex idmapd
15797 @cindex name mapper
15798
15799 The idmap daemon service provides mapping between user IDs and user names.
15800 Typically it is required in order to access file systems mounted via NFSv4.
15801
15802 @defvr {Scheme Variable} idmap-service-type
15803 A service type for the Identity Mapper (IDMAP) daemon.
15804 @end defvr
15805
15806 @deftp {Data Type} idmap-configuration
15807 Data type representing the configuration of the IDMAP daemon service.
15808 This type has the following parameters:
15809 @table @asis
15810 @item @code{nfs-utils} (default: @code{nfs-utils})
15811 The package in which the @command{rpc.idmapd} command is to be found.
15812
15813 @item @code{pipefs-directory} (default: @code{"/var/lib/nfs/rpc_pipefs"})
15814 The directory where the pipefs file system is mounted.
15815
15816 @item @code{domain} (default: @code{#f})
15817 The local NFSv4 domain name.
15818 This must be a string or @code{#f}.
15819 If it is @code{#f} then the daemon will use the host's fully qualified domain name.
15820
15821 @end table
15822 @end deftp
15823
15824 @node Continuous Integration
15825 @subsubsection Continuous Integration
15826
15827 @cindex continuous integration
15828 @uref{https://notabug.org/mthl/cuirass, Cuirass} is a continuous
15829 integration tool for Guix. It can be used both for development and for
15830 providing substitutes to others (@pxref{Substitutes}).
15831
15832 The @code{(gnu services cuirass)} module provides the following service.
15833
15834 @defvr {Scheme Procedure} cuirass-service-type
15835 The type of the Cuirass service. Its value must be a
15836 @code{cuirass-configuration} object, as described below.
15837 @end defvr
15838
15839 To add build jobs, you have to set the @code{specifications} field of
15840 the configuration. Here is an example of a service defining a build job
15841 based on a specification that can be found in Cuirass source tree. This
15842 service polls the Guix repository and builds a subset of the Guix
15843 packages, as prescribed in the @file{gnu-system.scm} example spec:
15844
15845 @example
15846 (let ((spec #~((#:name . "guix")
15847 (#:url . "git://git.savannah.gnu.org/guix.git")
15848 (#:load-path . ".")
15849 (#:file . "build-aux/cuirass/gnu-system.scm")
15850 (#:proc . cuirass-jobs)
15851 (#:arguments (subset . "hello"))
15852 (#:branch . "master"))))
15853 (service cuirass-service-type
15854 (cuirass-configuration
15855 (specifications #~(list '#$spec)))))
15856 @end example
15857
15858 While information related to build jobs is located directly in the
15859 specifications, global settings for the @command{cuirass} process are
15860 accessible in other @code{cuirass-configuration} fields.
15861
15862 @deftp {Data Type} cuirass-configuration
15863 Data type representing the configuration of Cuirass.
15864
15865 @table @asis
15866 @item @code{log-file} (default: @code{"/var/log/cuirass.log"})
15867 Location of the log file.
15868
15869 @item @code{cache-directory} (default: @code{"/var/cache/cuirass"})
15870 Location of the repository cache.
15871
15872 @item @code{user} (default: @code{"cuirass"})
15873 Owner of the @code{cuirass} process.
15874
15875 @item @code{group} (default: @code{"cuirass"})
15876 Owner's group of the @code{cuirass} process.
15877
15878 @item @code{interval} (default: @code{60})
15879 Number of seconds between the poll of the repositories followed by the
15880 Cuirass jobs.
15881
15882 @item @code{database} (default: @code{"/var/run/cuirass/cuirass.db"})
15883 Location of sqlite database which contains the build results and previously
15884 added specifications.
15885
15886 @item @code{port} (default: @code{8081})
15887 Port number used by the HTTP server.
15888
15889 @item --listen=@var{host}
15890 Listen on the network interface for @var{host}. The default is to
15891 accept connections from localhost.
15892
15893 @item @code{specifications} (default: @code{#~'()})
15894 A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications,
15895 where a specification is an association list
15896 (@pxref{Associations Lists,,, guile, GNU Guile Reference Manual}) whose
15897 keys are keywords (@code{#:keyword-example}) as shown in the example
15898 above.
15899
15900 @item @code{use-substitutes?} (default: @code{#f})
15901 This allows using substitutes to avoid building every dependencies of a job
15902 from source.
15903
15904 @item @code{one-shot?} (default: @code{#f})
15905 Only evaluate specifications and build derivations once.
15906
15907 @item @code{fallback?} (default: @code{#f})
15908 When substituting a pre-built binary fails, fall back to building
15909 packages locally.
15910
15911 @item @code{load-path} (default: @code{'()})
15912 This allows users to define their own packages and make them visible to
15913 cuirass as in @command{guix build} command.
15914
15915 @item @code{cuirass} (default: @code{cuirass})
15916 The Cuirass package to use.
15917 @end table
15918 @end deftp
15919
15920 @node Power management Services
15921 @subsubsection Power management Services
15922
15923 @cindex power management with TLP
15924 The @code{(gnu services pm)} module provides a Guix service definition
15925 for the Linux power management tool TLP.
15926
15927 TLP enables various powersaving modes in userspace and kernel.
15928 Contrary to @code{upower-service}, it is not a passive,
15929 monitoring tool, as it will apply custom settings each time a new power
15930 source is detected. More information can be found at
15931 @uref{http://linrunner.de/en/tlp/tlp.html, TLP home page}.
15932
15933 @deffn {Scheme Variable} tlp-service-type
15934 The service type for the TLP tool. Its value should be a valid
15935 TLP configuration (see below). To use the default settings, simply
15936 write:
15937 @example
15938 (service tlp-service-type)
15939 @end example
15940 @end deffn
15941
15942 By default TLP does not need much configuration but most TLP parameters
15943 can be tweaked using @code{tlp-configuration}.
15944
15945 Each parameter definition is preceded by its type; for example,
15946 @samp{boolean foo} indicates that the @code{foo} parameter
15947 should be specified as a boolean. Types starting with
15948 @code{maybe-} denote parameters that won't show up in TLP config file
15949 when their value is @code{'disabled}.
15950
15951 @c The following documentation was initially generated by
15952 @c (generate-tlp-documentation) in (gnu services pm). Manually maintained
15953 @c documentation is better, so we shouldn't hesitate to edit below as
15954 @c needed. However if the change you want to make to this documentation
15955 @c can be done in an automated way, it's probably easier to change
15956 @c (generate-documentation) than to make it below and have to deal with
15957 @c the churn as TLP updates.
15958
15959 Available @code{tlp-configuration} fields are:
15960
15961 @deftypevr {@code{tlp-configuration} parameter} package tlp
15962 The TLP package.
15963
15964 @end deftypevr
15965
15966 @deftypevr {@code{tlp-configuration} parameter} boolean tlp-enable?
15967 Set to true if you wish to enable TLP.
15968
15969 Defaults to @samp{#t}.
15970
15971 @end deftypevr
15972
15973 @deftypevr {@code{tlp-configuration} parameter} string tlp-default-mode
15974 Default mode when no power supply can be detected. Alternatives are AC
15975 and BAT.
15976
15977 Defaults to @samp{"AC"}.
15978
15979 @end deftypevr
15980
15981 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac
15982 Number of seconds Linux kernel has to wait after the disk goes idle,
15983 before syncing on AC.
15984
15985 Defaults to @samp{0}.
15986
15987 @end deftypevr
15988
15989 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat
15990 Same as @code{disk-idle-ac} but on BAT mode.
15991
15992 Defaults to @samp{2}.
15993
15994 @end deftypevr
15995
15996 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac
15997 Dirty pages flushing periodicity, expressed in seconds.
15998
15999 Defaults to @samp{15}.
16000
16001 @end deftypevr
16002
16003 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat
16004 Same as @code{max-lost-work-secs-on-ac} but on BAT mode.
16005
16006 Defaults to @samp{60}.
16007
16008 @end deftypevr
16009
16010 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac
16011 CPU frequency scaling governor on AC mode. With intel_pstate driver,
16012 alternatives are powersave and performance. With acpi-cpufreq driver,
16013 alternatives are ondemand, powersave, performance and conservative.
16014
16015 Defaults to @samp{disabled}.
16016
16017 @end deftypevr
16018
16019 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat
16020 Same as @code{cpu-scaling-governor-on-ac} but on BAT mode.
16021
16022 Defaults to @samp{disabled}.
16023
16024 @end deftypevr
16025
16026 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac
16027 Set the min available frequency for the scaling governor on AC.
16028
16029 Defaults to @samp{disabled}.
16030
16031 @end deftypevr
16032
16033 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac
16034 Set the max available frequency for the scaling governor on AC.
16035
16036 Defaults to @samp{disabled}.
16037
16038 @end deftypevr
16039
16040 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat
16041 Set the min available frequency for the scaling governor on BAT.
16042
16043 Defaults to @samp{disabled}.
16044
16045 @end deftypevr
16046
16047 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat
16048 Set the max available frequency for the scaling governor on BAT.
16049
16050 Defaults to @samp{disabled}.
16051
16052 @end deftypevr
16053
16054 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac
16055 Limit the min P-state to control the power dissipation of the CPU, in AC
16056 mode. Values are stated as a percentage of the available performance.
16057
16058 Defaults to @samp{disabled}.
16059
16060 @end deftypevr
16061
16062 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac
16063 Limit the max P-state to control the power dissipation of the CPU, in AC
16064 mode. Values are stated as a percentage of the available performance.
16065
16066 Defaults to @samp{disabled}.
16067
16068 @end deftypevr
16069
16070 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat
16071 Same as @code{cpu-min-perf-on-ac} on BAT mode.
16072
16073 Defaults to @samp{disabled}.
16074
16075 @end deftypevr
16076
16077 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat
16078 Same as @code{cpu-max-perf-on-ac} on BAT mode.
16079
16080 Defaults to @samp{disabled}.
16081
16082 @end deftypevr
16083
16084 @deftypevr {@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?
16085 Enable CPU turbo boost feature on AC mode.
16086
16087 Defaults to @samp{disabled}.
16088
16089 @end deftypevr
16090
16091 @deftypevr {@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?
16092 Same as @code{cpu-boost-on-ac?} on BAT mode.
16093
16094 Defaults to @samp{disabled}.
16095
16096 @end deftypevr
16097
16098 @deftypevr {@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?
16099 Allow Linux kernel to minimize the number of CPU cores/hyper-threads
16100 used under light load conditions.
16101
16102 Defaults to @samp{#f}.
16103
16104 @end deftypevr
16105
16106 @deftypevr {@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?
16107 Same as @code{sched-powersave-on-ac?} but on BAT mode.
16108
16109 Defaults to @samp{#t}.
16110
16111 @end deftypevr
16112
16113 @deftypevr {@code{tlp-configuration} parameter} boolean nmi-watchdog?
16114 Enable Linux kernel NMI watchdog.
16115
16116 Defaults to @samp{#f}.
16117
16118 @end deftypevr
16119
16120 @deftypevr {@code{tlp-configuration} parameter} maybe-string phc-controls
16121 For Linux kernels with PHC patch applied, change CPU voltages. An
16122 example value would be @samp{"F:V F:V F:V F:V"}.
16123
16124 Defaults to @samp{disabled}.
16125
16126 @end deftypevr
16127
16128 @deftypevr {@code{tlp-configuration} parameter} string energy-perf-policy-on-ac
16129 Set CPU performance versus energy saving policy on AC. Alternatives are
16130 performance, normal, powersave.
16131
16132 Defaults to @samp{"performance"}.
16133
16134 @end deftypevr
16135
16136 @deftypevr {@code{tlp-configuration} parameter} string energy-perf-policy-on-bat
16137 Same as @code{energy-perf-policy-ac} but on BAT mode.
16138
16139 Defaults to @samp{"powersave"}.
16140
16141 @end deftypevr
16142
16143 @deftypevr {@code{tlp-configuration} parameter} space-separated-string-list disks-devices
16144 Hard disk devices.
16145
16146 @end deftypevr
16147
16148 @deftypevr {@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac
16149 Hard disk advanced power management level.
16150
16151 @end deftypevr
16152
16153 @deftypevr {@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat
16154 Same as @code{disk-apm-bat} but on BAT mode.
16155
16156 @end deftypevr
16157
16158 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac
16159 Hard disk spin down timeout. One value has to be specified for each
16160 declared hard disk.
16161
16162 Defaults to @samp{disabled}.
16163
16164 @end deftypevr
16165
16166 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat
16167 Same as @code{disk-spindown-timeout-on-ac} but on BAT mode.
16168
16169 Defaults to @samp{disabled}.
16170
16171 @end deftypevr
16172
16173 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched
16174 Select IO scheduler for disk devices. One value has to be specified for
16175 each declared hard disk. Example alternatives are cfq, deadline and
16176 noop.
16177
16178 Defaults to @samp{disabled}.
16179
16180 @end deftypevr
16181
16182 @deftypevr {@code{tlp-configuration} parameter} string sata-linkpwr-on-ac
16183 SATA aggressive link power management (ALPM) level. Alternatives are
16184 min_power, medium_power, max_performance.
16185
16186 Defaults to @samp{"max_performance"}.
16187
16188 @end deftypevr
16189
16190 @deftypevr {@code{tlp-configuration} parameter} string sata-linkpwr-on-bat
16191 Same as @code{sata-linkpwr-ac} but on BAT mode.
16192
16193 Defaults to @samp{"min_power"}.
16194
16195 @end deftypevr
16196
16197 @deftypevr {@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist
16198 Exclude specified SATA host devices for link power management.
16199
16200 Defaults to @samp{disabled}.
16201
16202 @end deftypevr
16203
16204 @deftypevr {@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?
16205 Enable Runtime Power Management for AHCI controller and disks on AC
16206 mode.
16207
16208 Defaults to @samp{disabled}.
16209
16210 @end deftypevr
16211
16212 @deftypevr {@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?
16213 Same as @code{ahci-runtime-pm-on-ac} on BAT mode.
16214
16215 Defaults to @samp{disabled}.
16216
16217 @end deftypevr
16218
16219 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout
16220 Seconds of inactivity before disk is suspended.
16221
16222 Defaults to @samp{15}.
16223
16224 @end deftypevr
16225
16226 @deftypevr {@code{tlp-configuration} parameter} string pcie-aspm-on-ac
16227 PCI Express Active State Power Management level. Alternatives are
16228 default, performance, powersave.
16229
16230 Defaults to @samp{"performance"}.
16231
16232 @end deftypevr
16233
16234 @deftypevr {@code{tlp-configuration} parameter} string pcie-aspm-on-bat
16235 Same as @code{pcie-aspm-ac} but on BAT mode.
16236
16237 Defaults to @samp{"powersave"}.
16238
16239 @end deftypevr
16240
16241 @deftypevr {@code{tlp-configuration} parameter} string radeon-power-profile-on-ac
16242 Radeon graphics clock speed level. Alternatives are low, mid, high,
16243 auto, default.
16244
16245 Defaults to @samp{"high"}.
16246
16247 @end deftypevr
16248
16249 @deftypevr {@code{tlp-configuration} parameter} string radeon-power-profile-on-bat
16250 Same as @code{radeon-power-ac} but on BAT mode.
16251
16252 Defaults to @samp{"low"}.
16253
16254 @end deftypevr
16255
16256 @deftypevr {@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac
16257 Radeon dynamic power management method (DPM). Alternatives are battery,
16258 performance.
16259
16260 Defaults to @samp{"performance"}.
16261
16262 @end deftypevr
16263
16264 @deftypevr {@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat
16265 Same as @code{radeon-dpm-state-ac} but on BAT mode.
16266
16267 Defaults to @samp{"battery"}.
16268
16269 @end deftypevr
16270
16271 @deftypevr {@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac
16272 Radeon DPM performance level. Alternatives are auto, low, high.
16273
16274 Defaults to @samp{"auto"}.
16275
16276 @end deftypevr
16277
16278 @deftypevr {@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat
16279 Same as @code{radeon-dpm-perf-ac} but on BAT mode.
16280
16281 Defaults to @samp{"auto"}.
16282
16283 @end deftypevr
16284
16285 @deftypevr {@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?
16286 Wifi power saving mode.
16287
16288 Defaults to @samp{#f}.
16289
16290 @end deftypevr
16291
16292 @deftypevr {@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?
16293 Same as @code{wifi-power-ac?} but on BAT mode.
16294
16295 Defaults to @samp{#t}.
16296
16297 @end deftypevr
16298
16299 @deftypevr {@code{tlp-configuration} parameter} y-n-boolean wol-disable?
16300 Disable wake on LAN.
16301
16302 Defaults to @samp{#t}.
16303
16304 @end deftypevr
16305
16306 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac
16307 Timeout duration in seconds before activating audio power saving on
16308 Intel HDA and AC97 devices. A value of 0 disables power saving.
16309
16310 Defaults to @samp{0}.
16311
16312 @end deftypevr
16313
16314 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat
16315 Same as @code{sound-powersave-ac} but on BAT mode.
16316
16317 Defaults to @samp{1}.
16318
16319 @end deftypevr
16320
16321 @deftypevr {@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?
16322 Disable controller in powersaving mode on Intel HDA devices.
16323
16324 Defaults to @samp{#t}.
16325
16326 @end deftypevr
16327
16328 @deftypevr {@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?
16329 Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be
16330 powered on again by releasing (and reinserting) the eject lever or by
16331 pressing the disc eject button on newer models.
16332
16333 Defaults to @samp{#f}.
16334
16335 @end deftypevr
16336
16337 @deftypevr {@code{tlp-configuration} parameter} string bay-device
16338 Name of the optical drive device to power off.
16339
16340 Defaults to @samp{"sr0"}.
16341
16342 @end deftypevr
16343
16344 @deftypevr {@code{tlp-configuration} parameter} string runtime-pm-on-ac
16345 Runtime Power Management for PCI(e) bus devices. Alternatives are on
16346 and auto.
16347
16348 Defaults to @samp{"on"}.
16349
16350 @end deftypevr
16351
16352 @deftypevr {@code{tlp-configuration} parameter} string runtime-pm-on-bat
16353 Same as @code{runtime-pm-ac} but on BAT mode.
16354
16355 Defaults to @samp{"auto"}.
16356
16357 @end deftypevr
16358
16359 @deftypevr {@code{tlp-configuration} parameter} boolean runtime-pm-all?
16360 Runtime Power Management for all PCI(e) bus devices, except blacklisted
16361 ones.
16362
16363 Defaults to @samp{#t}.
16364
16365 @end deftypevr
16366
16367 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist
16368 Exclude specified PCI(e) device addresses from Runtime Power Management.
16369
16370 Defaults to @samp{disabled}.
16371
16372 @end deftypevr
16373
16374 @deftypevr {@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist
16375 Exclude PCI(e) devices assigned to the specified drivers from Runtime
16376 Power Management.
16377
16378 @end deftypevr
16379
16380 @deftypevr {@code{tlp-configuration} parameter} boolean usb-autosuspend?
16381 Enable USB autosuspend feature.
16382
16383 Defaults to @samp{#t}.
16384
16385 @end deftypevr
16386
16387 @deftypevr {@code{tlp-configuration} parameter} maybe-string usb-blacklist
16388 Exclude specified devices from USB autosuspend.
16389
16390 Defaults to @samp{disabled}.
16391
16392 @end deftypevr
16393
16394 @deftypevr {@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?
16395 Exclude WWAN devices from USB autosuspend.
16396
16397 Defaults to @samp{#t}.
16398
16399 @end deftypevr
16400
16401 @deftypevr {@code{tlp-configuration} parameter} maybe-string usb-whitelist
16402 Include specified devices into USB autosuspend, even if they are already
16403 excluded by the driver or via @code{usb-blacklist-wwan?}.
16404
16405 Defaults to @samp{disabled}.
16406
16407 @end deftypevr
16408
16409 @deftypevr {@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?
16410 Enable USB autosuspend before shutdown.
16411
16412 Defaults to @samp{disabled}.
16413
16414 @end deftypevr
16415
16416 @deftypevr {@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?
16417 Restore radio device state (bluetooth, wifi, wwan) from previous
16418 shutdown on system startup.
16419
16420 Defaults to @samp{#f}.
16421
16422 @end deftypevr
16423
16424
16425 The @code{(gnu services pm)} module provides an interface to
16426 thermald, a CPU frequency scaling service which helps prevent overheating.
16427
16428 @defvr {Scheme Variable} thermald-service-type
16429 This is the service type for
16430 @uref{https://01.org/linux-thermal-daemon/, thermald}, the Linux
16431 Thermal Daemon, which is responsible for controlling the thermal state
16432 of processors and preventing overheating.
16433 @end defvr
16434
16435 @deftp {Data Type} thermald-configuration
16436 Data type representing the configuration of @code{thermald-service-type}.
16437
16438 @table @asis
16439 @item @code{ignore-cpuid-check?} (default: @code{#f})
16440 Ignore cpuid check for supported CPU models.
16441
16442 @item @code{thermald} (default: @var{thermald})
16443 Package object of thermald.
16444
16445 @end table
16446 @end deftp
16447
16448 @node Audio Services
16449 @subsubsection Audio Services
16450
16451 The @code{(gnu services audio)} module provides a service to start MPD
16452 (the Music Player Daemon).
16453
16454 @cindex mpd
16455 @subsubheading Music Player Daemon
16456
16457 The Music Player Daemon (MPD) is a service that can play music while
16458 being controlled from the local machine or over the network by a variety
16459 of clients.
16460
16461 The following example shows how one might run @code{mpd} as user
16462 @code{"bob"} on port @code{6666}. It uses pulseaudio for output.
16463
16464 @example
16465 (service mpd-service-type
16466 (mpd-configuration
16467 (user "bob")
16468 (port "6666")))
16469 @end example
16470
16471 @defvr {Scheme Variable} mpd-service-type
16472 The service type for @command{mpd}
16473 @end defvr
16474
16475 @deftp {Data Type} mpd-configuration
16476 Data type representing the configuration of @command{mpd}.
16477
16478 @table @asis
16479 @item @code{user} (default: @code{"mpd"})
16480 The user to run mpd as.
16481
16482 @item @code{music-dir} (default: @code{"~/Music"})
16483 The directory to scan for music files.
16484
16485 @item @code{playlist-dir} (default: @code{"~/.mpd/playlists"})
16486 The directory to store playlists.
16487
16488 @item @code{port} (default: @code{"6600"})
16489 The port to run mpd on.
16490
16491 @item @code{address} (default: @code{"any"})
16492 The address that mpd will bind to. To use a Unix domain socket,
16493 an absolute path can be specified here.
16494
16495 @end table
16496 @end deftp
16497
16498 @node Virtualization Services
16499 @subsubsection Virtualization services
16500 The @code{(gnu services virtualization)} module provides services for
16501 the libvirt and virtlog daemons.
16502
16503 @subsubheading Libvirt daemon
16504 @code{libvirtd} is the server side daemon component of the libvirt
16505 virtualization management system. This daemon runs on host servers
16506 and performs required management tasks for virtualized guests.
16507
16508 @deffn {Scheme Variable} libvirt-service-type
16509 This is the type of the @uref{https://libvirt.org, libvirt daemon}.
16510 Its value must be a @code{libvirt-configuration}.
16511
16512 @example
16513 (service libvirt-service-type
16514 (libvirt-configuration
16515 (unix-sock-group "libvirt")
16516 (tls-port "16555")))
16517 @end example
16518 @end deffn
16519
16520 @c Auto-generated with (generate-libvirt-documentation)
16521 Available @code{libvirt-configuration} fields are:
16522
16523 @deftypevr {@code{libvirt-configuration} parameter} package libvirt
16524 Libvirt package.
16525
16526 @end deftypevr
16527
16528 @deftypevr {@code{libvirt-configuration} parameter} boolean listen-tls?
16529 Flag listening for secure TLS connections on the public TCP/IP port.
16530 must set @code{listen} for this to have any effect.
16531
16532 It is necessary to setup a CA and issue server certificates before using
16533 this capability.
16534
16535 Defaults to @samp{#t}.
16536
16537 @end deftypevr
16538
16539 @deftypevr {@code{libvirt-configuration} parameter} boolean listen-tcp?
16540 Listen for unencrypted TCP connections on the public TCP/IP port. must
16541 set @code{listen} for this to have any effect.
16542
16543 Using the TCP socket requires SASL authentication by default. Only SASL
16544 mechanisms which support data encryption are allowed. This is
16545 DIGEST_MD5 and GSSAPI (Kerberos5)
16546
16547 Defaults to @samp{#f}.
16548
16549 @end deftypevr
16550
16551 @deftypevr {@code{libvirt-configuration} parameter} string tls-port
16552 Port for accepting secure TLS connections This can be a port number, or
16553 service name
16554
16555 Defaults to @samp{"16514"}.
16556
16557 @end deftypevr
16558
16559 @deftypevr {@code{libvirt-configuration} parameter} string tcp-port
16560 Port for accepting insecure TCP connections This can be a port number,
16561 or service name
16562
16563 Defaults to @samp{"16509"}.
16564
16565 @end deftypevr
16566
16567 @deftypevr {@code{libvirt-configuration} parameter} string listen-addr
16568 IP address or hostname used for client connections.
16569
16570 Defaults to @samp{"0.0.0.0"}.
16571
16572 @end deftypevr
16573
16574 @deftypevr {@code{libvirt-configuration} parameter} boolean mdns-adv?
16575 Flag toggling mDNS advertisement of the libvirt service.
16576
16577 Alternatively can disable for all services on a host by stopping the
16578 Avahi daemon.
16579
16580 Defaults to @samp{#f}.
16581
16582 @end deftypevr
16583
16584 @deftypevr {@code{libvirt-configuration} parameter} string mdns-name
16585 Default mDNS advertisement name. This must be unique on the immediate
16586 broadcast network.
16587
16588 Defaults to @samp{"Virtualization Host <hostname>"}.
16589
16590 @end deftypevr
16591
16592 @deftypevr {@code{libvirt-configuration} parameter} string unix-sock-group
16593 UNIX domain socket group ownership. This can be used to allow a
16594 'trusted' set of users access to management capabilities without
16595 becoming root.
16596
16597 Defaults to @samp{"root"}.
16598
16599 @end deftypevr
16600
16601 @deftypevr {@code{libvirt-configuration} parameter} string unix-sock-ro-perms
16602 UNIX socket permissions for the R/O socket. This is used for monitoring
16603 VM status only.
16604
16605 Defaults to @samp{"0777"}.
16606
16607 @end deftypevr
16608
16609 @deftypevr {@code{libvirt-configuration} parameter} string unix-sock-rw-perms
16610 UNIX socket permissions for the R/W socket. Default allows only root.
16611 If PolicyKit is enabled on the socket, the default will change to allow
16612 everyone (eg, 0777)
16613
16614 Defaults to @samp{"0770"}.
16615
16616 @end deftypevr
16617
16618 @deftypevr {@code{libvirt-configuration} parameter} string unix-sock-admin-perms
16619 UNIX socket permissions for the admin socket. Default allows only owner
16620 (root), do not change it unless you are sure to whom you are exposing
16621 the access to.
16622
16623 Defaults to @samp{"0777"}.
16624
16625 @end deftypevr
16626
16627 @deftypevr {@code{libvirt-configuration} parameter} string unix-sock-dir
16628 The directory in which sockets will be found/created.
16629
16630 Defaults to @samp{"/var/run/libvirt"}.
16631
16632 @end deftypevr
16633
16634 @deftypevr {@code{libvirt-configuration} parameter} string auth-unix-ro
16635 Authentication scheme for UNIX read-only sockets. By default socket
16636 permissions allow anyone to connect
16637
16638 Defaults to @samp{"polkit"}.
16639
16640 @end deftypevr
16641
16642 @deftypevr {@code{libvirt-configuration} parameter} string auth-unix-rw
16643 Authentication scheme for UNIX read-write sockets. By default socket
16644 permissions only allow root. If PolicyKit support was compiled into
16645 libvirt, the default will be to use 'polkit' auth.
16646
16647 Defaults to @samp{"polkit"}.
16648
16649 @end deftypevr
16650
16651 @deftypevr {@code{libvirt-configuration} parameter} string auth-tcp
16652 Authentication scheme for TCP sockets. If you don't enable SASL, then
16653 all TCP traffic is cleartext. Don't do this outside of a dev/test
16654 scenario.
16655
16656 Defaults to @samp{"sasl"}.
16657
16658 @end deftypevr
16659
16660 @deftypevr {@code{libvirt-configuration} parameter} string auth-tls
16661 Authentication scheme for TLS sockets. TLS sockets already have
16662 encryption provided by the TLS layer, and limited authentication is done
16663 by certificates.
16664
16665 It is possible to make use of any SASL authentication mechanism as well,
16666 by using 'sasl' for this option
16667
16668 Defaults to @samp{"none"}.
16669
16670 @end deftypevr
16671
16672 @deftypevr {@code{libvirt-configuration} parameter} optional-list access-drivers
16673 API access control scheme.
16674
16675 By default an authenticated user is allowed access to all APIs. Access
16676 drivers can place restrictions on this.
16677
16678 Defaults to @samp{()}.
16679
16680 @end deftypevr
16681
16682 @deftypevr {@code{libvirt-configuration} parameter} string key-file
16683 Server key file path. If set to an empty string, then no private key is
16684 loaded.
16685
16686 Defaults to @samp{""}.
16687
16688 @end deftypevr
16689
16690 @deftypevr {@code{libvirt-configuration} parameter} string cert-file
16691 Server key file path. If set to an empty string, then no certificate is
16692 loaded.
16693
16694 Defaults to @samp{""}.
16695
16696 @end deftypevr
16697
16698 @deftypevr {@code{libvirt-configuration} parameter} string ca-file
16699 Server key file path. If set to an empty string, then no CA certificate
16700 is loaded.
16701
16702 Defaults to @samp{""}.
16703
16704 @end deftypevr
16705
16706 @deftypevr {@code{libvirt-configuration} parameter} string crl-file
16707 Certificate revocation list path. If set to an empty string, then no
16708 CRL is loaded.
16709
16710 Defaults to @samp{""}.
16711
16712 @end deftypevr
16713
16714 @deftypevr {@code{libvirt-configuration} parameter} boolean tls-no-sanity-cert
16715 Disable verification of our own server certificates.
16716
16717 When libvirtd starts it performs some sanity checks against its own
16718 certificates.
16719
16720 Defaults to @samp{#f}.
16721
16722 @end deftypevr
16723
16724 @deftypevr {@code{libvirt-configuration} parameter} boolean tls-no-verify-cert
16725 Disable verification of client certificates.
16726
16727 Client certificate verification is the primary authentication mechanism.
16728 Any client which does not present a certificate signed by the CA will be
16729 rejected.
16730
16731 Defaults to @samp{#f}.
16732
16733 @end deftypevr
16734
16735 @deftypevr {@code{libvirt-configuration} parameter} optional-list tls-allowed-dn-list
16736 Whitelist of allowed x509 Distinguished Name.
16737
16738 Defaults to @samp{()}.
16739
16740 @end deftypevr
16741
16742 @deftypevr {@code{libvirt-configuration} parameter} optional-list sasl-allowed-usernames
16743 Whitelist of allowed SASL usernames. The format for username depends on
16744 the SASL authentication mechanism.
16745
16746 Defaults to @samp{()}.
16747
16748 @end deftypevr
16749
16750 @deftypevr {@code{libvirt-configuration} parameter} string tls-priority
16751 Override the compile time default TLS priority string. The default is
16752 usually "NORMAL" unless overridden at build time. Only set this is it
16753 is desired for libvirt to deviate from the global default settings.
16754
16755 Defaults to @samp{"NORMAL"}.
16756
16757 @end deftypevr
16758
16759 @deftypevr {@code{libvirt-configuration} parameter} integer max-clients
16760 Maximum number of concurrent client connections to allow over all
16761 sockets combined.
16762
16763 Defaults to @samp{5000}.
16764
16765 @end deftypevr
16766
16767 @deftypevr {@code{libvirt-configuration} parameter} integer max-queued-clients
16768 Maximum length of queue of connections waiting to be accepted by the
16769 daemon. Note, that some protocols supporting retransmission may obey
16770 this so that a later reattempt at connection succeeds.
16771
16772 Defaults to @samp{1000}.
16773
16774 @end deftypevr
16775
16776 @deftypevr {@code{libvirt-configuration} parameter} integer max-anonymous-clients
16777 Maximum length of queue of accepted but not yet authenticated clients.
16778 Set this to zero to turn this feature off
16779
16780 Defaults to @samp{20}.
16781
16782 @end deftypevr
16783
16784 @deftypevr {@code{libvirt-configuration} parameter} integer min-workers
16785 Number of workers to start up initially.
16786
16787 Defaults to @samp{5}.
16788
16789 @end deftypevr
16790
16791 @deftypevr {@code{libvirt-configuration} parameter} integer max-workers
16792 Maximum number of worker threads.
16793
16794 If the number of active clients exceeds @code{min-workers}, then more
16795 threads are spawned, up to max_workers limit. Typically you'd want
16796 max_workers to equal maximum number of clients allowed.
16797
16798 Defaults to @samp{20}.
16799
16800 @end deftypevr
16801
16802 @deftypevr {@code{libvirt-configuration} parameter} integer prio-workers
16803 Number of priority workers. If all workers from above pool are stuck,
16804 some calls marked as high priority (notably domainDestroy) can be
16805 executed in this pool.
16806
16807 Defaults to @samp{5}.
16808
16809 @end deftypevr
16810
16811 @deftypevr {@code{libvirt-configuration} parameter} integer max-requests
16812 Total global limit on concurrent RPC calls.
16813
16814 Defaults to @samp{20}.
16815
16816 @end deftypevr
16817
16818 @deftypevr {@code{libvirt-configuration} parameter} integer max-client-requests
16819 Limit on concurrent requests from a single client connection. To avoid
16820 one client monopolizing the server this should be a small fraction of
16821 the global max_requests and max_workers parameter.
16822
16823 Defaults to @samp{5}.
16824
16825 @end deftypevr
16826
16827 @deftypevr {@code{libvirt-configuration} parameter} integer admin-min-workers
16828 Same as @code{min-workers} but for the admin interface.
16829
16830 Defaults to @samp{1}.
16831
16832 @end deftypevr
16833
16834 @deftypevr {@code{libvirt-configuration} parameter} integer admin-max-workers
16835 Same as @code{max-workers} but for the admin interface.
16836
16837 Defaults to @samp{5}.
16838
16839 @end deftypevr
16840
16841 @deftypevr {@code{libvirt-configuration} parameter} integer admin-max-clients
16842 Same as @code{max-clients} but for the admin interface.
16843
16844 Defaults to @samp{5}.
16845
16846 @end deftypevr
16847
16848 @deftypevr {@code{libvirt-configuration} parameter} integer admin-max-queued-clients
16849 Same as @code{max-queued-clients} but for the admin interface.
16850
16851 Defaults to @samp{5}.
16852
16853 @end deftypevr
16854
16855 @deftypevr {@code{libvirt-configuration} parameter} integer admin-max-client-requests
16856 Same as @code{max-client-requests} but for the admin interface.
16857
16858 Defaults to @samp{5}.
16859
16860 @end deftypevr
16861
16862 @deftypevr {@code{libvirt-configuration} parameter} integer log-level
16863 Logging level. 4 errors, 3 warnings, 2 information, 1 debug.
16864
16865 Defaults to @samp{3}.
16866
16867 @end deftypevr
16868
16869 @deftypevr {@code{libvirt-configuration} parameter} string log-filters
16870 Logging filters.
16871
16872 A filter allows to select a different logging level for a given category
16873 of logs The format for a filter is one of:
16874
16875 @itemize @bullet
16876 @item
16877 x:name
16878
16879 @item
16880 x:+name
16881
16882 @end itemize
16883
16884 where @code{name} is a string which is matched against the category
16885 given in the @code{VIR_LOG_INIT()} at the top of each libvirt source
16886 file, e.g., "remote", "qemu", or "util.json" (the name in the filter can
16887 be a substring of the full category name, in order to match multiple
16888 similar categories), the optional "+" prefix tells libvirt to log stack
16889 trace for each message matching name, and @code{x} is the minimal level
16890 where matching messages should be logged:
16891
16892 @itemize @bullet
16893 @item
16894 1: DEBUG
16895
16896 @item
16897 2: INFO
16898
16899 @item
16900 3: WARNING
16901
16902 @item
16903 4: ERROR
16904
16905 @end itemize
16906
16907 Multiple filters can be defined in a single filters statement, they just
16908 need to be separated by spaces.
16909
16910 Defaults to @samp{"3:remote 4:event"}.
16911
16912 @end deftypevr
16913
16914 @deftypevr {@code{libvirt-configuration} parameter} string log-outputs
16915 Logging outputs.
16916
16917 An output is one of the places to save logging information The format
16918 for an output can be:
16919
16920 @table @code
16921 @item x:stderr
16922 output goes to stderr
16923
16924 @item x:syslog:name
16925 use syslog for the output and use the given name as the ident
16926
16927 @item x:file:file_path
16928 output to a file, with the given filepath
16929
16930 @item x:journald
16931 output to journald logging system
16932
16933 @end table
16934
16935 In all case the x prefix is the minimal level, acting as a filter
16936
16937 @itemize @bullet
16938 @item
16939 1: DEBUG
16940
16941 @item
16942 2: INFO
16943
16944 @item
16945 3: WARNING
16946
16947 @item
16948 4: ERROR
16949
16950 @end itemize
16951
16952 Multiple outputs can be defined, they just need to be separated by
16953 spaces.
16954
16955 Defaults to @samp{"3:stderr"}.
16956
16957 @end deftypevr
16958
16959 @deftypevr {@code{libvirt-configuration} parameter} integer audit-level
16960 Allows usage of the auditing subsystem to be altered
16961
16962 @itemize @bullet
16963 @item
16964 0: disable all auditing
16965
16966 @item
16967 1: enable auditing, only if enabled on host
16968
16969 @item
16970 2: enable auditing, and exit if disabled on host.
16971
16972 @end itemize
16973
16974 Defaults to @samp{1}.
16975
16976 @end deftypevr
16977
16978 @deftypevr {@code{libvirt-configuration} parameter} boolean audit-logging
16979 Send audit messages via libvirt logging infrastructure.
16980
16981 Defaults to @samp{#f}.
16982
16983 @end deftypevr
16984
16985 @deftypevr {@code{libvirt-configuration} parameter} optional-string host-uuid
16986 Host UUID. UUID must not have all digits be the same.
16987
16988 Defaults to @samp{""}.
16989
16990 @end deftypevr
16991
16992 @deftypevr {@code{libvirt-configuration} parameter} string host-uuid-source
16993 Source to read host UUID.
16994
16995 @itemize @bullet
16996 @item
16997 @code{smbios}: fetch the UUID from @code{dmidecode -s system-uuid}
16998
16999 @item
17000 @code{machine-id}: fetch the UUID from @code{/etc/machine-id}
17001
17002 @end itemize
17003
17004 If @code{dmidecode} does not provide a valid UUID a temporary UUID will
17005 be generated.
17006
17007 Defaults to @samp{"smbios"}.
17008
17009 @end deftypevr
17010
17011 @deftypevr {@code{libvirt-configuration} parameter} integer keepalive-interval
17012 A keepalive message is sent to a client after @code{keepalive_interval}
17013 seconds of inactivity to check if the client is still responding. If
17014 set to -1, libvirtd will never send keepalive requests; however clients
17015 can still send them and the daemon will send responses.
17016
17017 Defaults to @samp{5}.
17018
17019 @end deftypevr
17020
17021 @deftypevr {@code{libvirt-configuration} parameter} integer keepalive-count
17022 Maximum number of keepalive messages that are allowed to be sent to the
17023 client without getting any response before the connection is considered
17024 broken.
17025
17026 In other words, the connection is automatically closed approximately
17027 after @code{keepalive_interval * (keepalive_count + 1)} seconds since
17028 the last message received from the client. When @code{keepalive-count}
17029 is set to 0, connections will be automatically closed after
17030 @code{keepalive-interval} seconds of inactivity without sending any
17031 keepalive messages.
17032
17033 Defaults to @samp{5}.
17034
17035 @end deftypevr
17036
17037 @deftypevr {@code{libvirt-configuration} parameter} integer admin-keepalive-interval
17038 Same as above but for admin interface.
17039
17040 Defaults to @samp{5}.
17041
17042 @end deftypevr
17043
17044 @deftypevr {@code{libvirt-configuration} parameter} integer admin-keepalive-count
17045 Same as above but for admin interface.
17046
17047 Defaults to @samp{5}.
17048
17049 @end deftypevr
17050
17051 @deftypevr {@code{libvirt-configuration} parameter} integer ovs-timeout
17052 Timeout for Open vSwitch calls.
17053
17054 The @code{ovs-vsctl} utility is used for the configuration and its
17055 timeout option is set by default to 5 seconds to avoid potential
17056 infinite waits blocking libvirt.
17057
17058 Defaults to @samp{5}.
17059
17060 @end deftypevr
17061
17062 @c %end of autogenerated docs
17063
17064 @subsubheading Virtlog daemon
17065 The virtlogd service is a server side daemon component of libvirt that is
17066 used to manage logs from virtual machine consoles.
17067
17068 This daemon is not used directly by libvirt client applications, rather it
17069 is called on their behalf by @code{libvirtd}. By maintaining the logs in a
17070 standalone daemon, the main @code{libvirtd} daemon can be restarted without
17071 risk of losing logs. The @code{virtlogd} daemon has the ability to re-exec()
17072 itself upon receiving @code{SIGUSR1}, to allow live upgrades without downtime.
17073
17074 @deffn {Scheme Variable} virtlog-service-type
17075 This is the type of the virtlog daemon.
17076 Its value must be a @code{virtlog-configuration}.
17077
17078 @example
17079 (service virtlog-service-type
17080 (virtlog-configuration
17081 (max-clients 1000)))
17082 @end example
17083 @end deffn
17084
17085 @deftypevr {@code{virtlog-configuration} parameter} integer log-level
17086 Logging level. 4 errors, 3 warnings, 2 information, 1 debug.
17087
17088 Defaults to @samp{3}.
17089
17090 @end deftypevr
17091
17092 @deftypevr {@code{virtlog-configuration} parameter} string log-filters
17093 Logging filters.
17094
17095 A filter allows to select a different logging level for a given category
17096 of logs The format for a filter is one of:
17097
17098 @itemize @bullet
17099 @item
17100 x:name
17101
17102 @item
17103 x:+name
17104
17105 @end itemize
17106
17107 where @code{name} is a string which is matched against the category
17108 given in the @code{VIR_LOG_INIT()} at the top of each libvirt source
17109 file, e.g., "remote", "qemu", or "util.json" (the name in the filter can
17110 be a substring of the full category name, in order to match multiple
17111 similar categories), the optional "+" prefix tells libvirt to log stack
17112 trace for each message matching name, and @code{x} is the minimal level
17113 where matching messages should be logged:
17114
17115 @itemize @bullet
17116 @item
17117 1: DEBUG
17118
17119 @item
17120 2: INFO
17121
17122 @item
17123 3: WARNING
17124
17125 @item
17126 4: ERROR
17127
17128 @end itemize
17129
17130 Multiple filters can be defined in a single filters statement, they just
17131 need to be separated by spaces.
17132
17133 Defaults to @samp{"3:remote 4:event"}.
17134
17135 @end deftypevr
17136
17137 @deftypevr {@code{virtlog-configuration} parameter} string log-outputs
17138 Logging outputs.
17139
17140 An output is one of the places to save logging information The format
17141 for an output can be:
17142
17143 @table @code
17144 @item x:stderr
17145 output goes to stderr
17146
17147 @item x:syslog:name
17148 use syslog for the output and use the given name as the ident
17149
17150 @item x:file:file_path
17151 output to a file, with the given filepath
17152
17153 @item x:journald
17154 output to journald logging system
17155
17156 @end table
17157
17158 In all case the x prefix is the minimal level, acting as a filter
17159
17160 @itemize @bullet
17161 @item
17162 1: DEBUG
17163
17164 @item
17165 2: INFO
17166
17167 @item
17168 3: WARNING
17169
17170 @item
17171 4: ERROR
17172
17173 @end itemize
17174
17175 Multiple outputs can be defined, they just need to be separated by
17176 spaces.
17177
17178 Defaults to @samp{"3:stderr"}.
17179
17180 @end deftypevr
17181
17182 @deftypevr {@code{virtlog-configuration} parameter} integer max-clients
17183 Maximum number of concurrent client connections to allow over all
17184 sockets combined.
17185
17186 Defaults to @samp{1024}.
17187
17188 @end deftypevr
17189
17190 @deftypevr {@code{virtlog-configuration} parameter} integer max-size
17191 Maximum file size before rolling over.
17192
17193 Defaults to @samp{2MB}
17194
17195 @end deftypevr
17196
17197 @deftypevr {@code{virtlog-configuration} parameter} integer max-backups
17198 Maximum number of backup files to keep.
17199
17200 Defaults to @samp{3}
17201
17202 @end deftypevr
17203
17204
17205 @node Miscellaneous Services
17206 @subsubsection Miscellaneous Services
17207
17208 @cindex sysctl
17209 @subsubheading System Control Service
17210
17211 The @code{(gnu services sysctl)} provides a service to configure kernel
17212 parameters at boot.
17213
17214 @defvr {Scheme Variable} sysctl-service-type
17215 The service type for @command{sysctl}, which modifies kernel parameters
17216 under @file{/proc/sys/}. To enable IPv4 forwarding, it can be
17217 instantiated as:
17218
17219 @example
17220 (service sysctl-service-type
17221 (sysctl-configuration
17222 (settings '(("net.ipv4.ip_forward" . "1")))))
17223 @end example
17224 @end defvr
17225
17226 @deftp {Data Type} sysctl-configuration
17227 The data type representing the configuration of @command{sysctl}.
17228
17229 @table @asis
17230 @item @code{sysctl} (default: @code{(file-append procps "/sbin/sysctl"})
17231 The @command{sysctl} executable to use.
17232
17233 @item @code{settings} (default: @code{'()})
17234 An association list specifies kernel parameters and their values.
17235 @end table
17236 @end deftp
17237
17238 @cindex lirc
17239 @subsubheading Lirc Service
17240
17241 The @code{(gnu services lirc)} module provides the following service.
17242
17243 @deffn {Scheme Procedure} lirc-service [#:lirc lirc] @
17244 [#:device #f] [#:driver #f] [#:config-file #f] @
17245 [#:extra-options '()]
17246 Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that
17247 decodes infrared signals from remote controls.
17248
17249 Optionally, @var{device}, @var{driver} and @var{config-file}
17250 (configuration file name) may be specified. See @command{lircd} manual
17251 for details.
17252
17253 Finally, @var{extra-options} is a list of additional command-line options
17254 passed to @command{lircd}.
17255 @end deffn
17256
17257 @cindex spice
17258 @subsubheading Spice Service
17259
17260 The @code{(gnu services spice)} module provides the following service.
17261
17262 @deffn {Scheme Procedure} spice-vdagent-service [#:spice-vdagent]
17263 Returns a service that runs @url{http://www.spice-space.org,VDAGENT}, a daemon
17264 that enables sharing the clipboard with a vm and setting the guest display
17265 resolution when the graphical console window resizes.
17266 @end deffn
17267
17268 @subsubsection Dictionary Services
17269 @cindex dictionary
17270 The @code{(gnu services dict)} module provides the following service:
17271
17272 @deffn {Scheme Procedure} dicod-service [#:config (dicod-configuration)]
17273 Return a service that runs the @command{dicod} daemon, an implementation
17274 of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual}).
17275
17276 The optional @var{config} argument specifies the configuration for
17277 @command{dicod}, which should be a @code{<dicod-configuration>} object, by
17278 default it serves the GNU Collaborative International Dictonary of English.
17279
17280 You can add @command{open localhost} to your @file{~/.dico} file to make
17281 @code{localhost} the default server for @command{dico} client
17282 (@pxref{Initialization File,,, dico, GNU Dico Manual}).
17283 @end deffn
17284
17285 @deftp {Data Type} dicod-configuration
17286 Data type representing the configuration of dicod.
17287
17288 @table @asis
17289 @item @code{dico} (default: @var{dico})
17290 Package object of the GNU Dico dictionary server.
17291
17292 @item @code{interfaces} (default: @var{'("localhost")})
17293 This is the list of IP addresses and ports and possibly socket file
17294 names to listen to (@pxref{Server Settings, @code{listen} directive,,
17295 dico, GNU Dico Manual}).
17296
17297 @item @code{handlers} (default: @var{'()})
17298 List of @code{<dicod-handler>} objects denoting handlers (module instances).
17299
17300 @item @code{databases} (default: @var{(list %dicod-database:gcide)})
17301 List of @code{<dicod-database>} objects denoting dictionaries to be served.
17302 @end table
17303 @end deftp
17304
17305 @deftp {Data Type} dicod-handler
17306 Data type representing a dictionary handler (module instance).
17307
17308 @table @asis
17309 @item @code{name}
17310 Name of the handler (module instance).
17311
17312 @item @code{module} (default: @var{#f})
17313 Name of the dicod module of the handler (instance). If it is @code{#f},
17314 the module has the same name as the handler.
17315 (@pxref{Modules,,, dico, GNU Dico Manual}).
17316
17317 @item @code{options}
17318 List of strings or gexps representing the arguments for the module handler
17319 @end table
17320 @end deftp
17321
17322 @deftp {Data Type} dicod-database
17323 Data type representing a dictionary database.
17324
17325 @table @asis
17326 @item @code{name}
17327 Name of the database, will be used in DICT commands.
17328
17329 @item @code{handler}
17330 Name of the dicod handler (module instance) used by this database
17331 (@pxref{Handlers,,, dico, GNU Dico Manual}).
17332
17333 @item @code{complex?} (default: @var{#f})
17334 Whether the database configuration complex. The complex configuration
17335 will need a corresponding @code{<dicod-handler>} object, otherwise not.
17336
17337 @item @code{options}
17338 List of strings or gexps representing the arguments for the database
17339 (@pxref{Databases,,, dico, GNU Dico Manual}).
17340 @end table
17341 @end deftp
17342
17343 @defvr {Scheme Variable} %dicod-database:gcide
17344 A @code{<dicod-database>} object serving the GNU Collaborative International
17345 Dictionary of English using the @code{gcide} package.
17346 @end defvr
17347
17348 The following is an example @code{dicod-service} configuration.
17349
17350 @example
17351 (dicod-service #:config
17352 (dicod-configuration
17353 (handlers (list (dicod-handler
17354 (name "wordnet")
17355 (module "dictorg")
17356 (options
17357 (list #~(string-append "dbdir=" #$wordnet))))))
17358 (databases (list (dicod-database
17359 (name "wordnet")
17360 (complex? #t)
17361 (handler "wordnet")
17362 (options '("database=wn")))
17363 %dicod-database:gcide))))
17364 @end example
17365
17366 @subsubsection Version Control
17367
17368 The @code{(gnu services version-control)} module provides the following services:
17369
17370 @subsubheading Git daemon service
17371
17372 @deffn {Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]
17373
17374 Return a service that runs @command{git daemon}, a simple TCP server to
17375 expose repositories over the Git protocol for anonymous access.
17376
17377 The optional @var{config} argument should be a
17378 @code{<git-daemon-configuration>} object, by default it allows read-only
17379 access to exported@footnote{By creating the magic file
17380 "git-daemon-export-ok" in the repository directory.} repositories under
17381 @file{/srv/git}.
17382
17383 @end deffn
17384
17385 @deftp {Data Type} git-daemon-configuration
17386 Data type representing the configuration for @code{git-daemon-service}.
17387
17388 @table @asis
17389 @item @code{package} (default: @var{git})
17390 Package object of the Git distributed version control system.
17391
17392 @item @code{export-all?} (default: @var{#f})
17393 Whether to allow access for all Git repositories, even if they do not
17394 have the @file{git-daemon-export-ok} file.
17395
17396 @item @code{base-path} (default: @file{/srv/git})
17397 Whether to remap all the path requests as relative to the given path.
17398 If you run git daemon with @var{(base-path "/srv/git")} on example.com,
17399 then if you later try to pull @code{git://example.com/hello.git}, git
17400 daemon will interpret the path as @code{/srv/git/hello.git}.
17401
17402 @item @code{user-path} (default: @var{#f})
17403 Whether to allow @code{~user} notation to be used in requests. When
17404 specified with empty string, requests to @code{git://host/~alice/foo} is
17405 taken as a request to access @code{foo} repository in the home directory
17406 of user @code{alice}. If @var{(user-path "path")} is specified, the
17407 same request is taken as a request to access @code{path/foo} repository
17408 in the home directory of user @code{alice}.
17409
17410 @item @code{listen} (default: @var{'()})
17411 Whether to listen on specific IP addresses or hostnames, defaults to
17412 all.
17413
17414 @item @code{port} (default: @var{#f})
17415 Whether to listen on an alternative port, which defaults to 9418.
17416
17417 @item @code{whitelist} (default: @var{'()})
17418 If not empty, only allow access to this list of directories.
17419
17420 @item @code{extra-options} (default: @var{'()})
17421 Extra options will be passed to @code{git daemon}, please run
17422 @command{man git-daemon} for more information.
17423
17424 @end table
17425 @end deftp
17426
17427 @subsubheading Cgit Service
17428
17429 @cindex Cgit service
17430 @cindex Git, web interface
17431 @uref{https://git.zx2c4.com/cgit/, Cgit} is a web frontend for Git
17432 repositories written in C.
17433
17434 The following example will configure the service with default values.
17435 By default, Cgit can be accessed on port 80 (@code{http://localhost:80}).
17436
17437 @example
17438 (service nginx-service-type)
17439 (service fcgiwrap-service-type)
17440 (service cgit-service-type)
17441 @end example
17442
17443 @deftp {Data Type} cgit-configuration
17444 Data type representing the configuration of Cgit.
17445 This type has the following parameters:
17446
17447 @table @asis
17448 @item @code{config-file} (default: @code{(cgit-configuration-file)})
17449 The configuration file to use for Cgit. This can be set to a
17450 @dfn{cgit-configuration-file} record value, or any gexp
17451 (@pxref{G-Expressions}).
17452
17453 For example, to instead use a local file, the @code{local-file} function
17454 can be used:
17455
17456 @example
17457 (service cgit-service-type
17458 (cgit-configuration
17459 (config-file (local-file "./my-cgitrc.conf"))))
17460 @end example
17461
17462 @item @code{package} (default: @code{cgit})
17463 The Cgit package to use.
17464
17465 @end table
17466 @end deftp
17467
17468 @deftp {Data Type} cgit-configuration-file
17469 Data type representing the configuration options for Cgit.
17470 This type has the following parameters:
17471
17472 @table @asis
17473 @item @code{css} (default: @code{"/share/cgit/cgit.css"})
17474 URL which specifies the css document to include in all Cgit pages.
17475
17476 @item @code{logo} (default: @code{"/share/cgit/cgit.png"})
17477 URL which specifies the source of an image which will be used as a logo
17478 on all Cgit pages.
17479
17480 @item @code{virtual-root} (default: @code{"/"})
17481 URL which, if specified, will be used as root for all Cgit links.
17482
17483 @item @code{repository-directory} (default: @code{"/srv/git"})
17484 Name of the directory to scan for repositories.
17485
17486 @item @code{robots} (default: @code{(list "noindex" "nofollow")})
17487 Text used as content for the ``robots'' meta-tag.
17488
17489 @end table
17490 @end deftp
17491
17492 @node Setuid Programs
17493 @subsection Setuid Programs
17494
17495 @cindex setuid programs
17496 Some programs need to run with ``root'' privileges, even when they are
17497 launched by unprivileged users. A notorious example is the
17498 @command{passwd} program, which users can run to change their
17499 password, and which needs to access the @file{/etc/passwd} and
17500 @file{/etc/shadow} files---something normally restricted to root, for
17501 obvious security reasons. To address that, these executables are
17502 @dfn{setuid-root}, meaning that they always run with root privileges
17503 (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual},
17504 for more info about the setuid mechanism.)
17505
17506 The store itself @emph{cannot} contain setuid programs: that would be a
17507 security issue since any user on the system can write derivations that
17508 populate the store (@pxref{The Store}). Thus, a different mechanism is
17509 used: instead of changing the setuid bit directly on files that are in
17510 the store, we let the system administrator @emph{declare} which programs
17511 should be setuid root.
17512
17513 The @code{setuid-programs} field of an @code{operating-system}
17514 declaration contains a list of G-expressions denoting the names of
17515 programs to be setuid-root (@pxref{Using the Configuration System}).
17516 For instance, the @command{passwd} program, which is part of the Shadow
17517 package, can be designated by this G-expression (@pxref{G-Expressions}):
17518
17519 @example
17520 #~(string-append #$shadow "/bin/passwd")
17521 @end example
17522
17523 A default set of setuid programs is defined by the
17524 @code{%setuid-programs} variable of the @code{(gnu system)} module.
17525
17526 @defvr {Scheme Variable} %setuid-programs
17527 A list of G-expressions denoting common programs that are setuid-root.
17528
17529 The list includes commands such as @command{passwd}, @command{ping},
17530 @command{su}, and @command{sudo}.
17531 @end defvr
17532
17533 Under the hood, the actual setuid programs are created in the
17534 @file{/run/setuid-programs} directory at system activation time. The
17535 files in this directory refer to the ``real'' binaries, which are in the
17536 store.
17537
17538 @node X.509 Certificates
17539 @subsection X.509 Certificates
17540
17541 @cindex HTTPS, certificates
17542 @cindex X.509 certificates
17543 @cindex TLS
17544 Web servers available over HTTPS (that is, HTTP over the transport-layer
17545 security mechanism, TLS) send client programs an @dfn{X.509 certificate}
17546 that the client can then use to @emph{authenticate} the server. To do
17547 that, clients verify that the server's certificate is signed by a
17548 so-called @dfn{certificate authority} (CA). But to verify the CA's
17549 signature, clients must have first acquired the CA's certificate.
17550
17551 Web browsers such as GNU@tie{}IceCat include their own set of CA
17552 certificates, such that they are able to verify CA signatures
17553 out-of-the-box.
17554
17555 However, most other programs that can talk HTTPS---@command{wget},
17556 @command{git}, @command{w3m}, etc.---need to be told where CA
17557 certificates can be found.
17558
17559 @cindex @code{nss-certs}
17560 In GuixSD, this is done by adding a package that provides certificates
17561 to the @code{packages} field of the @code{operating-system} declaration
17562 (@pxref{operating-system Reference}). GuixSD includes one such package,
17563 @code{nss-certs}, which is a set of CA certificates provided as part of
17564 Mozilla's Network Security Services.
17565
17566 Note that it is @emph{not} part of @var{%base-packages}, so you need to
17567 explicitly add it. The @file{/etc/ssl/certs} directory, which is where
17568 most applications and libraries look for certificates by default, points
17569 to the certificates installed globally.
17570
17571 Unprivileged users, including users of Guix on a foreign distro,
17572 can also install their own certificate package in
17573 their profile. A number of environment variables need to be defined so
17574 that applications and libraries know where to find them. Namely, the
17575 OpenSSL library honors the @code{SSL_CERT_DIR} and @code{SSL_CERT_FILE}
17576 variables. Some applications add their own environment variables; for
17577 instance, the Git version control system honors the certificate bundle
17578 pointed to by the @code{GIT_SSL_CAINFO} environment variable. Thus, you
17579 would typically run something like:
17580
17581 @example
17582 $ guix package -i nss-certs
17583 $ export SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs"
17584 $ export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt"
17585 $ export GIT_SSL_CAINFO="$SSL_CERT_FILE"
17586 @end example
17587
17588 As another example, R requires the @code{CURL_CA_BUNDLE} environment
17589 variable to point to a certificate bundle, so you would have to run
17590 something like this:
17591
17592 @example
17593 $ guix package -i nss-certs
17594 $ export CURL_CA_BUNDLE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt"
17595 @end example
17596
17597 For other applications you may want to look up the required environment
17598 variable in the relevant documentation.
17599
17600
17601 @node Name Service Switch
17602 @subsection Name Service Switch
17603
17604 @cindex name service switch
17605 @cindex NSS
17606 The @code{(gnu system nss)} module provides bindings to the
17607 configuration file of the libc @dfn{name service switch} or @dfn{NSS}
17608 (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference
17609 Manual}). In a nutshell, the NSS is a mechanism that allows libc to be
17610 extended with new ``name'' lookup methods for system databases, which
17611 includes host names, service names, user accounts, and more (@pxref{Name
17612 Service Switch, System Databases and Name Service Switch,, libc, The GNU
17613 C Library Reference Manual}).
17614
17615 The NSS configuration specifies, for each system database, which lookup
17616 method is to be used, and how the various methods are chained
17617 together---for instance, under which circumstances NSS should try the
17618 next method in the list. The NSS configuration is given in the
17619 @code{name-service-switch} field of @code{operating-system} declarations
17620 (@pxref{operating-system Reference, @code{name-service-switch}}).
17621
17622 @cindex nss-mdns
17623 @cindex .local, host name lookup
17624 As an example, the declaration below configures the NSS to use the
17625 @uref{http://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}
17626 back-end}, which supports host name lookups over multicast DNS (mDNS)
17627 for host names ending in @code{.local}:
17628
17629 @example
17630 (name-service-switch
17631 (hosts (list %files ;first, check /etc/hosts
17632
17633 ;; If the above did not succeed, try
17634 ;; with 'mdns_minimal'.
17635 (name-service
17636 (name "mdns_minimal")
17637
17638 ;; 'mdns_minimal' is authoritative for
17639 ;; '.local'. When it returns "not found",
17640 ;; no need to try the next methods.
17641 (reaction (lookup-specification
17642 (not-found => return))))
17643
17644 ;; Then fall back to DNS.
17645 (name-service
17646 (name "dns"))
17647
17648 ;; Finally, try with the "full" 'mdns'.
17649 (name-service
17650 (name "mdns")))))
17651 @end example
17652
17653 Do not worry: the @code{%mdns-host-lookup-nss} variable (see below)
17654 contains this configuration, so you will not have to type it if all you
17655 want is to have @code{.local} host lookup working.
17656
17657 Note that, in this case, in addition to setting the
17658 @code{name-service-switch} of the @code{operating-system} declaration,
17659 you also need to use @code{avahi-service} (@pxref{Networking Services,
17660 @code{avahi-service}}), or @var{%desktop-services}, which includes it
17661 (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible
17662 to the name service cache daemon (@pxref{Base Services,
17663 @code{nscd-service}}).
17664
17665 For convenience, the following variables provide typical NSS
17666 configurations.
17667
17668 @defvr {Scheme Variable} %default-nss
17669 This is the default name service switch configuration, a
17670 @code{name-service-switch} object.
17671 @end defvr
17672
17673 @defvr {Scheme Variable} %mdns-host-lookup-nss
17674 This is the name service switch configuration with support for host name
17675 lookup over multicast DNS (mDNS) for host names ending in @code{.local}.
17676 @end defvr
17677
17678 The reference for name service switch configuration is given below. It
17679 is a direct mapping of the configuration file format of the C library , so
17680 please refer to the C library manual for more information (@pxref{NSS
17681 Configuration File,,, libc, The GNU C Library Reference Manual}).
17682 Compared to the configuration file format of libc NSS, it has the advantage
17683 not only of adding this warm parenthetic feel that we like, but also
17684 static checks: you will know about syntax errors and typos as soon as you
17685 run @command{guix system}.
17686
17687 @deftp {Data Type} name-service-switch
17688
17689 This is the data type representation the configuration of libc's name
17690 service switch (NSS). Each field below represents one of the supported
17691 system databases.
17692
17693 @table @code
17694 @item aliases
17695 @itemx ethers
17696 @itemx group
17697 @itemx gshadow
17698 @itemx hosts
17699 @itemx initgroups
17700 @itemx netgroup
17701 @itemx networks
17702 @itemx password
17703 @itemx public-key
17704 @itemx rpc
17705 @itemx services
17706 @itemx shadow
17707 The system databases handled by the NSS. Each of these fields must be a
17708 list of @code{<name-service>} objects (see below).
17709 @end table
17710 @end deftp
17711
17712 @deftp {Data Type} name-service
17713
17714 This is the data type representing an actual name service and the
17715 associated lookup action.
17716
17717 @table @code
17718 @item name
17719 A string denoting the name service (@pxref{Services in the NSS
17720 configuration,,, libc, The GNU C Library Reference Manual}).
17721
17722 Note that name services listed here must be visible to nscd. This is
17723 achieved by passing the @code{#:name-services} argument to
17724 @code{nscd-service} the list of packages providing the needed name
17725 services (@pxref{Base Services, @code{nscd-service}}).
17726
17727 @item reaction
17728 An action specified using the @code{lookup-specification} macro
17729 (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library
17730 Reference Manual}). For example:
17731
17732 @example
17733 (lookup-specification (unavailable => continue)
17734 (success => return))
17735 @end example
17736 @end table
17737 @end deftp
17738
17739 @node Initial RAM Disk
17740 @subsection Initial RAM Disk
17741
17742 @cindex initrd
17743 @cindex initial RAM disk
17744 For bootstrapping purposes, the Linux-Libre kernel is passed an
17745 @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary
17746 root file system as well as an initialization script. The latter is
17747 responsible for mounting the real root file system, and for loading any
17748 kernel modules that may be needed to achieve that.
17749
17750 The @code{initrd} field of an @code{operating-system} declaration allows
17751 you to specify which initrd you would like to use. The @code{(gnu
17752 system linux-initrd)} module provides three ways to build an initrd: the
17753 high-level @code{base-initrd} procedure and the low-level
17754 @code{raw-initrd} and @code{expression->initrd} procedures.
17755
17756 The @code{base-initrd} procedure is intended to cover most common uses.
17757 For example, if you want to add a bunch of kernel modules to be loaded
17758 at boot time, you can define the @code{initrd} field of the operating
17759 system declaration like this:
17760
17761 @example
17762 (initrd (lambda (file-systems . rest)
17763 ;; Create a standard initrd that has modules "foo.ko"
17764 ;; and "bar.ko", as well as their dependencies, in
17765 ;; addition to the modules available by default.
17766 (apply base-initrd file-systems
17767 #:extra-modules '("foo" "bar")
17768 rest)))
17769 @end example
17770
17771 The @code{base-initrd} procedure also handles common use cases that
17772 involves using the system as a QEMU guest, or as a ``live'' system with
17773 volatile root file system.
17774
17775 The @code{base-initrd} procedure is built from @code{raw-initrd} procedure.
17776 Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level,
17777 such as trying to guess which kernel modules and packages should be included
17778 to the initrd. An example use of @code{raw-initrd} is when a user has
17779 a custom Linux kernel configuration and default kernel modules included by
17780 @code{base-initrd} are not available.
17781
17782 The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd}
17783 honors several options passed on the Linux kernel command line
17784 (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the
17785 @code{-append} option of QEMU), notably:
17786
17787 @table @code
17788 @item --load=@var{boot}
17789 Tell the initial RAM disk to load @var{boot}, a file containing a Scheme
17790 program, once it has mounted the root file system.
17791
17792 GuixSD uses this option to yield control to a boot program that runs the
17793 service activation programs and then spawns the GNU@tie{}Shepherd, the
17794 initialization system.
17795
17796 @item --root=@var{root}
17797 Mount @var{root} as the root file system. @var{root} can be a
17798 device name like @code{/dev/sda1}, a partition label, or a partition
17799 UUID.
17800
17801 @item --system=@var{system}
17802 Have @file{/run/booted-system} and @file{/run/current-system} point to
17803 @var{system}.
17804
17805 @item modprobe.blacklist=@var{modules}@dots{}
17806 @cindex module, black-listing
17807 @cindex black list, of kernel modules
17808 Instruct the initial RAM disk as well as the @command{modprobe} command
17809 (from the kmod package) to refuse to load @var{modules}. @var{modules}
17810 must be a comma-separated list of module names---e.g.,
17811 @code{usbkbd,9pnet}.
17812
17813 @item --repl
17814 Start a read-eval-print loop (REPL) from the initial RAM disk before it
17815 tries to load kernel modules and to mount the root file system. Our
17816 marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will
17817 love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference
17818 Manual}, for more information on Guile's REPL.
17819
17820 @end table
17821
17822 Now that you know all the features that initial RAM disks produced by
17823 @code{base-initrd} and @code{raw-initrd} provide,
17824 here is how to use it and customize it further.
17825
17826 @cindex initrd
17827 @cindex initial RAM disk
17828 @deffn {Monadic Procedure} raw-initrd @var{file-systems} @
17829 [#:linux-modules '()] [#:mapped-devices '()] @
17830 [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f]
17831 Return a monadic derivation that builds a raw initrd. @var{file-systems} is
17832 a list of file systems to be mounted by the initrd, possibly in addition to
17833 the root file system specified on the kernel command line via @code{--root}.
17834 @var{linux-modules} is a list of kernel modules to be loaded at boot time.
17835 @var{mapped-devices} is a list of device mappings to realize before
17836 @var{file-systems} are mounted (@pxref{Mapped Devices}).
17837 @var{helper-packages} is a list of packages to be copied in the initrd. It may
17838 include @code{e2fsck/static} or other packages needed by the initrd to check
17839 root partition.
17840
17841 When @var{qemu-networking?} is true, set up networking with the standard QEMU
17842 parameters. When @var{virtio?} is true, load additional modules so that the
17843 initrd can be used as a QEMU guest with para-virtualized I/O drivers.
17844
17845 When @var{volatile-root?} is true, the root file system is writable but any changes
17846 to it are lost.
17847 @end deffn
17848
17849 @deffn {Monadic Procedure} base-initrd @var{file-systems} @
17850 [#:mapped-devices '()] [#:qemu-networking? #f] [#:volatile-root? #f]@
17851 [#:virtio? #t] [#:extra-modules '()]
17852 Return a monadic derivation that builds a generic initrd. @var{file-systems} is
17853 a list of file systems to be mounted by the initrd like for @code{raw-initrd}.
17854 @var{mapped-devices}, @var{qemu-networking?} and @var{volatile-root?}
17855 also behaves as in @code{raw-initrd}.
17856
17857 When @var{virtio?} is true, load additional modules so that the
17858 initrd can be used as a QEMU guest with para-virtualized I/O drivers.
17859
17860 The initrd is automatically populated with all the kernel modules necessary
17861 for @var{file-systems} and for the given options. However, additional kernel
17862 modules can be listed in @var{extra-modules}. They will be added to the initrd, and
17863 loaded at boot time in the order in which they appear.
17864 @end deffn
17865
17866 Needless to say, the initrds we produce and use embed a
17867 statically-linked Guile, and the initialization program is a Guile
17868 program. That gives a lot of flexibility. The
17869 @code{expression->initrd} procedure builds such an initrd, given the
17870 program to run in that initrd.
17871
17872 @deffn {Monadic Procedure} expression->initrd @var{exp} @
17873 [#:guile %guile-static-stripped] [#:name "guile-initrd"]
17874 Return a derivation that builds a Linux initrd (a gzipped cpio archive)
17875 containing @var{guile} and that evaluates @var{exp}, a G-expression,
17876 upon booting. All the derivations referenced by @var{exp} are
17877 automatically copied to the initrd.
17878 @end deffn
17879
17880 @node Bootloader Configuration
17881 @subsection Bootloader Configuration
17882
17883 @cindex bootloader
17884 @cindex boot loader
17885
17886 The operating system supports multiple bootloaders. The bootloader is
17887 configured using @code{bootloader-configuration} declaration. All the
17888 fields of this structure are bootloader agnostic except for one field,
17889 @code{bootloader} that indicates the bootloader to be configured and
17890 installed.
17891
17892 Some of the bootloaders do not honor every field of
17893 @code{bootloader-configuration}. For instance, the extlinux
17894 bootloader does not support themes and thus ignores the @code{theme}
17895 field.
17896
17897 @deftp {Data Type} bootloader-configuration
17898 The type of a bootloader configuration declaration.
17899
17900 @table @asis
17901
17902 @item @code{bootloader}
17903 @cindex EFI, bootloader
17904 @cindex UEFI, bootloader
17905 @cindex BIOS, bootloader
17906 The bootloader to use, as a @code{bootloader} object. For now
17907 @code{grub-bootloader}, @code{grub-efi-bootloader},
17908 @code{extlinux-bootloader} and @code{u-boot-bootloader} are supported.
17909 @code{grub-efi-bootloader} allows to boot on modern systems using the
17910 @dfn{Unified Extensible Firmware Interface} (UEFI).
17911
17912 Available bootloaders are described in @code{(gnu bootloader @dots{})}
17913 modules.
17914
17915 @item @code{target}
17916 This is a string denoting the target onto which to install the
17917 bootloader. The exact interpretation depends on the bootloader in
17918 question; for @code{grub-bootloader}, for example, it should be a device
17919 name understood by the bootloader @command{installer} command, such as
17920 @code{/dev/sda} or @code{(hd0)} (for GRUB, @pxref{Invoking
17921 grub-install,,, grub, GNU GRUB Manual}). For
17922 @code{grub-efi-bootloader}, it should be the path to a mounted EFI file
17923 system.
17924
17925 @item @code{menu-entries} (default: @code{()})
17926 A possibly empty list of @code{menu-entry} objects (see below), denoting
17927 entries to appear in the bootloader menu, in addition to the current
17928 system entry and the entry pointing to previous system generations.
17929 generations.
17930
17931 @item @code{default-entry} (default: @code{0})
17932 The index of the default boot menu entry. Index 0 is for the entry of the
17933 current system.
17934
17935 @item @code{timeout} (default: @code{5})
17936 The number of seconds to wait for keyboard input before booting. Set to
17937 0 to boot immediately, and to -1 to wait indefinitely.
17938
17939 @item @code{theme} (default: @var{#f})
17940 The bootloader theme object describing the theme to use. If no theme
17941 is provided, some bootloaders might use a default theme, that's true
17942 for GRUB.
17943
17944 @item @code{terminal-outputs} (default: @code{'gfxterm})
17945 The output terminals used for the bootloader boot menu, as a list of
17946 symbols. GRUB accepts the values: @code{console}, @code{serial},
17947 @code{serial_@{0-3@}}, @code{gfxterm}, @code{vga_text},
17948 @code{mda_text}, @code{morse}, and @code{pkmodem}. This field
17949 corresponds to the GRUB variable GRUB_TERMINAL_OUTPUT (@pxref{Simple
17950 configuration,,, grub,GNU GRUB manual}).
17951
17952 @item @code{terminal-inputs} (default: @code{'()})
17953 The input terminals used for the bootloader boot menu, as a list of
17954 symbols. For GRUB, the default is the native platform terminal as
17955 determined at run-time. GRUB accepts the values: @code{console},
17956 @code{serial}, @code{serial_@{0-3@}}, @code{at_keyboard}, and
17957 @code{usb_keyboard}. This field corresponds to the GRUB variable
17958 GRUB_TERMINAL_INPUT (@pxref{Simple configuration,,, grub,GNU GRUB
17959 manual}).
17960
17961 @item @code{serial-unit} (default: @code{#f})
17962 The serial unit used by the bootloader, as an integer from 0 to 3.
17963 For GRUB it is choosen at run-time; currently GRUB chooses 0, which
17964 corresponds to COM1 (@pxref{Serial terminal,,, grub,GNU GRUB manual}).
17965
17966 @item @code{serial-speed} (default: @code{#f})
17967 The speed of the serial interface, as an integer. For GRUB, the
17968 default value is chosen at run-time; currently GRUB chooses
17969 9600@tie{}bps (@pxref{Serial terminal,,, grub,GNU GRUB manual}).
17970 @end table
17971
17972 @end deftp
17973
17974 @cindex dual boot
17975 @cindex boot menu
17976 Should you want to list additional boot menu entries @i{via} the
17977 @code{menu-entries} field above, you will need to create them with the
17978 @code{menu-entry} form. For example, imagine you want to be able to
17979 boot another distro (hard to imagine!), you can define a menu entry
17980 along these lines:
17981
17982 @example
17983 (menu-entry
17984 (label "The Other Distro")
17985 (linux "/boot/old/vmlinux-2.6.32")
17986 (linux-arguments '("root=/dev/sda2"))
17987 (initrd "/boot/old/initrd"))
17988 @end example
17989
17990 Details below.
17991
17992 @deftp {Data Type} menu-entry
17993 The type of an entry in the bootloader menu.
17994
17995 @table @asis
17996
17997 @item @code{label}
17998 The label to show in the menu---e.g., @code{"GNU"}.
17999
18000 @item @code{linux}
18001 The Linux kernel image to boot, for example:
18002
18003 @example
18004 (file-append linux-libre "/bzImage")
18005 @end example
18006
18007 For GRUB, it is also possible to specify a device explicitly in the
18008 file path using GRUB's device naming convention (@pxref{Naming
18009 convention,,, grub, GNU GRUB manual}), for example:
18010
18011 @example
18012 "(hd0,msdos1)/boot/vmlinuz"
18013 @end example
18014
18015 If the device is specified explicitly as above, then the @code{device}
18016 field is ignored entirely.
18017
18018 @item @code{linux-arguments} (default: @code{()})
18019 The list of extra Linux kernel command-line arguments---e.g.,
18020 @code{("console=ttyS0")}.
18021
18022 @item @code{initrd}
18023 A G-Expression or string denoting the file name of the initial RAM disk
18024 to use (@pxref{G-Expressions}).
18025 @item @code{device} (default: @code{#f})
18026 The device where the kernel and initrd are to be found---i.e., for GRUB,
18027 @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual}).
18028
18029 This may be a file system label (a string), a file system UUID (a
18030 bytevector, @pxref{File Systems}), or @code{#f}, in which case
18031 the bootloader will search the device containing the file specified by
18032 the @code{linux} field (@pxref{search,,, grub, GNU GRUB manual}). It
18033 must @emph{not} be an OS device name such as @file{/dev/sda1}.
18034
18035 @end table
18036 @end deftp
18037
18038 @c FIXME: Write documentation once it's stable.
18039 Fow now only GRUB has theme support. GRUB themes are created using
18040 the @code{grub-theme} form, which is not documented yet.
18041
18042 @defvr {Scheme Variable} %default-theme
18043 This is the default GRUB theme used by the operating system if no
18044 @code{theme} field is specified in @code{bootloader-configuration}
18045 record.
18046
18047 It comes with a fancy background image displaying the GNU and Guix
18048 logos.
18049 @end defvr
18050
18051
18052 @node Invoking guix system
18053 @subsection Invoking @code{guix system}
18054
18055 Once you have written an operating system declaration as seen in the
18056 previous section, it can be @dfn{instantiated} using the @command{guix
18057 system} command. The synopsis is:
18058
18059 @example
18060 guix system @var{options}@dots{} @var{action} @var{file}
18061 @end example
18062
18063 @var{file} must be the name of a file containing an
18064 @code{operating-system} declaration. @var{action} specifies how the
18065 operating system is instantiated. Currently the following values are
18066 supported:
18067
18068 @table @code
18069 @item search
18070 Display available service type definitions that match the given regular
18071 expressions, sorted by relevance:
18072
18073 @example
18074 $ guix system search console font
18075 name: console-fonts
18076 location: gnu/services/base.scm:729:2
18077 extends: shepherd-root
18078 description: Install the given fonts on the specified ttys (fonts are
18079 + per virtual console on GNU/Linux). The value of this service is a list
18080 + of tty/font pairs like:
18081 +
18082 + '(("tty1" . "LatGrkCyr-8x16"))
18083 relevance: 20
18084
18085 name: mingetty
18086 location: gnu/services/base.scm:1048:2
18087 extends: shepherd-root
18088 description: Provide console login using the `mingetty' program.
18089 relevance: 2
18090
18091 name: login
18092 location: gnu/services/base.scm:775:2
18093 extends: pam
18094 description: Provide a console log-in service as specified by its
18095 + configuration value, a `login-configuration' object.
18096 relevance: 2
18097
18098 @dots{}
18099 @end example
18100
18101 As for @command{guix package --search}, the result is written in
18102 @code{recutils} format, which makes it easy to filter the output
18103 (@pxref{Top, GNU recutils databases,, recutils, GNU recutils manual}).
18104
18105 @item reconfigure
18106 Build the operating system described in @var{file}, activate it, and
18107 switch to it@footnote{This action (and the related actions
18108 @code{switch-generation} and @code{roll-back}) are usable only on
18109 systems already running GuixSD.}.
18110
18111 This effects all the configuration specified in @var{file}: user
18112 accounts, system services, global package list, setuid programs, etc.
18113 The command starts system services specified in @var{file} that are not
18114 currently running; if a service is currently running, it does not
18115 attempt to upgrade it since this would not be possible without stopping it
18116 first.
18117
18118 This command creates a new generation whose number is one greater than
18119 the current generation (as reported by @command{guix system
18120 list-generations}). If that generation already exists, it will be
18121 overwritten. This behavior mirrors that of @command{guix package}
18122 (@pxref{Invoking guix package}).
18123
18124 It also adds a bootloader menu entry for the new OS configuration,
18125 ---unless @option{--no-bootloader} is passed. For GRUB, it moves
18126 entries for older configurations to a submenu, allowing you to choose
18127 an older system generation at boot time should you need it.
18128
18129 @quotation Note
18130 @c The paragraph below refers to the problem discussed at
18131 @c <http://lists.gnu.org/archive/html/guix-devel/2014-08/msg00057.html>.
18132 It is highly recommended to run @command{guix pull} once before you run
18133 @command{guix system reconfigure} for the first time (@pxref{Invoking
18134 guix pull}). Failing to do that you would see an older version of Guix
18135 once @command{reconfigure} has completed.
18136 @end quotation
18137
18138 @item switch-generation
18139 @cindex generations
18140 Switch to an existing system generation. This action atomically
18141 switches the system profile to the specified system generation. It
18142 also rearranges the system's existing bootloader menu entries. It
18143 makes the menu entry for the specified system generation the default,
18144 and it moves the entries for the other generatiors to a submenu, if
18145 supported by the bootloader being used. The next time the system
18146 boots, it will use the specified system generation.
18147
18148 The bootloader itself is not being reinstalled when using this
18149 command. Thus, the installed bootloader is used with an updated
18150 configuration file.
18151
18152 The target generation can be specified explicitly by its generation
18153 number. For example, the following invocation would switch to system
18154 generation 7:
18155
18156 @example
18157 guix system switch-generation 7
18158 @end example
18159
18160 The target generation can also be specified relative to the current
18161 generation with the form @code{+N} or @code{-N}, where @code{+3} means
18162 ``3 generations ahead of the current generation,'' and @code{-1} means
18163 ``1 generation prior to the current generation.'' When specifying a
18164 negative value such as @code{-1}, you must precede it with @code{--} to
18165 prevent it from being parsed as an option. For example:
18166
18167 @example
18168 guix system switch-generation -- -1
18169 @end example
18170
18171 Currently, the effect of invoking this action is @emph{only} to switch
18172 the system profile to an existing generation and rearrange the
18173 bootloader menu entries. To actually start using the target system
18174 generation, you must reboot after running this action. In the future,
18175 it will be updated to do the same things as @command{reconfigure},
18176 like activating and deactivating services.
18177
18178 This action will fail if the specified generation does not exist.
18179
18180 @item roll-back
18181 @cindex rolling back
18182 Switch to the preceding system generation. The next time the system
18183 boots, it will use the preceding system generation. This is the inverse
18184 of @command{reconfigure}, and it is exactly the same as invoking
18185 @command{switch-generation} with an argument of @code{-1}.
18186
18187 Currently, as with @command{switch-generation}, you must reboot after
18188 running this action to actually start using the preceding system
18189 generation.
18190
18191 @item build
18192 Build the derivation of the operating system, which includes all the
18193 configuration files and programs needed to boot and run the system.
18194 This action does not actually install anything.
18195
18196 @item init
18197 Populate the given directory with all the files necessary to run the
18198 operating system specified in @var{file}. This is useful for first-time
18199 installations of GuixSD. For instance:
18200
18201 @example
18202 guix system init my-os-config.scm /mnt
18203 @end example
18204
18205 copies to @file{/mnt} all the store items required by the configuration
18206 specified in @file{my-os-config.scm}. This includes configuration
18207 files, packages, and so on. It also creates other essential files
18208 needed for the system to operate correctly---e.g., the @file{/etc},
18209 @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file.
18210
18211 This command also installs bootloader on the target specified in
18212 @file{my-os-config}, unless the @option{--no-bootloader} option was
18213 passed.
18214
18215 @item vm
18216 @cindex virtual machine
18217 @cindex VM
18218 @anchor{guix system vm}
18219 Build a virtual machine that contains the operating system declared in
18220 @var{file}, and return a script to run that virtual machine (VM).
18221 Arguments given to the script are passed to QEMU as in the example
18222 below, which enables networking and requests 1@tie{}GiB of RAM for the
18223 emulated machine:
18224
18225 @example
18226 $ /gnu/store/@dots{}-run-vm.sh -m 1024 -net user
18227 @end example
18228
18229 The VM shares its store with the host system.
18230
18231 Additional file systems can be shared between the host and the VM using
18232 the @code{--share} and @code{--expose} command-line options: the former
18233 specifies a directory to be shared with write access, while the latter
18234 provides read-only access to the shared directory.
18235
18236 The example below creates a VM in which the user's home directory is
18237 accessible read-only, and where the @file{/exchange} directory is a
18238 read-write mapping of @file{$HOME/tmp} on the host:
18239
18240 @example
18241 guix system vm my-config.scm \
18242 --expose=$HOME --share=$HOME/tmp=/exchange
18243 @end example
18244
18245 On GNU/Linux, the default is to boot directly to the kernel; this has
18246 the advantage of requiring only a very tiny root disk image since the
18247 store of the host can then be mounted.
18248
18249 The @code{--full-boot} option forces a complete boot sequence, starting
18250 with the bootloader. This requires more disk space since a root image
18251 containing at least the kernel, initrd, and bootloader data files must
18252 be created. The @code{--image-size} option can be used to specify the
18253 size of the image.
18254
18255 @item vm-image
18256 @itemx disk-image
18257 Return a virtual machine or disk image of the operating system declared
18258 in @var{file} that stands alone. By default, @command{guix system}
18259 estimates the size of the image needed to store the system, but you can
18260 use the @option{--image-size} option to specify a value.
18261
18262 You can specify the root file system type by using the
18263 @option{--file-system-type} option. It defaults to @code{ext4}.
18264
18265 When using @code{vm-image}, the returned image is in qcow2 format, which
18266 the QEMU emulator can efficiently use. @xref{Running GuixSD in a VM},
18267 for more information on how to run the image in a virtual machine.
18268
18269 When using @code{disk-image}, a raw disk image is produced; it can be
18270 copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is
18271 the device corresponding to a USB stick, one can copy the image to it
18272 using the following command:
18273
18274 @example
18275 # dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
18276 @end example
18277
18278 @item container
18279 Return a script to run the operating system declared in @var{file}
18280 within a container. Containers are a set of lightweight isolation
18281 mechanisms provided by the kernel Linux-libre. Containers are
18282 substantially less resource-demanding than full virtual machines since
18283 the kernel, shared objects, and other resources can be shared with the
18284 host system; this also means they provide thinner isolation.
18285
18286 Currently, the script must be run as root in order to support more than
18287 a single user and group. The container shares its store with the host
18288 system.
18289
18290 As with the @code{vm} action (@pxref{guix system vm}), additional file
18291 systems to be shared between the host and container can be specified
18292 using the @option{--share} and @option{--expose} options:
18293
18294 @example
18295 guix system container my-config.scm \
18296 --expose=$HOME --share=$HOME/tmp=/exchange
18297 @end example
18298
18299 @quotation Note
18300 This option requires Linux-libre 3.19 or newer.
18301 @end quotation
18302
18303 @end table
18304
18305 @var{options} can contain any of the common build options (@pxref{Common
18306 Build Options}). In addition, @var{options} can contain one of the
18307 following:
18308
18309 @table @option
18310 @item --system=@var{system}
18311 @itemx -s @var{system}
18312 Attempt to build for @var{system} instead of the host system type.
18313 This works as per @command{guix build} (@pxref{Invoking guix build}).
18314
18315 @item --derivation
18316 @itemx -d
18317 Return the derivation file name of the given operating system without
18318 building anything.
18319
18320 @item --file-system-type=@var{type}
18321 @itemx -t @var{type}
18322 For the @code{disk-image} action, create a file system of the given
18323 @var{type} on the image.
18324
18325 When this option is omitted, @command{guix system} uses @code{ext4}.
18326
18327 @cindex ISO-9660 format
18328 @cindex CD image format
18329 @cindex DVD image format
18330 @code{--file-system-type=iso9660} produces an ISO-9660 image, suitable
18331 for burning on CDs and DVDs.
18332
18333 @item --image-size=@var{size}
18334 For the @code{vm-image} and @code{disk-image} actions, create an image
18335 of the given @var{size}. @var{size} may be a number of bytes, or it may
18336 include a unit as a suffix (@pxref{Block size, size specifications,,
18337 coreutils, GNU Coreutils}).
18338
18339 When this option is omitted, @command{guix system} computes an estimate
18340 of the image size as a function of the size of the system declared in
18341 @var{file}.
18342
18343 @item --root=@var{file}
18344 @itemx -r @var{file}
18345 Make @var{file} a symlink to the result, and register it as a garbage
18346 collector root.
18347
18348 @item --on-error=@var{strategy}
18349 Apply @var{strategy} when an error occurs when reading @var{file}.
18350 @var{strategy} may be one of the following:
18351
18352 @table @code
18353 @item nothing-special
18354 Report the error concisely and exit. This is the default strategy.
18355
18356 @item backtrace
18357 Likewise, but also display a backtrace.
18358
18359 @item debug
18360 Report the error and enter Guile's debugger. From there, you can run
18361 commands such as @code{,bt} to get a backtrace, @code{,locals} to
18362 display local variable values, and more generally inspect the state of the
18363 program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for
18364 a list of available debugging commands.
18365 @end table
18366 @end table
18367
18368 @quotation Note
18369 All the actions above, except @code{build} and @code{init},
18370 can use KVM support in the Linux-libre kernel. Specifically, if the
18371 machine has hardware virtualization support, the corresponding
18372 KVM kernel module should be loaded, and the @file{/dev/kvm} device node
18373 must exist and be readable and writable by the user and by the
18374 build users of the daemon (@pxref{Build Environment Setup}).
18375 @end quotation
18376
18377 Once you have built, configured, re-configured, and re-re-configured
18378 your GuixSD installation, you may find it useful to list the operating
18379 system generations available on disk---and that you can choose from the
18380 bootloader boot menu:
18381
18382 @table @code
18383
18384 @item list-generations
18385 List a summary of each generation of the operating system available on
18386 disk, in a human-readable way. This is similar to the
18387 @option{--list-generations} option of @command{guix package}
18388 (@pxref{Invoking guix package}).
18389
18390 Optionally, one can specify a pattern, with the same syntax that is used
18391 in @command{guix package --list-generations}, to restrict the list of
18392 generations displayed. For instance, the following command displays
18393 generations that are up to 10 days old:
18394
18395 @example
18396 $ guix system list-generations 10d
18397 @end example
18398
18399 @end table
18400
18401 The @command{guix system} command has even more to offer! The following
18402 sub-commands allow you to visualize how your system services relate to
18403 each other:
18404
18405 @anchor{system-extension-graph}
18406 @table @code
18407
18408 @item extension-graph
18409 Emit in Dot/Graphviz format to standard output the @dfn{service
18410 extension graph} of the operating system defined in @var{file}
18411 (@pxref{Service Composition}, for more information on service
18412 extensions.)
18413
18414 The command:
18415
18416 @example
18417 $ guix system extension-graph @var{file} | dot -Tpdf > services.pdf
18418 @end example
18419
18420 produces a PDF file showing the extension relations among services.
18421
18422 @anchor{system-shepherd-graph}
18423 @item shepherd-graph
18424 Emit in Dot/Graphviz format to standard output the @dfn{dependency
18425 graph} of shepherd services of the operating system defined in
18426 @var{file}. @xref{Shepherd Services}, for more information and for an
18427 example graph.
18428
18429 @end table
18430
18431 @node Running GuixSD in a VM
18432 @subsection Running GuixSD in a Virtual Machine
18433
18434 @cindex virtual machine
18435 To run GuixSD in a virtual machine (VM), one can either use the
18436 pre-built GuixSD VM image distributed at
18437 @indicateurl{ftp://alpha.gnu.org/guix/guixsd-vm-image-@value{VERSION}.@var{system}.tar.xz}
18438 , or build their own virtual machine image using @command{guix system
18439 vm-image} (@pxref{Invoking guix system}). The returned image is in
18440 qcow2 format, which the @uref{http://qemu.org/, QEMU emulator} can
18441 efficiently use.
18442
18443 @cindex QEMU
18444 If you built your own image, you must copy it out of the store
18445 (@pxref{The Store}) and give yourself permission to write to the copy
18446 before you can use it. When invoking QEMU, you must choose a system
18447 emulator that is suitable for your hardware platform. Here is a minimal
18448 QEMU invocation that will boot the result of @command{guix system
18449 vm-image} on x86_64 hardware:
18450
18451 @example
18452 $ qemu-system-x86_64 \
18453 -net user -net nic,model=virtio \
18454 -enable-kvm -m 256 /tmp/qemu-image
18455 @end example
18456
18457 Here is what each of these options means:
18458
18459 @table @code
18460 @item qemu-system-x86_64
18461 This specifies the hardware platform to emulate. This should match the
18462 host.
18463
18464 @item -net user
18465 Enable the unprivileged user-mode network stack. The guest OS can
18466 access the host but not vice versa. This is the simplest way to get the
18467 guest OS online.
18468
18469 @item -net nic,model=virtio
18470 You must create a network interface of a given model. If you do not
18471 create a NIC, the boot will fail. Assuming your hardware platform is
18472 x86_64, you can get a list of available NIC models by running
18473 @command{qemu-system-x86_64 -net nic,model=help}.
18474
18475 @item -enable-kvm
18476 If your system has hardware virtualization extensions, enabling the
18477 virtual machine support (KVM) of the Linux kernel will make things run
18478 faster.
18479
18480 @item -m 256
18481 RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB,
18482 which may be insufficient for some operations.
18483
18484 @item /tmp/qemu-image
18485 The file name of the qcow2 image.
18486 @end table
18487
18488 The default @command{run-vm.sh} script that is returned by an invocation of
18489 @command{guix system vm} does not add a @command{-net user} flag by default.
18490 To get network access from within the vm add the @code{(dhcp-client-service)}
18491 to your system definition and start the VM using
18492 @command{`guix system vm config.scm` -net user}. An important caveat of using
18493 @command{-net user} for networking is that @command{ping} will not work, because
18494 it uses the ICMP protocol. You'll have to use a different command to check for
18495 network connectivity, for example @command{guix download}.
18496
18497 @subsubsection Connecting Through SSH
18498
18499 @cindex SSH
18500 @cindex SSH server
18501 To enable SSH inside a VM you need to add a SSH server like @code{(dropbear-service)}
18502 or @code{(lsh-service)} to your VM. The @code{(lsh-service}) doesn't currently
18503 boot unsupervised. It requires you to type some characters to initialize the
18504 randomness generator. In addition you need to forward the SSH port, 22 by
18505 default, to the host. You can do this with
18506
18507 @example
18508 `guix system vm config.scm` -net user,hostfwd=tcp::10022-:22
18509 @end example
18510
18511 To connect to the VM you can run
18512
18513 @example
18514 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022
18515 @end example
18516
18517 The @command{-p} tells @command{ssh} the port you want to connect to.
18518 @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining
18519 every time you modify your @command{config.scm} file and the
18520 @command{-o StrictHostKeyChecking=no} prevents you from having to allow a
18521 connection to an unknown host every time you connect.
18522
18523 @subsubsection Using @command{virt-viewer} with Spice
18524
18525 As an alternative to the default @command{qemu} graphical client you can
18526 use the @command{remote-viewer} from the @command{virt-viewer} package. To
18527 connect pass the @command{-spice port=5930,disable-ticketing} flag to
18528 @command{qemu}. See previous section for further information on how to do this.
18529
18530 Spice also allows you to do some nice stuff like share your clipboard with your
18531 VM. To enable that you'll also have to pass the following flags to @command{qemu}:
18532
18533 @example
18534 -device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5
18535 -chardev spicevmc,name=vdagent,id=vdagent
18536 -device virtserialport,nr=1,bus=virtio-serial0.0,chardev=vdagent,
18537 name=com.redhat.spice.0
18538 @end example
18539
18540 You'll also need to add the @pxref{Miscellaneous Services, Spice service}.
18541
18542 @node Defining Services
18543 @subsection Defining Services
18544
18545 The previous sections show the available services and how one can combine
18546 them in an @code{operating-system} declaration. But how do we define
18547 them in the first place? And what is a service anyway?
18548
18549 @menu
18550 * Service Composition:: The model for composing services.
18551 * Service Types and Services:: Types and services.
18552 * Service Reference:: API reference.
18553 * Shepherd Services:: A particular type of service.
18554 @end menu
18555
18556 @node Service Composition
18557 @subsubsection Service Composition
18558
18559 @cindex services
18560 @cindex daemons
18561 Here we define a @dfn{service} as, broadly, something that extends the
18562 functionality of the operating system. Often a service is a process---a
18563 @dfn{daemon}---started when the system boots: a secure shell server, a
18564 Web server, the Guix build daemon, etc. Sometimes a service is a daemon
18565 whose execution can be triggered by another daemon---e.g., an FTP server
18566 started by @command{inetd} or a D-Bus service activated by
18567 @command{dbus-daemon}. Occasionally, a service does not map to a
18568 daemon. For instance, the ``account'' service collects user accounts
18569 and makes sure they exist when the system runs; the ``udev'' service
18570 collects device management rules and makes them available to the eudev
18571 daemon; the @file{/etc} service populates the @file{/etc} directory
18572 of the system.
18573
18574 @cindex service extensions
18575 GuixSD services are connected by @dfn{extensions}. For instance, the
18576 secure shell service @emph{extends} the Shepherd---the GuixSD
18577 initialization system, running as PID@tie{}1---by giving it the command
18578 lines to start and stop the secure shell daemon (@pxref{Networking
18579 Services, @code{lsh-service}}); the UPower service extends the D-Bus
18580 service by passing it its @file{.service} specification, and extends the
18581 udev service by passing it device management rules (@pxref{Desktop
18582 Services, @code{upower-service}}); the Guix daemon service extends the
18583 Shepherd by passing it the command lines to start and stop the daemon,
18584 and extends the account service by passing it a list of required build
18585 user accounts (@pxref{Base Services}).
18586
18587 All in all, services and their ``extends'' relations form a directed
18588 acyclic graph (DAG). If we represent services as boxes and extensions
18589 as arrows, a typical system might provide something like this:
18590
18591 @image{images/service-graph,,5in,Typical service extension graph.}
18592
18593 @cindex system service
18594 At the bottom, we see the @dfn{system service}, which produces the
18595 directory containing everything to run and boot the system, as returned
18596 by the @command{guix system build} command. @xref{Service Reference},
18597 to learn about the other service types shown here.
18598 @xref{system-extension-graph, the @command{guix system extension-graph}
18599 command}, for information on how to generate this representation for a
18600 particular operating system definition.
18601
18602 @cindex service types
18603 Technically, developers can define @dfn{service types} to express these
18604 relations. There can be any number of services of a given type on the
18605 system---for instance, a system running two instances of the GNU secure
18606 shell server (lsh) has two instances of @var{lsh-service-type}, with
18607 different parameters.
18608
18609 The following section describes the programming interface for service
18610 types and services.
18611
18612 @node Service Types and Services
18613 @subsubsection Service Types and Services
18614
18615 A @dfn{service type} is a node in the DAG described above. Let us start
18616 with a simple example, the service type for the Guix build daemon
18617 (@pxref{Invoking guix-daemon}):
18618
18619 @example
18620 (define guix-service-type
18621 (service-type
18622 (name 'guix)
18623 (extensions
18624 (list (service-extension shepherd-root-service-type guix-shepherd-service)
18625 (service-extension account-service-type guix-accounts)
18626 (service-extension activation-service-type guix-activation)))
18627 (default-value (guix-configuration))))
18628 @end example
18629
18630 @noindent
18631 It defines three things:
18632
18633 @enumerate
18634 @item
18635 A name, whose sole purpose is to make inspection and debugging easier.
18636
18637 @item
18638 A list of @dfn{service extensions}, where each extension designates the
18639 target service type and a procedure that, given the parameters of the
18640 service, returns a list of objects to extend the service of that type.
18641
18642 Every service type has at least one service extension. The only
18643 exception is the @dfn{boot service type}, which is the ultimate service.
18644
18645 @item
18646 Optionally, a default value for instances of this type.
18647 @end enumerate
18648
18649 In this example, @var{guix-service-type} extends three services:
18650
18651 @table @var
18652 @item shepherd-root-service-type
18653 The @var{guix-shepherd-service} procedure defines how the Shepherd
18654 service is extended. Namely, it returns a @code{<shepherd-service>}
18655 object that defines how @command{guix-daemon} is started and stopped
18656 (@pxref{Shepherd Services}).
18657
18658 @item account-service-type
18659 This extension for this service is computed by @var{guix-accounts},
18660 which returns a list of @code{user-group} and @code{user-account}
18661 objects representing the build user accounts (@pxref{Invoking
18662 guix-daemon}).
18663
18664 @item activation-service-type
18665 Here @var{guix-activation} is a procedure that returns a gexp, which is
18666 a code snippet to run at ``activation time''---e.g., when the service is
18667 booted.
18668 @end table
18669
18670 A service of this type is instantiated like this:
18671
18672 @example
18673 (service guix-service-type
18674 (guix-configuration
18675 (build-accounts 5)
18676 (use-substitutes? #f)))
18677 @end example
18678
18679 The second argument to the @code{service} form is a value representing
18680 the parameters of this specific service instance.
18681 @xref{guix-configuration-type, @code{guix-configuration}}, for
18682 information about the @code{guix-configuration} data type. When the
18683 value is omitted, the default value specified by
18684 @code{guix-service-type} is used:
18685
18686 @example
18687 (service guix-service-type)
18688 @end example
18689
18690 @var{guix-service-type} is quite simple because it extends other
18691 services but is not extensible itself.
18692
18693 @c @subsubsubsection Extensible Service Types
18694
18695 The service type for an @emph{extensible} service looks like this:
18696
18697 @example
18698 (define udev-service-type
18699 (service-type (name 'udev)
18700 (extensions
18701 (list (service-extension shepherd-root-service-type
18702 udev-shepherd-service)))
18703
18704 (compose concatenate) ;concatenate the list of rules
18705 (extend (lambda (config rules)
18706 (match config
18707 (($ <udev-configuration> udev initial-rules)
18708 (udev-configuration
18709 (udev udev) ;the udev package to use
18710 (rules (append initial-rules rules)))))))))
18711 @end example
18712
18713 This is the service type for the
18714 @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device
18715 management daemon}. Compared to the previous example, in addition to an
18716 extension of @var{shepherd-root-service-type}, we see two new fields:
18717
18718 @table @code
18719 @item compose
18720 This is the procedure to @dfn{compose} the list of extensions to
18721 services of this type.
18722
18723 Services can extend the udev service by passing it lists of rules; we
18724 compose those extensions simply by concatenating them.
18725
18726 @item extend
18727 This procedure defines how the value of the service is @dfn{extended} with
18728 the composition of the extensions.
18729
18730 Udev extensions are composed into a list of rules, but the udev service
18731 value is itself a @code{<udev-configuration>} record. So here, we
18732 extend that record by appending the list of rules it contains to the
18733 list of contributed rules.
18734
18735 @item description
18736 This is a string giving an overview of the service type. The string can
18737 contain Texinfo markup (@pxref{Overview,,, texinfo, GNU Texinfo}). The
18738 @command{guix system search} command searches these strings and displays
18739 them (@pxref{Invoking guix system}).
18740 @end table
18741
18742 There can be only one instance of an extensible service type such as
18743 @var{udev-service-type}. If there were more, the
18744 @code{service-extension} specifications would be ambiguous.
18745
18746 Still here? The next section provides a reference of the programming
18747 interface for services.
18748
18749 @node Service Reference
18750 @subsubsection Service Reference
18751
18752 We have seen an overview of service types (@pxref{Service Types and
18753 Services}). This section provides a reference on how to manipulate
18754 services and service types. This interface is provided by the
18755 @code{(gnu services)} module.
18756
18757 @deffn {Scheme Procedure} service @var{type} [@var{value}]
18758 Return a new service of @var{type}, a @code{<service-type>} object (see
18759 below.) @var{value} can be any object; it represents the parameters of
18760 this particular service instance.
18761
18762 When @var{value} is omitted, the default value specified by @var{type}
18763 is used; if @var{type} does not specify a default value, an error is
18764 raised.
18765
18766 For instance, this:
18767
18768 @example
18769 (service openssh-service-type)
18770 @end example
18771
18772 @noindent
18773 is equivalent to this:
18774
18775 @example
18776 (service openssh-service-type
18777 (openssh-configuration))
18778 @end example
18779
18780 In both cases the result is an instance of @code{openssh-service-type}
18781 with the default configuration.
18782 @end deffn
18783
18784 @deffn {Scheme Procedure} service? @var{obj}
18785 Return true if @var{obj} is a service.
18786 @end deffn
18787
18788 @deffn {Scheme Procedure} service-kind @var{service}
18789 Return the type of @var{service}---i.e., a @code{<service-type>} object.
18790 @end deffn
18791
18792 @deffn {Scheme Procedure} service-value @var{service}
18793 Return the value associated with @var{service}. It represents its
18794 parameters.
18795 @end deffn
18796
18797 Here is an example of how a service is created and manipulated:
18798
18799 @example
18800 (define s
18801 (service nginx-service-type
18802 (nginx-configuration
18803 (nginx nginx)
18804 (log-directory log-directory)
18805 (run-directory run-directory)
18806 (file config-file))))
18807
18808 (service? s)
18809 @result{} #t
18810
18811 (eq? (service-kind s) nginx-service-type)
18812 @result{} #t
18813 @end example
18814
18815 The @code{modify-services} form provides a handy way to change the
18816 parameters of some of the services of a list such as
18817 @var{%base-services} (@pxref{Base Services, @code{%base-services}}). It
18818 evaluates to a list of services. Of course, you could always use
18819 standard list combinators such as @code{map} and @code{fold} to do that
18820 (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual});
18821 @code{modify-services} simply provides a more concise form for this
18822 common pattern.
18823
18824 @deffn {Scheme Syntax} modify-services @var{services} @
18825 (@var{type} @var{variable} => @var{body}) @dots{}
18826
18827 Modify the services listed in @var{services} according to the given
18828 clauses. Each clause has the form:
18829
18830 @example
18831 (@var{type} @var{variable} => @var{body})
18832 @end example
18833
18834 where @var{type} is a service type---e.g.,
18835 @code{guix-service-type}---and @var{variable} is an identifier that is
18836 bound within the @var{body} to the service parameters---e.g., a
18837 @code{guix-configuration} instance---of the original service of that
18838 @var{type}.
18839
18840 The @var{body} should evaluate to the new service parameters, which will
18841 be used to configure the new service. This new service will replace the
18842 original in the resulting list. Because a service's service parameters
18843 are created using @code{define-record-type*}, you can write a succinct
18844 @var{body} that evaluates to the new service parameters by using the
18845 @code{inherit} feature that @code{define-record-type*} provides.
18846
18847 @xref{Using the Configuration System}, for example usage.
18848
18849 @end deffn
18850
18851 Next comes the programming interface for service types. This is
18852 something you want to know when writing new service definitions, but not
18853 necessarily when simply looking for ways to customize your
18854 @code{operating-system} declaration.
18855
18856 @deftp {Data Type} service-type
18857 @cindex service type
18858 This is the representation of a @dfn{service type} (@pxref{Service Types
18859 and Services}).
18860
18861 @table @asis
18862 @item @code{name}
18863 This is a symbol, used only to simplify inspection and debugging.
18864
18865 @item @code{extensions}
18866 A non-empty list of @code{<service-extension>} objects (see below).
18867
18868 @item @code{compose} (default: @code{#f})
18869 If this is @code{#f}, then the service type denotes services that cannot
18870 be extended---i.e., services that do not receive ``values'' from other
18871 services.
18872
18873 Otherwise, it must be a one-argument procedure. The procedure is called
18874 by @code{fold-services} and is passed a list of values collected from
18875 extensions. It must return a value that is a valid parameter value for
18876 the service instance.
18877
18878 @item @code{extend} (default: @code{#f})
18879 If this is @code{#f}, services of this type cannot be extended.
18880
18881 Otherwise, it must be a two-argument procedure: @code{fold-services}
18882 calls it, passing it the initial value of the service as the first argument
18883 and the result of applying @code{compose} to the extension values as the
18884 second argument.
18885 @end table
18886
18887 @xref{Service Types and Services}, for examples.
18888 @end deftp
18889
18890 @deffn {Scheme Procedure} service-extension @var{target-type} @
18891 @var{compute}
18892 Return a new extension for services of type @var{target-type}.
18893 @var{compute} must be a one-argument procedure: @code{fold-services}
18894 calls it, passing it the value associated with the service that provides
18895 the extension; it must return a valid value for the target service.
18896 @end deffn
18897
18898 @deffn {Scheme Procedure} service-extension? @var{obj}
18899 Return true if @var{obj} is a service extension.
18900 @end deffn
18901
18902 Occasionally, you might want to simply extend an existing service. This
18903 involves creating a new service type and specifying the extension of
18904 interest, which can be verbose; the @code{simple-service} procedure
18905 provides a shorthand for this.
18906
18907 @deffn {Scheme Procedure} simple-service @var{name} @var{target} @var{value}
18908 Return a service that extends @var{target} with @var{value}. This works
18909 by creating a singleton service type @var{name}, of which the returned
18910 service is an instance.
18911
18912 For example, this extends mcron (@pxref{Scheduled Job Execution}) with
18913 an additional job:
18914
18915 @example
18916 (simple-service 'my-mcron-job mcron-service-type
18917 #~(job '(next-hour (3)) "guix gc -F 2G"))
18918 @end example
18919 @end deffn
18920
18921 At the core of the service abstraction lies the @code{fold-services}
18922 procedure, which is responsible for ``compiling'' a list of services
18923 down to a single directory that contains everything needed to boot and
18924 run the system---the directory shown by the @command{guix system build}
18925 command (@pxref{Invoking guix system}). In essence, it propagates
18926 service extensions down the service graph, updating each node parameters
18927 on the way, until it reaches the root node.
18928
18929 @deffn {Scheme Procedure} fold-services @var{services} @
18930 [#:target-type @var{system-service-type}]
18931 Fold @var{services} by propagating their extensions down to the root of
18932 type @var{target-type}; return the root service adjusted accordingly.
18933 @end deffn
18934
18935 Lastly, the @code{(gnu services)} module also defines several essential
18936 service types, some of which are listed below.
18937
18938 @defvr {Scheme Variable} system-service-type
18939 This is the root of the service graph. It produces the system directory
18940 as returned by the @command{guix system build} command.
18941 @end defvr
18942
18943 @defvr {Scheme Variable} boot-service-type
18944 The type of the ``boot service'', which produces the @dfn{boot script}.
18945 The boot script is what the initial RAM disk runs when booting.
18946 @end defvr
18947
18948 @defvr {Scheme Variable} etc-service-type
18949 The type of the @file{/etc} service. This service is used to create
18950 files under @file{/etc} and can be extended by
18951 passing it name/file tuples such as:
18952
18953 @example
18954 (list `("issue" ,(plain-file "issue" "Welcome!\n")))
18955 @end example
18956
18957 In this example, the effect would be to add an @file{/etc/issue} file
18958 pointing to the given file.
18959 @end defvr
18960
18961 @defvr {Scheme Variable} setuid-program-service-type
18962 Type for the ``setuid-program service''. This service collects lists of
18963 executable file names, passed as gexps, and adds them to the set of
18964 setuid-root programs on the system (@pxref{Setuid Programs}).
18965 @end defvr
18966
18967 @defvr {Scheme Variable} profile-service-type
18968 Type of the service that populates the @dfn{system profile}---i.e., the
18969 programs under @file{/run/current-system/profile}. Other services can
18970 extend it by passing it lists of packages to add to the system profile.
18971 @end defvr
18972
18973
18974 @node Shepherd Services
18975 @subsubsection Shepherd Services
18976
18977 @cindex shepherd services
18978 @cindex PID 1
18979 @cindex init system
18980 The @code{(gnu services shepherd)} module provides a way to define
18981 services managed by the GNU@tie{}Shepherd, which is the GuixSD
18982 initialization system---the first process that is started when the
18983 system boots, also known as PID@tie{}1
18984 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}).
18985
18986 Services in the Shepherd can depend on each other. For instance, the
18987 SSH daemon may need to be started after the syslog daemon has been
18988 started, which in turn can only happen once all the file systems have
18989 been mounted. The simple operating system defined earlier (@pxref{Using
18990 the Configuration System}) results in a service graph like this:
18991
18992 @image{images/shepherd-graph,,5in,Typical shepherd service graph.}
18993
18994 You can actually generate such a graph for any operating system
18995 definition using the @command{guix system shepherd-graph} command
18996 (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}}).
18997
18998 The @var{%shepherd-root-service} is a service object representing
18999 PID@tie{}1, of type @var{shepherd-root-service-type}; it can be extended
19000 by passing it lists of @code{<shepherd-service>} objects.
19001
19002 @deftp {Data Type} shepherd-service
19003 The data type representing a service managed by the Shepherd.
19004
19005 @table @asis
19006 @item @code{provision}
19007 This is a list of symbols denoting what the service provides.
19008
19009 These are the names that may be passed to @command{herd start},
19010 @command{herd status}, and similar commands (@pxref{Invoking herd,,,
19011 shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the
19012 @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details.
19013
19014 @item @code{requirements} (default: @code{'()})
19015 List of symbols denoting the Shepherd services this one depends on.
19016
19017 @item @code{respawn?} (default: @code{#t})
19018 Whether to restart the service when it stops, for instance when the
19019 underlying process dies.
19020
19021 @item @code{start}
19022 @itemx @code{stop} (default: @code{#~(const #f)})
19023 The @code{start} and @code{stop} fields refer to the Shepherd's
19024 facilities to start and stop processes (@pxref{Service De- and
19025 Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as
19026 G-expressions that get expanded in the Shepherd configuration file
19027 (@pxref{G-Expressions}).
19028
19029 @item @code{documentation}
19030 A documentation string, as shown when running:
19031
19032 @example
19033 herd doc @var{service-name}
19034 @end example
19035
19036 where @var{service-name} is one of the symbols in @var{provision}
19037 (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}).
19038
19039 @item @code{modules} (default: @var{%default-modules})
19040 This is the list of modules that must be in scope when @code{start} and
19041 @code{stop} are evaluated.
19042
19043 @end table
19044 @end deftp
19045
19046 @defvr {Scheme Variable} shepherd-root-service-type
19047 The service type for the Shepherd ``root service''---i.e., PID@tie{}1.
19048
19049 This is the service type that extensions target when they want to create
19050 shepherd services (@pxref{Service Types and Services}, for an example).
19051 Each extension must pass a list of @code{<shepherd-service>}.
19052 @end defvr
19053
19054 @defvr {Scheme Variable} %shepherd-root-service
19055 This service represents PID@tie{}1.
19056 @end defvr
19057
19058
19059 @node Documentation
19060 @section Documentation
19061
19062 @cindex documentation, searching for
19063 @cindex searching for documentation
19064 @cindex Info, documentation format
19065 @cindex man pages
19066 @cindex manual pages
19067 In most cases packages installed with Guix come with documentation.
19068 There are two main documentation formats: ``Info'', a browseable
19069 hypertext format used for GNU software, and ``manual pages'' (or ``man
19070 pages''), the linear documentation format traditionally found on Unix.
19071 Info manuals are accessed with the @command{info} command or with Emacs,
19072 and man pages are accessed using @command{man}.
19073
19074 You can look for documentation of software installed on your system by
19075 keyword. For example, the following command searches for information
19076 about ``TLS'' in Info manuals:
19077
19078 @example
19079 $ info -k TLS
19080 "(emacs)Network Security" -- STARTTLS
19081 "(emacs)Network Security" -- TLS
19082 "(gnutls)Core TLS API" -- gnutls_certificate_set_verify_flags
19083 "(gnutls)Core TLS API" -- gnutls_certificate_set_verify_function
19084 @dots{}
19085 @end example
19086
19087 @noindent
19088 The command below searches for the same keyword in man pages:
19089
19090 @example
19091 $ man -k TLS
19092 SSL (7) - OpenSSL SSL/TLS library
19093 certtool (1) - GnuTLS certificate tool
19094 @dots {}
19095 @end example
19096
19097 These searches are purely local to your computer so you have the
19098 guarantee that documentation you find corresponds to what you have
19099 actually installed, you can access it off-line, and your privacy is
19100 respected.
19101
19102 Once you have these results, you can view the relevant documentation by
19103 running, say:
19104
19105 @example
19106 $ info "(gnutls)Core TLS API"
19107 @end example
19108
19109 @noindent
19110 or:
19111
19112 @example
19113 $ man certtool
19114 @end example
19115
19116 Info manuals contain sections and indices as well as hyperlinks like
19117 those found in Web pages. The @command{info} reader (@pxref{Top, Info
19118 reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart
19119 (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key
19120 bindings to navigate manuals. @xref{Getting Started,,, info, Info: An
19121 Introduction}, for an introduction to Info navigation.
19122
19123 @node Installing Debugging Files
19124 @section Installing Debugging Files
19125
19126 @cindex debugging files
19127 Program binaries, as produced by the GCC compilers for instance, are
19128 typically written in the ELF format, with a section containing
19129 @dfn{debugging information}. Debugging information is what allows the
19130 debugger, GDB, to map binary code to source code; it is required to
19131 debug a compiled program in good conditions.
19132
19133 The problem with debugging information is that is takes up a fair amount
19134 of disk space. For example, debugging information for the GNU C Library
19135 weighs in at more than 60 MiB. Thus, as a user, keeping all the
19136 debugging info of all the installed programs is usually not an option.
19137 Yet, space savings should not come at the cost of an impediment to
19138 debugging---especially in the GNU system, which should make it easier
19139 for users to exert their computing freedom (@pxref{GNU Distribution}).
19140
19141 Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a
19142 mechanism that allows users to get the best of both worlds: debugging
19143 information can be stripped from the binaries and stored in separate
19144 files. GDB is then able to load debugging information from those files,
19145 when they are available (@pxref{Separate Debug Files,,, gdb, Debugging
19146 with GDB}).
19147
19148 The GNU distribution takes advantage of this by storing debugging
19149 information in the @code{lib/debug} sub-directory of a separate package
19150 output unimaginatively called @code{debug} (@pxref{Packages with
19151 Multiple Outputs}). Users can choose to install the @code{debug} output
19152 of a package when they need it. For instance, the following command
19153 installs the debugging information for the GNU C Library and for GNU
19154 Guile:
19155
19156 @example
19157 guix package -i glibc:debug guile:debug
19158 @end example
19159
19160 GDB must then be told to look for debug files in the user's profile, by
19161 setting the @code{debug-file-directory} variable (consider setting it
19162 from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with
19163 GDB}):
19164
19165 @example
19166 (gdb) set debug-file-directory ~/.guix-profile/lib/debug
19167 @end example
19168
19169 From there on, GDB will pick up debugging information from the
19170 @code{.debug} files under @file{~/.guix-profile/lib/debug}.
19171
19172 In addition, you will most likely want GDB to be able to show the source
19173 code being debugged. To do that, you will have to unpack the source
19174 code of the package of interest (obtained with @code{guix build
19175 --source}, @pxref{Invoking guix build}), and to point GDB to that source
19176 directory using the @code{directory} command (@pxref{Source Path,
19177 @code{directory},, gdb, Debugging with GDB}).
19178
19179 @c XXX: keep me up-to-date
19180 The @code{debug} output mechanism in Guix is implemented by the
19181 @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is
19182 opt-in---debugging information is available only for the packages
19183 with definitions explicitly declaring a @code{debug} output. This may be
19184 changed to opt-out in the future if our build farm servers can handle
19185 the load. To check whether a package has a @code{debug} output, use
19186 @command{guix package --list-available} (@pxref{Invoking guix package}).
19187
19188
19189 @node Security Updates
19190 @section Security Updates
19191
19192 @cindex security updates
19193 @cindex security vulnerabilities
19194 Occasionally, important security vulnerabilities are discovered in software
19195 packages and must be patched. Guix developers try hard to keep track of
19196 known vulnerabilities and to apply fixes as soon as possible in the
19197 @code{master} branch of Guix (we do not yet provide a ``stable'' branch
19198 containing only security updates.) The @command{guix lint} tool helps
19199 developers find out about vulnerable versions of software packages in the
19200 distribution:
19201
19202 @smallexample
19203 $ guix lint -c cve
19204 gnu/packages/base.scm:652:2: glibc@@2.21: probably vulnerable to CVE-2015-1781, CVE-2015-7547
19205 gnu/packages/gcc.scm:334:2: gcc@@4.9.3: probably vulnerable to CVE-2015-5276
19206 gnu/packages/image.scm:312:2: openjpeg@@2.1.0: probably vulnerable to CVE-2016-1923, CVE-2016-1924
19207 @dots{}
19208 @end smallexample
19209
19210 @xref{Invoking guix lint}, for more information.
19211
19212 @quotation Note
19213 As of version @value{VERSION}, the feature described below is considered
19214 ``beta''.
19215 @end quotation
19216
19217 Guix follows a functional
19218 package management discipline (@pxref{Introduction}), which implies
19219 that, when a package is changed, @emph{every package that depends on it}
19220 must be rebuilt. This can significantly slow down the deployment of
19221 fixes in core packages such as libc or Bash, since basically the whole
19222 distribution would need to be rebuilt. Using pre-built binaries helps
19223 (@pxref{Substitutes}), but deployment may still take more time than
19224 desired.
19225
19226 @cindex grafts
19227 To address this, Guix implements @dfn{grafts}, a mechanism that allows
19228 for fast deployment of critical updates without the costs associated
19229 with a whole-distribution rebuild. The idea is to rebuild only the
19230 package that needs to be patched, and then to ``graft'' it onto packages
19231 explicitly installed by the user and that were previously referring to
19232 the original package. The cost of grafting is typically very low, and
19233 order of magnitudes lower than a full rebuild of the dependency chain.
19234
19235 @cindex replacements of packages, for grafts
19236 For instance, suppose a security update needs to be applied to Bash.
19237 Guix developers will provide a package definition for the ``fixed''
19238 Bash, say @var{bash-fixed}, in the usual way (@pxref{Defining
19239 Packages}). Then, the original package definition is augmented with a
19240 @code{replacement} field pointing to the package containing the bug fix:
19241
19242 @example
19243 (define bash
19244 (package
19245 (name "bash")
19246 ;; @dots{}
19247 (replacement bash-fixed)))
19248 @end example
19249
19250 From there on, any package depending directly or indirectly on Bash---as
19251 reported by @command{guix gc --requisites} (@pxref{Invoking guix
19252 gc})---that is installed is automatically ``rewritten'' to refer to
19253 @var{bash-fixed} instead of @var{bash}. This grafting process takes
19254 time proportional to the size of the package, usually less than a
19255 minute for an ``average'' package on a recent machine. Grafting is
19256 recursive: when an indirect dependency requires grafting, then grafting
19257 ``propagates'' up to the package that the user is installing.
19258
19259 Currently, the length of the name and version of the graft and that of
19260 the package it replaces (@var{bash-fixed} and @var{bash} in the example
19261 above) must be equal. This restriction mostly comes from the fact that
19262 grafting works by patching files, including binary files, directly.
19263 Other restrictions may apply: for instance, when adding a graft to a
19264 package providing a shared library, the original shared library and its
19265 replacement must have the same @code{SONAME} and be binary-compatible.
19266
19267 The @option{--no-grafts} command-line option allows you to forcefully
19268 avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}).
19269 Thus, the command:
19270
19271 @example
19272 guix build bash --no-grafts
19273 @end example
19274
19275 @noindent
19276 returns the store file name of the original Bash, whereas:
19277
19278 @example
19279 guix build bash
19280 @end example
19281
19282 @noindent
19283 returns the store file name of the ``fixed'', replacement Bash. This
19284 allows you to distinguish between the two variants of Bash.
19285
19286 To verify which Bash your whole profile refers to, you can run
19287 (@pxref{Invoking guix gc}):
19288
19289 @example
19290 guix gc -R `readlink -f ~/.guix-profile` | grep bash
19291 @end example
19292
19293 @noindent
19294 @dots{} and compare the store file names that you get with those above.
19295 Likewise for a complete GuixSD system generation:
19296
19297 @example
19298 guix gc -R `guix system build my-config.scm` | grep bash
19299 @end example
19300
19301 Lastly, to check which Bash running processes are using, you can use the
19302 @command{lsof} command:
19303
19304 @example
19305 lsof | grep /gnu/store/.*bash
19306 @end example
19307
19308
19309 @node Package Modules
19310 @section Package Modules
19311
19312 From a programming viewpoint, the package definitions of the
19313 GNU distribution are provided by Guile modules in the @code{(gnu packages
19314 @dots{})} name space@footnote{Note that packages under the @code{(gnu
19315 packages @dots{})} module name space are not necessarily ``GNU
19316 packages''. This module naming scheme follows the usual Guile module
19317 naming convention: @code{gnu} means that these modules are distributed
19318 as part of the GNU system, and @code{packages} identifies modules that
19319 define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile
19320 Reference Manual}). For instance, the @code{(gnu packages emacs)}
19321 module exports a variable named @code{emacs}, which is bound to a
19322 @code{<package>} object (@pxref{Defining Packages}).
19323
19324 The @code{(gnu packages @dots{})} module name space is
19325 automatically scanned for packages by the command-line tools. For
19326 instance, when running @code{guix package -i emacs}, all the @code{(gnu
19327 packages @dots{})} modules are scanned until one that exports a package
19328 object whose name is @code{emacs} is found. This package search
19329 facility is implemented in the @code{(gnu packages)} module.
19330
19331 @cindex customization, of packages
19332 @cindex package module search path
19333 Users can store package definitions in modules with different
19334 names---e.g., @code{(my-packages emacs)}@footnote{Note that the file
19335 name and module name must match. For instance, the @code{(my-packages
19336 emacs)} module must be stored in a @file{my-packages/emacs.scm} file
19337 relative to the load path specified with @option{--load-path} or
19338 @code{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,,
19339 guile, GNU Guile Reference Manual}, for details.}. These package definitions
19340 will not be visible by default. Users can invoke commands such as
19341 @command{guix package} and @command{guix build} with the
19342 @code{-e} option so that they know where to find the package. Better
19343 yet, they can use the
19344 @code{-L} option of these commands to make those modules visible
19345 (@pxref{Invoking guix build, @code{--load-path}}), or define the
19346 @code{GUIX_PACKAGE_PATH} environment variable. This environment
19347 variable makes it easy to extend or customize the distribution and is
19348 honored by all the user interfaces.
19349
19350 @defvr {Environment Variable} GUIX_PACKAGE_PATH
19351 This is a colon-separated list of directories to search for additional
19352 package modules. Directories listed in this variable take precedence
19353 over the own modules of the distribution.
19354 @end defvr
19355
19356 The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}:
19357 each package is built based solely on other packages in the
19358 distribution. The root of this dependency graph is a small set of
19359 @dfn{bootstrap binaries}, provided by the @code{(gnu packages
19360 bootstrap)} module. For more information on bootstrapping,
19361 @pxref{Bootstrapping}.
19362
19363 @node Packaging Guidelines
19364 @section Packaging Guidelines
19365
19366 @cindex packages, creating
19367 The GNU distribution is nascent and may well lack some of your favorite
19368 packages. This section describes how you can help make the distribution
19369 grow. @xref{Contributing}, for additional information on how you can
19370 help.
19371
19372 Free software packages are usually distributed in the form of
19373 @dfn{source code tarballs}---typically @file{tar.gz} files that contain
19374 all the source files. Adding a package to the distribution means
19375 essentially two things: adding a @dfn{recipe} that describes how to
19376 build the package, including a list of other packages required to build
19377 it, and adding @dfn{package metadata} along with that recipe, such as a
19378 description and licensing information.
19379
19380 In Guix all this information is embodied in @dfn{package definitions}.
19381 Package definitions provide a high-level view of the package. They are
19382 written using the syntax of the Scheme programming language; in fact,
19383 for each package we define a variable bound to the package definition,
19384 and export that variable from a module (@pxref{Package Modules}).
19385 However, in-depth Scheme knowledge is @emph{not} a prerequisite for
19386 creating packages. For more information on package definitions,
19387 @pxref{Defining Packages}.
19388
19389 Once a package definition is in place, stored in a file in the Guix
19390 source tree, it can be tested using the @command{guix build} command
19391 (@pxref{Invoking guix build}). For example, assuming the new package is
19392 called @code{gnew}, you may run this command from the Guix build tree
19393 (@pxref{Running Guix Before It Is Installed}):
19394
19395 @example
19396 ./pre-inst-env guix build gnew --keep-failed
19397 @end example
19398
19399 Using @code{--keep-failed} makes it easier to debug build failures since
19400 it provides access to the failed build tree. Another useful
19401 command-line option when debugging is @code{--log-file}, to access the
19402 build log.
19403
19404 If the package is unknown to the @command{guix} command, it may be that
19405 the source file contains a syntax error, or lacks a @code{define-public}
19406 clause to export the package variable. To figure it out, you may load
19407 the module from Guile to get more information about the actual error:
19408
19409 @example
19410 ./pre-inst-env guile -c '(use-modules (gnu packages gnew))'
19411 @end example
19412
19413 Once your package builds correctly, please send us a patch
19414 (@pxref{Contributing}). Well, if you need help, we will be happy to
19415 help you too. Once the patch is committed in the Guix repository, the
19416 new package automatically gets built on the supported platforms by
19417 @url{http://hydra.gnu.org/jobset/gnu/master, our continuous integration
19418 system}.
19419
19420 @cindex substituter
19421 Users can obtain the new package definition simply by running
19422 @command{guix pull} (@pxref{Invoking guix pull}). When
19423 @code{hydra.gnu.org} is done building the package, installing the
19424 package automatically downloads binaries from there
19425 (@pxref{Substitutes}). The only place where human intervention is
19426 needed is to review and apply the patch.
19427
19428
19429 @menu
19430 * Software Freedom:: What may go into the distribution.
19431 * Package Naming:: What's in a name?
19432 * Version Numbers:: When the name is not enough.
19433 * Synopses and Descriptions:: Helping users find the right package.
19434 * Python Modules:: A touch of British comedy.
19435 * Perl Modules:: Little pearls.
19436 * Java Packages:: Coffee break.
19437 * Fonts:: Fond of fonts.
19438 @end menu
19439
19440 @node Software Freedom
19441 @subsection Software Freedom
19442
19443 @c Adapted from http://www.gnu.org/philosophy/philosophy.html.
19444 @cindex free software
19445 The GNU operating system has been developed so that users can have
19446 freedom in their computing. GNU is @dfn{free software}, meaning that
19447 users have the @url{http://www.gnu.org/philosophy/free-sw.html,four
19448 essential freedoms}: to run the program, to study and change the program
19449 in source code form, to redistribute exact copies, and to distribute
19450 modified versions. Packages found in the GNU distribution provide only
19451 software that conveys these four freedoms.
19452
19453 In addition, the GNU distribution follow the
19454 @url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,free
19455 software distribution guidelines}. Among other things, these guidelines
19456 reject non-free firmware, recommendations of non-free software, and
19457 discuss ways to deal with trademarks and patents.
19458
19459 Some otherwise free upstream package sources contain a small and optional
19460 subset that violates the above guidelines, for instance because this subset
19461 is itself non-free code. When that happens, the offending items are removed
19462 with appropriate patches or code snippets in the @code{origin} form of the
19463 package (@pxref{Defining Packages}). This way, @code{guix
19464 build --source} returns the ``freed'' source rather than the unmodified
19465 upstream source.
19466
19467
19468 @node Package Naming
19469 @subsection Package Naming
19470
19471 @cindex package name
19472 A package has actually two names associated with it:
19473 First, there is the name of the @emph{Scheme variable}, the one following
19474 @code{define-public}. By this name, the package can be made known in the
19475 Scheme code, for instance as input to another package. Second, there is
19476 the string in the @code{name} field of a package definition. This name
19477 is used by package management commands such as
19478 @command{guix package} and @command{guix build}.
19479
19480 Both are usually the same and correspond to the lowercase conversion of
19481 the project name chosen upstream, with underscores replaced with
19482 hyphens. For instance, GNUnet is available as @code{gnunet}, and
19483 SDL_net as @code{sdl-net}.
19484
19485 We do not add @code{lib} prefixes for library packages, unless these are
19486 already part of the official project name. But @pxref{Python
19487 Modules} and @ref{Perl Modules} for special rules concerning modules for
19488 the Python and Perl languages.
19489
19490 Font package names are handled differently, @pxref{Fonts}.
19491
19492
19493 @node Version Numbers
19494 @subsection Version Numbers
19495
19496 @cindex package version
19497 We usually package only the latest version of a given free software
19498 project. But sometimes, for instance for incompatible library versions,
19499 two (or more) versions of the same package are needed. These require
19500 different Scheme variable names. We use the name as defined
19501 in @ref{Package Naming}
19502 for the most recent version; previous versions use the same name, suffixed
19503 by @code{-} and the smallest prefix of the version number that may
19504 distinguish the two versions.
19505
19506 The name inside the package definition is the same for all versions of a
19507 package and does not contain any version number.
19508
19509 For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:
19510
19511 @example
19512 (define-public gtk+
19513 (package
19514 (name "gtk+")
19515 (version "3.9.12")
19516 ...))
19517 (define-public gtk+-2
19518 (package
19519 (name "gtk+")
19520 (version "2.24.20")
19521 ...))
19522 @end example
19523 If we also wanted GTK+ 3.8.2, this would be packaged as
19524 @example
19525 (define-public gtk+-3.8
19526 (package
19527 (name "gtk+")
19528 (version "3.8.2")
19529 ...))
19530 @end example
19531
19532 @c See <https://lists.gnu.org/archive/html/guix-devel/2016-01/msg00425.html>,
19533 @c for a discussion of what follows.
19534 @cindex version number, for VCS snapshots
19535 Occasionally, we package snapshots of upstream's version control system
19536 (VCS) instead of formal releases. This should remain exceptional,
19537 because it is up to upstream developers to clarify what the stable
19538 release is. Yet, it is sometimes necessary. So, what should we put in
19539 the @code{version} field?
19540
19541 Clearly, we need to make the commit identifier of the VCS snapshot
19542 visible in the version string, but we also need to make sure that the
19543 version string is monotonically increasing so that @command{guix package
19544 --upgrade} can determine which version is newer. Since commit
19545 identifiers, notably with Git, are not monotonically increasing, we add
19546 a revision number that we increase each time we upgrade to a newer
19547 snapshot. The resulting version string looks like this:
19548
19549 @example
19550 2.0.11-3.cabba9e
19551 ^ ^ ^
19552 | | `-- upstream commit ID
19553 | |
19554 | `--- Guix package revision
19555 |
19556 latest upstream version
19557 @end example
19558
19559 It is a good idea to strip commit identifiers in the @code{version}
19560 field to, say, 7 digits. It avoids an aesthetic annoyance (assuming
19561 aesthetics have a role to play here) as well as problems related to OS
19562 limits such as the maximum shebang length (127 bytes for the Linux
19563 kernel.) It is best to use the full commit identifiers in
19564 @code{origin}s, though, to avoid ambiguities. A typical package
19565 definition may look like this:
19566
19567 @example
19568 (define my-package
19569 (let ((commit "c3f29bc928d5900971f65965feaae59e1272a3f7")
19570 (revision "1")) ;Guix package revision
19571 (package
19572 (version (string-append "0.9-" revision "."
19573 (string-take commit 7)))
19574 (source (origin
19575 (method git-fetch)
19576 (uri (git-reference
19577 (url "git://example.org/my-package.git")
19578 (commit commit)))
19579 (sha256 (base32 "1mbikn@dots{}"))
19580 (file-name (string-append "my-package-" version
19581 "-checkout"))))
19582 ;; @dots{}
19583 )))
19584 @end example
19585
19586 @node Synopses and Descriptions
19587 @subsection Synopses and Descriptions
19588
19589 @cindex package description
19590 @cindex package synopsis
19591 As we have seen before, each package in GNU@tie{}Guix includes a
19592 synopsis and a description (@pxref{Defining Packages}). Synopses and
19593 descriptions are important: They are what @command{guix package
19594 --search} searches, and a crucial piece of information to help users
19595 determine whether a given package suits their needs. Consequently,
19596 packagers should pay attention to what goes into them.
19597
19598 Synopses must start with a capital letter and must not end with a
19599 period. They must not start with ``a'' or ``the'', which usually does
19600 not bring anything; for instance, prefer ``File-frobbing tool'' over ``A
19601 tool that frobs files''. The synopsis should say what the package
19602 is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is
19603 used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines
19604 matching a pattern''.
19605
19606 Keep in mind that the synopsis must be meaningful for a very wide
19607 audience. For example, ``Manipulate alignments in the SAM format''
19608 might make sense for a seasoned bioinformatics researcher, but might be
19609 fairly unhelpful or even misleading to a non-specialized audience. It
19610 is a good idea to come up with a synopsis that gives an idea of the
19611 application domain of the package. In this example, this might give
19612 something like ``Manipulate nucleotide sequence alignments'', which
19613 hopefully gives the user a better idea of whether this is what they are
19614 looking for.
19615
19616 Descriptions should take between five and ten lines. Use full
19617 sentences, and avoid using acronyms without first introducing them.
19618 Please avoid marketing phrases such as ``world-leading'',
19619 ``industrial-strength'', and ``next-generation'', and avoid superlatives
19620 like ``the most advanced''---they are not helpful to users looking for a
19621 package and may even sound suspicious. Instead, try to be factual,
19622 mentioning use cases and features.
19623
19624 @cindex Texinfo markup, in package descriptions
19625 Descriptions can include Texinfo markup, which is useful to introduce
19626 ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or
19627 hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you
19628 should be careful when using some characters for example @samp{@@} and
19629 curly braces which are the basic special characters in Texinfo
19630 (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces
19631 such as @command{guix package --show} take care of rendering it
19632 appropriately.
19633
19634 Synopses and descriptions are translated by volunteers
19635 @uref{http://translationproject.org/domain/guix-packages.html, at the
19636 Translation Project} so that as many users as possible can read them in
19637 their native language. User interfaces search them and display them in
19638 the language specified by the current locale.
19639
19640 To allow @command{xgettext} to extract them as translatable strings,
19641 synopses and descriptions @emph{must be literal strings}. This means
19642 that you cannot use @code{string-append} or @code{format} to construct
19643 these strings:
19644
19645 @lisp
19646 (package
19647 ;; @dots{}
19648 (synopsis "This is translatable")
19649 (description (string-append "This is " "*not*" " translatable.")))
19650 @end lisp
19651
19652 Translation is a lot of work so, as a packager, please pay even more
19653 attention to your synopses and descriptions as every change may entail
19654 additional work for translators. In order to help them, it is possible
19655 to make recommendations or instructions visible to them by inserting
19656 special comments like this (@pxref{xgettext Invocation,,, gettext, GNU
19657 Gettext}):
19658
19659 @example
19660 ;; TRANSLATORS: "X11 resize-and-rotate" should not be translated.
19661 (description "ARandR is designed to provide a simple visual front end
19662 for the X11 resize-and-rotate (RandR) extension. @dots{}")
19663 @end example
19664
19665
19666 @node Python Modules
19667 @subsection Python Modules
19668
19669 @cindex python
19670 We currently package Python 2 and Python 3, under the Scheme variable names
19671 @code{python-2} and @code{python} as explained in @ref{Version Numbers}.
19672 To avoid confusion and naming clashes with other programming languages, it
19673 seems desirable that the name of a package for a Python module contains
19674 the word @code{python}.
19675
19676 Some modules are compatible with only one version of Python, others with both.
19677 If the package Foo compiles only with Python 3, we name it
19678 @code{python-foo}; if it compiles only with Python 2, we name it
19679 @code{python2-foo}. If it is compatible with both versions, we create two
19680 packages with the corresponding names.
19681
19682 If a project already contains the word @code{python}, we drop this;
19683 for instance, the module python-dateutil is packaged under the names
19684 @code{python-dateutil} and @code{python2-dateutil}. If the project name
19685 starts with @code{py} (e.g. @code{pytz}), we keep it and prefix it as
19686 described above.
19687
19688 @subsubsection Specifying Dependencies
19689 @cindex inputs, for Python packages
19690
19691 Dependency information for Python packages is usually available in the
19692 package source tree, with varying degrees of accuracy: in the
19693 @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}.
19694
19695 Your mission, when writing a recipe for a Python package, is to map
19696 these dependencies to the appropriate type of ``input'' (@pxref{package
19697 Reference, inputs}). Although the @code{pypi} importer normally does a
19698 good job (@pxref{Invoking guix import}), you may want to check the
19699 following check list to determine which dependency goes where.
19700
19701 @itemize
19702
19703 @item
19704 We currently package Python 2 with @code{setuptools} and @code{pip}
19705 installed like Python 3.4 has per default. Thus you don't need to
19706 specify either of these as an input. @command{guix lint} will warn you
19707 if you do.
19708
19709 @item
19710 Python dependencies required at run time go into
19711 @code{propagated-inputs}. They are typically defined with the
19712 @code{install_requires} keyword in @file{setup.py}, or in the
19713 @file{requirements.txt} file.
19714
19715 @item
19716 Python packages required only at build time---e.g., those listed with
19717 the @code{setup_requires} keyword in @file{setup.py}---or only for
19718 testing---e.g., those in @code{tests_require}---go into
19719 @code{native-inputs}. The rationale is that (1) they do not need to be
19720 propagated because they are not needed at run time, and (2) in a
19721 cross-compilation context, it's the ``native'' input that we'd want.
19722
19723 Examples are the @code{pytest}, @code{mock}, and @code{nose} test
19724 frameworks. Of course if any of these packages is also required at
19725 run-time, it needs to go to @code{propagated-inputs}.
19726
19727 @item
19728 Anything that does not fall in the previous categories goes to
19729 @code{inputs}, for example programs or C libraries required for building
19730 Python packages containing C extensions.
19731
19732 @item
19733 If a Python package has optional dependencies (@code{extras_require}),
19734 it is up to you to decide whether to add them or not, based on their
19735 usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix
19736 size}}).
19737
19738 @end itemize
19739
19740
19741 @node Perl Modules
19742 @subsection Perl Modules
19743
19744 @cindex perl
19745 Perl programs standing for themselves are named as any other package,
19746 using the lowercase upstream name.
19747 For Perl packages containing a single class, we use the lowercase class name,
19748 replace all occurrences of @code{::} by dashes and prepend the prefix
19749 @code{perl-}.
19750 So the class @code{XML::Parser} becomes @code{perl-xml-parser}.
19751 Modules containing several classes keep their lowercase upstream name and
19752 are also prepended by @code{perl-}. Such modules tend to have the word
19753 @code{perl} somewhere in their name, which gets dropped in favor of the
19754 prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}.
19755
19756
19757 @node Java Packages
19758 @subsection Java Packages
19759
19760 @cindex java
19761 Java programs standing for themselves are named as any other package,
19762 using the lowercase upstream name.
19763
19764 To avoid confusion and naming clashes with other programming languages,
19765 it is desirable that the name of a package for a Java package is
19766 prefixed with @code{java-}. If a project already contains the word
19767 @code{java}, we drop this; for instance, the package @code{ngsjava} is
19768 packaged under the name @code{java-ngs}.
19769
19770 For Java packages containing a single class or a small class hierarchy,
19771 we use the lowercase class name, replace all occurrences of @code{.} by
19772 dashes and prepend the prefix @code{java-}. So the class
19773 @code{apache.commons.cli} becomes package
19774 @code{java-apache-commons-cli}.
19775
19776
19777 @node Fonts
19778 @subsection Fonts
19779
19780 @cindex fonts
19781 For fonts that are in general not installed by a user for typesetting
19782 purposes, or that are distributed as part of a larger software package,
19783 we rely on the general packaging rules for software; for instance, this
19784 applies to the fonts delivered as part of the X.Org system or fonts that
19785 are part of TeX Live.
19786
19787 To make it easier for a user to search for fonts, names for other packages
19788 containing only fonts are constructed as follows, independently of the
19789 upstream package name.
19790
19791 The name of a package containing only one font family starts with
19792 @code{font-}; it is followed by the foundry name and a dash @code{-}
19793 if the foundry is known, and the font family name, in which spaces are
19794 replaced by dashes (and as usual, all upper case letters are transformed
19795 to lower case).
19796 For example, the Gentium font family by SIL is packaged under the name
19797 @code{font-sil-gentium}.
19798
19799 For a package containing several font families, the name of the collection
19800 is used in the place of the font family name.
19801 For instance, the Liberation fonts consist of three families,
19802 Liberation Sans, Liberation Serif and Liberation Mono.
19803 These could be packaged separately under the names
19804 @code{font-liberation-sans} and so on; but as they are distributed together
19805 under a common name, we prefer to package them together as
19806 @code{font-liberation}.
19807
19808 In the case where several formats of the same font family or font collection
19809 are packaged separately, a short form of the format, prepended by a dash,
19810 is added to the package name. We use @code{-ttf} for TrueType fonts,
19811 @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1
19812 fonts.
19813
19814
19815
19816 @node Bootstrapping
19817 @section Bootstrapping
19818
19819 @c Adapted from the ELS 2013 paper.
19820
19821 @cindex bootstrapping
19822
19823 Bootstrapping in our context refers to how the distribution gets built
19824 ``from nothing''. Remember that the build environment of a derivation
19825 contains nothing but its declared inputs (@pxref{Introduction}). So
19826 there's an obvious chicken-and-egg problem: how does the first package
19827 get built? How does the first compiler get compiled? Note that this is
19828 a question of interest only to the curious hacker, not to the regular
19829 user, so you can shamelessly skip this section if you consider yourself
19830 a ``regular user''.
19831
19832 @cindex bootstrap binaries
19833 The GNU system is primarily made of C code, with libc at its core. The
19834 GNU build system itself assumes the availability of a Bourne shell and
19835 command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and
19836 `grep'. Furthermore, build programs---programs that run
19837 @code{./configure}, @code{make}, etc.---are written in Guile Scheme
19838 (@pxref{Derivations}). Consequently, to be able to build anything at
19839 all, from scratch, Guix relies on pre-built binaries of Guile, GCC,
19840 Binutils, libc, and the other packages mentioned above---the
19841 @dfn{bootstrap binaries}.
19842
19843 These bootstrap binaries are ``taken for granted'', though we can also
19844 re-create them if needed (more on that later).
19845
19846 @unnumberedsubsec Preparing to Use the Bootstrap Binaries
19847
19848 @c As of Emacs 24.3, Info-mode displays the image, but since it's a
19849 @c large image, it's hard to scroll. Oh well.
19850 @image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}
19851
19852 The figure above shows the very beginning of the dependency graph of the
19853 distribution, corresponding to the package definitions of the @code{(gnu
19854 packages bootstrap)} module. A similar figure can be generated with
19855 @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:
19856
19857 @example
19858 guix graph -t derivation \
19859 -e '(@@@@ (gnu packages bootstrap) %bootstrap-gcc)' \
19860 | dot -Tps > t.ps
19861 @end example
19862
19863 At this level of detail, things are
19864 slightly complex. First, Guile itself consists of an ELF executable,
19865 along with many source and compiled Scheme files that are dynamically
19866 loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz}
19867 tarball shown in this graph. This tarball is part of Guix's ``source''
19868 distribution, and gets inserted into the store with @code{add-to-store}
19869 (@pxref{The Store}).
19870
19871 But how do we write a derivation that unpacks this tarball and adds it
19872 to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv}
19873 derivation---the first one that gets built---uses @code{bash} as its
19874 builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls
19875 @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar},
19876 @file{xz}, and @file{mkdir} are statically-linked binaries, also part of
19877 the Guix source distribution, whose sole purpose is to allow the Guile
19878 tarball to be unpacked.
19879
19880 Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning
19881 Guile that can be used to run subsequent build programs. Its first task
19882 is to download tarballs containing the other pre-built binaries---this
19883 is what the @code{.tar.xz.drv} derivations do. Guix modules such as
19884 @code{ftp-client.scm} are used for this purpose. The
19885 @code{module-import.drv} derivations import those modules in a directory
19886 in the store, using the original layout. The
19887 @code{module-import-compiled.drv} derivations compile those modules, and
19888 write them in an output directory with the right layout. This
19889 corresponds to the @code{#:modules} argument of
19890 @code{build-expression->derivation} (@pxref{Derivations}).
19891
19892 Finally, the various tarballs are unpacked by the
19893 derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv},
19894 etc., at which point we have a working C tool chain.
19895
19896
19897 @unnumberedsubsec Building the Build Tools
19898
19899 Bootstrapping is complete when we have a full tool chain that does not
19900 depend on the pre-built bootstrap tools discussed above. This
19901 no-dependency requirement is verified by checking whether the files of
19902 the final tool chain contain references to the @file{/gnu/store}
19903 directories of the bootstrap inputs. The process that leads to this
19904 ``final'' tool chain is described by the package definitions found in
19905 the @code{(gnu packages commencement)} module.
19906
19907 The @command{guix graph} command allows us to ``zoom out'' compared to
19908 the graph above, by looking at the level of package objects instead of
19909 individual derivations---remember that a package may translate to
19910 several derivations, typically one derivation to download its source,
19911 one to build the Guile modules it needs, and one to actually build the
19912 package from source. The command:
19913
19914 @example
19915 guix graph -t bag \
19916 -e '(@@@@ (gnu packages commencement)
19917 glibc-final-with-bootstrap-bash)' | dot -Tps > t.ps
19918 @end example
19919
19920 @noindent
19921 produces the dependency graph leading to the ``final'' C
19922 library@footnote{You may notice the @code{glibc-intermediate} label,
19923 suggesting that it is not @emph{quite} final, but as a good
19924 approximation, we will consider it final.}, depicted below.
19925
19926 @image{images/bootstrap-packages,6in,,Dependency graph of the early packages}
19927
19928 @c See <http://lists.gnu.org/archive/html/gnu-system-discuss/2012-10/msg00000.html>.
19929 The first tool that gets built with the bootstrap binaries is
19930 GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite
19931 for all the following packages. From there Findutils and Diffutils get
19932 built.
19933
19934 Then come the first-stage Binutils and GCC, built as pseudo cross
19935 tools---i.e., with @code{--target} equal to @code{--host}. They are
19936 used to build libc. Thanks to this cross-build trick, this libc is
19937 guaranteed not to hold any reference to the initial tool chain.
19938
19939 From there the final Binutils and GCC (not shown above) are built.
19940 GCC uses @code{ld}
19941 from the final Binutils, and links programs against the just-built libc.
19942 This tool chain is used to build the other packages used by Guix and by
19943 the GNU Build System: Guile, Bash, Coreutils, etc.
19944
19945 And voilà! At this point we have the complete set of build tools that
19946 the GNU Build System expects. These are in the @code{%final-inputs}
19947 variable of the @code{(gnu packages commencement)} module, and are
19948 implicitly used by any package that uses @code{gnu-build-system}
19949 (@pxref{Build Systems, @code{gnu-build-system}}).
19950
19951
19952 @unnumberedsubsec Building the Bootstrap Binaries
19953
19954 @cindex bootstrap binaries
19955 Because the final tool chain does not depend on the bootstrap binaries,
19956 those rarely need to be updated. Nevertheless, it is useful to have an
19957 automated way to produce them, should an update occur, and this is what
19958 the @code{(gnu packages make-bootstrap)} module provides.
19959
19960 The following command builds the tarballs containing the bootstrap
19961 binaries (Guile, Binutils, GCC, libc, and a tarball containing a mixture
19962 of Coreutils and other basic command-line tools):
19963
19964 @example
19965 guix build bootstrap-tarballs
19966 @end example
19967
19968 The generated tarballs are those that should be referred to in the
19969 @code{(gnu packages bootstrap)} module mentioned at the beginning of
19970 this section.
19971
19972 Still here? Then perhaps by now you've started to wonder: when do we
19973 reach a fixed point? That is an interesting question! The answer is
19974 unknown, but if you would like to investigate further (and have
19975 significant computational and storage resources to do so), then let us
19976 know.
19977
19978 @node Porting
19979 @section Porting to a New Platform
19980
19981 As discussed above, the GNU distribution is self-contained, and
19982 self-containment is achieved by relying on pre-built ``bootstrap
19983 binaries'' (@pxref{Bootstrapping}). These binaries are specific to an
19984 operating system kernel, CPU architecture, and application binary
19985 interface (ABI). Thus, to port the distribution to a platform that is
19986 not yet supported, one must build those bootstrap binaries, and update
19987 the @code{(gnu packages bootstrap)} module to use them on that platform.
19988
19989 Fortunately, Guix can @emph{cross compile} those bootstrap binaries.
19990 When everything goes well, and assuming the GNU tool chain supports the
19991 target platform, this can be as simple as running a command like this
19992 one:
19993
19994 @example
19995 guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs
19996 @end example
19997
19998 For this to work, the @code{glibc-dynamic-linker} procedure in
19999 @code{(gnu packages bootstrap)} must be augmented to return the right
20000 file name for libc's dynamic linker on that platform; likewise,
20001 @code{system->linux-architecture} in @code{(gnu packages linux)} must be
20002 taught about the new platform.
20003
20004 Once these are built, the @code{(gnu packages bootstrap)} module needs
20005 to be updated to refer to these binaries on the target platform. That
20006 is, the hashes and URLs of the bootstrap tarballs for the new platform
20007 must be added alongside those of the currently supported platforms. The
20008 bootstrap Guile tarball is treated specially: it is expected to be
20009 available locally, and @file{gnu/local.mk} has rules do download it for
20010 the supported architectures; a rule for the new platform must be added
20011 as well.
20012
20013 In practice, there may be some complications. First, it may be that the
20014 extended GNU triplet that specifies an ABI (like the @code{eabi} suffix
20015 above) is not recognized by all the GNU tools. Typically, glibc
20016 recognizes some of these, whereas GCC uses an extra @code{--with-abi}
20017 configure flag (see @code{gcc.scm} for examples of how to handle this).
20018 Second, some of the required packages could fail to build for that
20019 platform. Lastly, the generated binaries could be broken for some
20020 reason.
20021
20022 @c *********************************************************************
20023 @include contributing.texi
20024
20025 @c *********************************************************************
20026 @node Acknowledgments
20027 @chapter Acknowledgments
20028
20029 Guix is based on the @uref{http://nixos.org/nix/, Nix package manager},
20030 which was designed and
20031 implemented by Eelco Dolstra, with contributions from other people (see
20032 the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package
20033 management, and promoted unprecedented features, such as transactional
20034 package upgrades and rollbacks, per-user profiles, and referentially
20035 transparent build processes. Without this work, Guix would not exist.
20036
20037 The Nix-based software distributions, Nixpkgs and NixOS, have also been
20038 an inspiration for Guix.
20039
20040 GNU@tie{}Guix itself is a collective work with contributions from a
20041 number of people. See the @file{AUTHORS} file in Guix for more
20042 information on these fine people. The @file{THANKS} file lists people
20043 who have helped by reporting bugs, taking care of the infrastructure,
20044 providing artwork and themes, making suggestions, and more---thank you!
20045
20046
20047 @c *********************************************************************
20048 @node GNU Free Documentation License
20049 @appendix GNU Free Documentation License
20050 @cindex license, GNU Free Documentation License
20051 @include fdl-1.3.texi
20052
20053 @c *********************************************************************
20054 @node Concept Index
20055 @unnumbered Concept Index
20056 @printindex cp
20057
20058 @node Programming Index
20059 @unnumbered Programming Index
20060 @syncodeindex tp fn
20061 @syncodeindex vr fn
20062 @printindex fn
20063
20064 @bye
20065
20066 @c Local Variables:
20067 @c ispell-local-dictionary: "american";
20068 @c End: