publish: Remove expired cache entries when '--ttl' is used.
[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 BCA689B636553801C3C62150197A5888235FACAC
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 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 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
39 Permission is granted to copy, distribute and/or modify this document
40 under the terms of the GNU Free Documentation License, Version 1.3 or
41 any later version published by the Free Software Foundation; with no
42 Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A
43 copy of the license is included in the section entitled ``GNU Free
44 Documentation License''.
45 @end copying
46
47 @dircategory System administration
48 @direntry
49 * Guix: (guix). Manage installed software and system configuration.
50 * guix package: (guix)Invoking guix package. Installing, removing, and upgrading packages.
51 * guix gc: (guix)Invoking guix gc. Reclaiming unused disk space.
52 * guix pull: (guix)Invoking guix pull. Update the list of available packages.
53 * guix system: (guix)Invoking guix system. Manage the operating system configuration.
54 @end direntry
55
56 @dircategory Software development
57 @direntry
58 * guix environment: (guix)Invoking guix environment. Building development environments with Guix.
59 * guix build: (guix)Invoking guix build. Building packages.
60 * guix pack: (guix)Invoking guix pack. Creating binary bundles.
61 @end direntry
62
63 @titlepage
64 @title GNU Guix Reference Manual
65 @subtitle Using the GNU Guix Functional Package Manager
66 @author The GNU Guix Developers
67
68 @page
69 @vskip 0pt plus 1filll
70 Edition @value{EDITION} @*
71 @value{UPDATED} @*
72
73 @insertcopying
74 @end titlepage
75
76 @contents
77
78 @c *********************************************************************
79 @node Top
80 @top GNU Guix
81
82 This document describes GNU Guix version @value{VERSION}, a functional
83 package management tool written for the GNU system.
84
85 @menu
86 * Introduction:: What is Guix about?
87 * Installation:: Installing Guix.
88 * Package Management:: Package installation, upgrade, etc.
89 * Programming Interface:: Using Guix in Scheme.
90 * Utilities:: Package management commands.
91 * GNU Distribution:: Software for your friendly GNU system.
92 * Contributing:: Your help needed!
93
94 * Acknowledgments:: Thanks!
95 * GNU Free Documentation License:: The license of this manual.
96 * Concept Index:: Concepts.
97 * Programming Index:: Data types, functions, and variables.
98
99 @detailmenu
100 --- The Detailed Node Listing ---
101
102 Installation
103
104 * Binary Installation:: Getting Guix running in no time!
105 * Requirements:: Software needed to build and run Guix.
106 * Running the Test Suite:: Testing Guix.
107 * Setting Up the Daemon:: Preparing the build daemon's environment.
108 * Invoking guix-daemon:: Running the build daemon.
109 * Application Setup:: Application-specific setup.
110
111 Setting Up the Daemon
112
113 * Build Environment Setup:: Preparing the isolated build environment.
114 * Daemon Offload Setup:: Offloading builds to remote machines.
115
116 Package Management
117
118 * Features:: How Guix will make your life brighter.
119 * Invoking guix package:: Package installation, removal, etc.
120 * Substitutes:: Downloading pre-built binaries.
121 * Packages with Multiple Outputs:: Single source package, multiple outputs.
122 * Invoking guix gc:: Running the garbage collector.
123 * Invoking guix pull:: Fetching the latest Guix and distribution.
124 * Invoking guix pack:: Creating software bundles.
125 * Invoking guix archive:: Exporting and importing store files.
126
127 Programming Interface
128
129 * Defining Packages:: Defining new packages.
130 * Build Systems:: Specifying how packages are built.
131 * The Store:: Manipulating the package store.
132 * Derivations:: Low-level interface to package derivations.
133 * The Store Monad:: Purely functional interface to the store.
134 * G-Expressions:: Manipulating build expressions.
135
136 Defining Packages
137
138 * package Reference:: The package data type.
139 * origin Reference:: The origin data type.
140
141 Utilities
142
143 * Invoking guix build:: Building packages from the command line.
144 * Invoking guix edit:: Editing package definitions.
145 * Invoking guix download:: Downloading a file and printing its hash.
146 * Invoking guix hash:: Computing the cryptographic hash of a file.
147 * Invoking guix import:: Importing package definitions.
148 * Invoking guix refresh:: Updating package definitions.
149 * Invoking guix lint:: Finding errors in package definitions.
150 * Invoking guix size:: Profiling disk usage.
151 * Invoking guix graph:: Visualizing the graph of packages.
152 * Invoking guix environment:: Setting up development environments.
153 * Invoking guix publish:: Sharing substitutes.
154 * Invoking guix challenge:: Challenging substitute servers.
155 * Invoking guix copy:: Copying to and from a remote store.
156 * Invoking guix container:: Process isolation.
157
158 Invoking @command{guix build}
159
160 * Common Build Options:: Build options for most commands.
161 * Package Transformation Options:: Creating variants of packages.
162 * Additional Build Options:: Options specific to 'guix build'.
163
164 GNU Distribution
165
166 * System Installation:: Installing the whole operating system.
167 * System Configuration:: Configuring the operating system.
168 * Documentation:: Browsing software user manuals.
169 * Installing Debugging Files:: Feeding the debugger.
170 * Security Updates:: Deploying security fixes quickly.
171 * Package Modules:: Packages from the programmer's viewpoint.
172 * Packaging Guidelines:: Growing the distribution.
173 * Bootstrapping:: GNU/Linux built from scratch.
174 * Porting:: Targeting another platform or kernel.
175
176 System Installation
177
178 * Limitations:: What you can expect.
179 * Hardware Considerations:: Supported hardware.
180 * USB Stick Installation:: Preparing the installation medium.
181 * Preparing for Installation:: Networking, partitioning, etc.
182 * Proceeding with the Installation:: The real thing.
183 * Installing GuixSD in a VM:: GuixSD playground.
184 * Building the Installation Image:: How this comes to be.
185
186 System Configuration
187
188 * Using the Configuration System:: Customizing your GNU system.
189 * operating-system Reference:: Detail of operating-system declarations.
190 * File Systems:: Configuring file system mounts.
191 * Mapped Devices:: Block device extra processing.
192 * User Accounts:: Specifying user accounts.
193 * Locales:: Language and cultural convention settings.
194 * Services:: Specifying system services.
195 * Setuid Programs:: Programs running with root privileges.
196 * X.509 Certificates:: Authenticating HTTPS servers.
197 * Name Service Switch:: Configuring libc's name service switch.
198 * Initial RAM Disk:: Linux-Libre bootstrapping.
199 * GRUB Configuration:: Configuring the boot loader.
200 * Invoking guix system:: Instantiating a system configuration.
201 * Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
202 * Defining Services:: Adding new service definitions.
203
204 Services
205
206 * Base Services:: Essential system services.
207 * Scheduled Job Execution:: The mcron service.
208 * Log Rotation:: The rottlog service.
209 * Networking Services:: Network setup, SSH daemon, etc.
210 * X Window:: Graphical display.
211 * Printing Services:: Local and remote printer support.
212 * Desktop Services:: D-Bus and desktop services.
213 * Database Services:: SQL databases.
214 * Mail Services:: IMAP, POP3, SMTP, and all that.
215 * Messaging Services:: Messaging services.
216 * Kerberos Services:: Kerberos services.
217 * Web Services:: Web servers.
218 * VPN Services:: VPN daemons.
219 * Network File System:: NFS related services.
220 * Continuous Integration:: The Cuirass service.
221 * Power management Services:: The TLP tool.
222 * Miscellaneous Services:: Other services.
223
224 Defining Services
225
226 * Service Composition:: The model for composing services.
227 * Service Types and Services:: Types and services.
228 * Service Reference:: API reference.
229 * Shepherd Services:: A particular type of service.
230
231 Packaging Guidelines
232
233 * Software Freedom:: What may go into the distribution.
234 * Package Naming:: What's in a name?
235 * Version Numbers:: When the name is not enough.
236 * Synopses and Descriptions:: Helping users find the right package.
237 * Python Modules:: A touch of British comedy.
238 * Perl Modules:: Little pearls.
239 * Java Packages:: Coffee break.
240 * Fonts:: Fond of fonts.
241
242 Contributing
243
244 * Building from Git:: The latest and greatest.
245 * Running Guix Before It Is Installed:: Hacker tricks.
246 * The Perfect Setup:: The right tools.
247 * Coding Style:: Hygiene of the contributor.
248 * Submitting Patches:: Share your work.
249
250 Coding Style
251
252 * Programming Paradigm:: How to compose your elements.
253 * Modules:: Where to store your code?
254 * Data Types and Pattern Matching:: Implementing data structures.
255 * Formatting Code:: Writing conventions.
256
257 @end detailmenu
258 @end menu
259
260 @c *********************************************************************
261 @node Introduction
262 @chapter Introduction
263
264 @cindex purpose
265 GNU Guix@footnote{``Guix'' is pronounced like ``geeks'', or ``ɡiːks''
266 using the international phonetic alphabet (IPA).} is a package
267 management tool for the GNU system. Guix makes it easy for unprivileged
268 users to install, upgrade, or remove packages, to roll back to a
269 previous package set, to build packages from source, and generally
270 assists with the creation and maintenance of software environments.
271
272 @cindex user interfaces
273 Guix provides a command-line package management interface
274 (@pxref{Invoking guix package}), a set of command-line utilities
275 (@pxref{Utilities}), as well as Scheme programming interfaces
276 (@pxref{Programming Interface}).
277 @cindex build daemon
278 Its @dfn{build daemon} is responsible for building packages on behalf of
279 users (@pxref{Setting Up the Daemon}) and for downloading pre-built
280 binaries from authorized sources (@pxref{Substitutes}).
281
282 @cindex extensibility of the distribution
283 @cindex customization, of packages
284 Guix includes package definitions for many GNU and non-GNU packages, all
285 of which @uref{https://www.gnu.org/philosophy/free-sw.html, respect the
286 user's computing freedom}. It is @emph{extensible}: users can write
287 their own package definitions (@pxref{Defining Packages}) and make them
288 available as independent package modules (@pxref{Package Modules}). It
289 is also @emph{customizable}: users can @emph{derive} specialized package
290 definitions from existing ones, including from the command line
291 (@pxref{Package Transformation Options}).
292
293 @cindex Guix System Distribution
294 @cindex GuixSD
295 You can install GNU@tie{}Guix on top of an existing GNU/Linux system
296 where it complements the available tools without interference
297 (@pxref{Installation}), or you can use it as part of the standalone
298 @dfn{Guix System Distribution} or GuixSD (@pxref{GNU Distribution}).
299 With GNU@tie{}GuixSD, you @emph{declare} all aspects of the operating
300 system configuration and Guix takes care of instantiating the
301 configuration in a transactional, reproducible, and stateless fashion
302 (@pxref{System Configuration}).
303
304 @cindex functional package management
305 Under the hood, Guix implements the @dfn{functional package management}
306 discipline pioneered by Nix (@pxref{Acknowledgments}).
307 In Guix, the package build and installation process is seen
308 as a @emph{function}, in the mathematical sense. That function takes inputs,
309 such as build scripts, a compiler, and libraries, and
310 returns an installed package. As a pure function, its result depends
311 solely on its inputs---for instance, it cannot refer to software or
312 scripts that were not explicitly passed as inputs. A build function
313 always produces the same result when passed a given set of inputs. It
314 cannot alter the environment of the running system in
315 any way; for instance, it cannot create, modify, or delete files outside
316 of its build and installation directories. This is achieved by running
317 build processes in isolated environments (or @dfn{containers}), where only their
318 explicit inputs are visible.
319
320 @cindex store
321 The result of package build functions is @dfn{cached} in the file
322 system, in a special directory called @dfn{the store} (@pxref{The
323 Store}). Each package is installed in a directory of its own in the
324 store---by default under @file{/gnu/store}. The directory name contains
325 a hash of all the inputs used to build that package; thus, changing an
326 input yields a different directory name.
327
328 This approach is the foundation for the salient features of Guix: support
329 for transactional package upgrade and rollback, per-user installation, and
330 garbage collection of packages (@pxref{Features}).
331
332
333 @c *********************************************************************
334 @node Installation
335 @chapter Installation
336
337 @cindex installing Guix
338 GNU Guix is available for download from its website at
339 @url{http://www.gnu.org/software/guix/}. This section describes the
340 software requirements of Guix, as well as how to install it and get
341 ready to use it.
342
343 Note that this section is concerned with the installation of the package
344 manager, which can be done on top of a running GNU/Linux system. If,
345 instead, you want to install the complete GNU operating system,
346 @pxref{System Installation}.
347
348 @cindex foreign distro
349 When installed on a running GNU/Linux system---thereafter called a
350 @dfn{foreign distro}---GNU@tie{}Guix complements the available tools
351 without interference. Its data lives exclusively in two directories,
352 usually @file{/gnu/store} and @file{/var/guix}; other files on your
353 system, such as @file{/etc}, are left untouched.
354
355 Once installed, Guix can be updated by running @command{guix pull}
356 (@pxref{Invoking guix pull}).
357
358 @menu
359 * Binary Installation:: Getting Guix running in no time!
360 * Requirements:: Software needed to build and run Guix.
361 * Running the Test Suite:: Testing Guix.
362 * Setting Up the Daemon:: Preparing the build daemon's environment.
363 * Invoking guix-daemon:: Running the build daemon.
364 * Application Setup:: Application-specific setup.
365 @end menu
366
367 @node Binary Installation
368 @section Binary Installation
369
370 @cindex installing Guix from binaries
371 This section describes how to install Guix on an arbitrary system from a
372 self-contained tarball providing binaries for Guix and for all its
373 dependencies. This is often quicker than installing from source, which
374 is described in the next sections. The only requirement is to have
375 GNU@tie{}tar and Xz.
376
377 Installing goes along these lines:
378
379 @enumerate
380 @item
381 @cindex downloading Guix binary
382 Download the binary tarball from
383 @indicateurl{ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz},
384 where @var{system} is @code{x86_64-linux} for an @code{x86_64} machine
385 already running the kernel Linux, and so on.
386
387 @c The following is somewhat duplicated in ``System Installation''.
388 Make sure to download the associated @file{.sig} file and to verify the
389 authenticity of the tarball against it, along these lines:
390
391 @example
392 $ wget ftp://alpha.gnu.org/gnu/guix/guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
393 $ gpg --verify guix-binary-@value{VERSION}.@var{system}.tar.xz.sig
394 @end example
395
396 If that command fails because you do not have the required public key,
397 then run this command to import it:
398
399 @example
400 $ gpg --keyserver pgp.mit.edu --recv-keys @value{OPENPGP-SIGNING-KEY-ID}
401 @end example
402
403 @noindent
404 and rerun the @code{gpg --verify} command.
405 @c end authentication part
406
407 @item
408 As @code{root}, run:
409
410 @example
411 # cd /tmp
412 # tar --warning=no-timestamp -xf \
413 guix-binary-@value{VERSION}.@var{system}.tar.xz
414 # mv var/guix /var/ && mv gnu /
415 @end example
416
417 This creates @file{/gnu/store} (@pxref{The Store}) and @file{/var/guix}.
418 The latter contains a ready-to-use profile for @code{root} (see next
419 step.)
420
421 Do @emph{not} unpack the tarball on a working Guix system since that
422 would overwrite its own essential files.
423
424 The @code{--warning=no-timestamp} option makes sure GNU@tie{}tar does
425 not emit warnings about ``implausibly old time stamps'' (such
426 warnings were triggered by GNU@tie{}tar 1.26 and older; recent
427 versions are fine.)
428 They stem from the fact that all the
429 files in the archive have their modification time set to zero (which
430 means January 1st, 1970.) This is done on purpose to make sure the
431 archive content is independent of its creation time, thus making it
432 reproducible.
433
434 @item
435 Make @code{root}'s profile available under @file{~/.guix-profile}:
436
437 @example
438 # ln -sf /var/guix/profiles/per-user/root/guix-profile \
439 ~root/.guix-profile
440 @end example
441
442 Source @file{etc/profile} to augment @code{PATH} and other relevant
443 environment variables:
444
445 @example
446 # GUIX_PROFILE=$HOME/.guix-profile \
447 source $GUIX_PROFILE/etc/profile
448 @end example
449
450 @item
451 Create the group and user accounts for build users as explained below
452 (@pxref{Build Environment Setup}).
453
454 @item
455 Run the daemon, and set it to automatically start on boot.
456
457 If your host distro uses the systemd init system, this can be achieved
458 with these commands:
459
460 @c Versions of systemd that supported symlinked service files are not
461 @c yet widely deployed, so we should suggest that users copy the service
462 @c files into place.
463 @c
464 @c See this thread for more information:
465 @c http://lists.gnu.org/archive/html/guix-devel/2017-01/msg01199.html
466
467 @example
468 # cp ~root/.guix-profile/lib/systemd/system/guix-daemon.service \
469 /etc/systemd/system/
470 # systemctl start guix-daemon && systemctl enable guix-daemon
471 @end example
472
473 If your host distro uses the Upstart init system:
474
475 @example
476 # initctl reload-configuration
477 # cp ~root/.guix-profile/lib/upstart/system/guix-daemon.conf /etc/init/
478 # start guix-daemon
479 @end example
480
481 Otherwise, you can still start the daemon manually with:
482
483 @example
484 # ~root/.guix-profile/bin/guix-daemon --build-users-group=guixbuild
485 @end example
486
487 @item
488 Make the @command{guix} command available to other users on the machine,
489 for instance with:
490
491 @example
492 # mkdir -p /usr/local/bin
493 # cd /usr/local/bin
494 # ln -s /var/guix/profiles/per-user/root/guix-profile/bin/guix
495 @end example
496
497 It is also a good idea to make the Info version of this manual available
498 there:
499
500 @example
501 # mkdir -p /usr/local/share/info
502 # cd /usr/local/share/info
503 # for i in /var/guix/profiles/per-user/root/guix-profile/share/info/* ;
504 do ln -s $i ; done
505 @end example
506
507 That way, assuming @file{/usr/local/share/info} is in the search path,
508 running @command{info guix} will open this manual (@pxref{Other Info
509 Directories,,, texinfo, GNU Texinfo}, for more details on changing the
510 Info search path.)
511
512 @item
513 @cindex substitutes, authorization thereof
514 To use substitutes from @code{hydra.gnu.org} or one of its mirrors
515 (@pxref{Substitutes}), authorize them:
516
517 @example
518 # guix archive --authorize < ~root/.guix-profile/share/guix/hydra.gnu.org.pub
519 @end example
520
521 @item
522 Each user may need to perform a few additional steps to make their Guix
523 environment ready for use, @pxref{Application Setup}.
524 @end enumerate
525
526 Voilà, the installation is complete!
527
528 You can confirm that Guix is working by installing a sample package into
529 the root profile:
530
531 @example
532 # guix package -i hello
533 @end example
534
535 The @code{guix} package must remain available in @code{root}'s profile,
536 or it would become subject to garbage collection---in which case you
537 would find yourself badly handicapped by the lack of the @command{guix}
538 command. In other words, do not remove @code{guix} by running
539 @code{guix package -r guix}.
540
541 The binary installation tarball can be (re)produced and verified simply
542 by running the following command in the Guix source tree:
543
544 @example
545 make guix-binary.@var{system}.tar.xz
546 @end example
547
548 @noindent
549 ... which, in turn, runs:
550
551 @example
552 guix pack -s @var{system} --localstatedir guix
553 @end example
554
555 @xref{Invoking guix pack}, for more info on this handy tool.
556
557 @node Requirements
558 @section Requirements
559
560 This section lists requirements when building Guix from source. The
561 build procedure for Guix is the same as for other GNU software, and is
562 not covered here. Please see the files @file{README} and @file{INSTALL}
563 in the Guix source tree for additional details.
564
565 GNU Guix depends on the following packages:
566
567 @itemize
568 @item @url{http://gnu.org/software/guile/, GNU Guile}, version 2.0.9 or
569 later, including 2.2.x;
570 @item @url{http://gnupg.org/, GNU libgcrypt};
571 @item
572 @uref{http://gnutls.org/, GnuTLS}, specifically its Guile bindings
573 (@pxref{Guile Preparations, how to install the GnuTLS bindings for
574 Guile,, gnutls-guile, GnuTLS-Guile});
575 @item @url{http://www.gnu.org/software/make/, GNU Make}.
576 @end itemize
577
578 The following dependencies are optional:
579
580 @itemize
581 @item
582 Installing
583 @url{http://savannah.nongnu.org/projects/guile-json/, Guile-JSON} will
584 allow you to use the @command{guix import pypi} command (@pxref{Invoking
585 guix import}). It is of
586 interest primarily for developers and not for casual users.
587
588 @item
589 @c Note: We need at least 0.10.2 for 'channel-send-eof'.
590 Support for build offloading (@pxref{Daemon Offload Setup}) and
591 @command{guix copy} (@pxref{Invoking guix copy}) depends on
592 @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH},
593 version 0.10.2 or later.
594
595 @item
596 When @url{http://zlib.net, zlib} is available, @command{guix publish}
597 can compress build byproducts (@pxref{Invoking guix publish}).
598 @end itemize
599
600 Unless @code{--disable-daemon} was passed to @command{configure}, the
601 following packages are also needed:
602
603 @itemize
604 @item @url{http://sqlite.org, SQLite 3};
605 @item @url{http://www.bzip.org, libbz2};
606 @item @url{http://gcc.gnu.org, GCC's g++}, with support for the
607 C++11 standard.
608 @end itemize
609
610 @cindex state directory
611 When configuring Guix on a system that already has a Guix installation,
612 be sure to specify the same state directory as the existing installation
613 using the @code{--localstatedir} option of the @command{configure}
614 script (@pxref{Directory Variables, @code{localstatedir},, standards,
615 GNU Coding Standards}). The @command{configure} script protects against
616 unintended misconfiguration of @var{localstatedir} so you do not
617 inadvertently corrupt your store (@pxref{The Store}).
618
619 @cindex Nix, compatibility
620 When a working installation of @url{http://nixos.org/nix/, the Nix package
621 manager} is available, you
622 can instead configure Guix with @code{--disable-daemon}. In that case,
623 Nix replaces the three dependencies above.
624
625 Guix is compatible with Nix, so it is possible to share the same store
626 between both. To do so, you must pass @command{configure} not only the
627 same @code{--with-store-dir} value, but also the same
628 @code{--localstatedir} value. The latter is essential because it
629 specifies where the database that stores metadata about the store is
630 located, among other things. The default values for Nix are
631 @code{--with-store-dir=/nix/store} and @code{--localstatedir=/nix/var}.
632 Note that @code{--disable-daemon} is not required if
633 your goal is to share the store with Nix.
634
635 @node Running the Test Suite
636 @section Running the Test Suite
637
638 @cindex test suite
639 After a successful @command{configure} and @code{make} run, it is a good
640 idea to run the test suite. It can help catch issues with the setup or
641 environment, or bugs in Guix itself---and really, reporting test
642 failures is a good way to help improve the software. To run the test
643 suite, type:
644
645 @example
646 make check
647 @end example
648
649 Test cases can run in parallel: you can use the @code{-j} option of
650 GNU@tie{}make to speed things up. The first run may take a few minutes
651 on a recent machine; subsequent runs will be faster because the store
652 that is created for test purposes will already have various things in
653 cache.
654
655 It is also possible to run a subset of the tests by defining the
656 @code{TESTS} makefile variable as in this example:
657
658 @example
659 make check TESTS="tests/store.scm tests/cpio.scm"
660 @end example
661
662 By default, tests results are displayed at a file level. In order to
663 see the details of every individual test cases, it is possible to define
664 the @code{SCM_LOG_DRIVER_FLAGS} makefile variable as in this example:
665
666 @example
667 make check TESTS="tests/base64.scm" SCM_LOG_DRIVER_FLAGS="--brief=no"
668 @end example
669
670 Upon failure, please email @email{bug-guix@@gnu.org} and attach the
671 @file{test-suite.log} file. Please specify the Guix version being used
672 as well as version numbers of the dependencies (@pxref{Requirements}) in
673 your message.
674
675 Guix also comes with a whole-system test suite that tests complete
676 GuixSD operating system instances. It can only run on systems where
677 Guix is already installed, using:
678
679 @example
680 make check-system
681 @end example
682
683 @noindent
684 or, again, by defining @code{TESTS} to select a subset of tests to run:
685
686 @example
687 make check-system TESTS="basic mcron"
688 @end example
689
690 These system tests are defined in the @code{(gnu tests @dots{})}
691 modules. They work by running the operating systems under test with
692 lightweight instrumentation in a virtual machine (VM). They can be
693 computationally intensive or rather cheap, depending on whether
694 substitutes are available for their dependencies (@pxref{Substitutes}).
695 Some of them require a lot of storage space to hold VM images.
696
697 Again in case of test failures, please send @email{bug-guix@@gnu.org}
698 all the details.
699
700 @node Setting Up the Daemon
701 @section Setting Up the Daemon
702
703 @cindex daemon
704 Operations such as building a package or running the garbage collector
705 are all performed by a specialized process, the @dfn{build daemon}, on
706 behalf of clients. Only the daemon may access the store and its
707 associated database. Thus, any operation that manipulates the store
708 goes through the daemon. For instance, command-line tools such as
709 @command{guix package} and @command{guix build} communicate with the
710 daemon (@i{via} remote procedure calls) to instruct it what to do.
711
712 The following sections explain how to prepare the build daemon's
713 environment. See also @ref{Substitutes}, for information on how to allow
714 the daemon to download pre-built binaries.
715
716 @menu
717 * Build Environment Setup:: Preparing the isolated build environment.
718 * Daemon Offload Setup:: Offloading builds to remote machines.
719 @end menu
720
721 @node Build Environment Setup
722 @subsection Build Environment Setup
723
724 @cindex build environment
725 In a standard multi-user setup, Guix and its daemon---the
726 @command{guix-daemon} program---are installed by the system
727 administrator; @file{/gnu/store} is owned by @code{root} and
728 @command{guix-daemon} runs as @code{root}. Unprivileged users may use
729 Guix tools to build packages or otherwise access the store, and the
730 daemon will do it on their behalf, ensuring that the store is kept in a
731 consistent state, and allowing built packages to be shared among users.
732
733 @cindex build users
734 When @command{guix-daemon} runs as @code{root}, you may not want package
735 build processes themselves to run as @code{root} too, for obvious
736 security reasons. To avoid that, a special pool of @dfn{build users}
737 should be created for use by build processes started by the daemon.
738 These build users need not have a shell and a home directory: they will
739 just be used when the daemon drops @code{root} privileges in build
740 processes. Having several such users allows the daemon to launch
741 distinct build processes under separate UIDs, which guarantees that they
742 do not interfere with each other---an essential feature since builds are
743 regarded as pure functions (@pxref{Introduction}).
744
745 On a GNU/Linux system, a build user pool may be created like this (using
746 Bash syntax and the @code{shadow} commands):
747
748 @c See http://lists.gnu.org/archive/html/bug-guix/2013-01/msg00239.html
749 @c for why `-G' is needed.
750 @example
751 # groupadd --system guixbuild
752 # for i in `seq -w 1 10`;
753 do
754 useradd -g guixbuild -G guixbuild \
755 -d /var/empty -s `which nologin` \
756 -c "Guix build user $i" --system \
757 guixbuilder$i;
758 done
759 @end example
760
761 @noindent
762 The number of build users determines how many build jobs may run in
763 parallel, as specified by the @option{--max-jobs} option
764 (@pxref{Invoking guix-daemon, @option{--max-jobs}}). To use
765 @command{guix system vm} and related commands, you may need to add the
766 build users to the @code{kvm} group so they can access @file{/dev/kvm},
767 using @code{-G guixbuild,kvm} instead of @code{-G guixbuild}
768 (@pxref{Invoking guix system}).
769
770 The @code{guix-daemon} program may then be run as @code{root} with the
771 following command@footnote{If your machine uses the systemd init system,
772 dropping the @file{@var{prefix}/lib/systemd/system/guix-daemon.service}
773 file in @file{/etc/systemd/system} will ensure that
774 @command{guix-daemon} is automatically started. Similarly, if your
775 machine uses the Upstart init system, drop the
776 @file{@var{prefix}/lib/upstart/system/guix-daemon.conf}
777 file in @file{/etc/init}.}:
778
779 @example
780 # guix-daemon --build-users-group=guixbuild
781 @end example
782
783 @cindex chroot
784 @noindent
785 This way, the daemon starts build processes in a chroot, under one of
786 the @code{guixbuilder} users. On GNU/Linux, by default, the chroot
787 environment contains nothing but:
788
789 @c Keep this list in sync with libstore/build.cc! -----------------------
790 @itemize
791 @item
792 a minimal @code{/dev} directory, created mostly independently from the
793 host @code{/dev}@footnote{``Mostly'', because while the set of files
794 that appear in the chroot's @code{/dev} is fixed, most of these files
795 can only be created if the host has them.};
796
797 @item
798 the @code{/proc} directory; it only shows the processes of the container
799 since a separate PID name space is used;
800
801 @item
802 @file{/etc/passwd} with an entry for the current user and an entry for
803 user @file{nobody};
804
805 @item
806 @file{/etc/group} with an entry for the user's group;
807
808 @item
809 @file{/etc/hosts} with an entry that maps @code{localhost} to
810 @code{127.0.0.1};
811
812 @item
813 a writable @file{/tmp} directory.
814 @end itemize
815
816 You can influence the directory where the daemon stores build trees
817 @i{via} the @code{TMPDIR} environment variable. However, the build tree
818 within the chroot is always called @file{/tmp/guix-build-@var{name}.drv-0},
819 where @var{name} is the derivation name---e.g., @code{coreutils-8.24}.
820 This way, the value of @code{TMPDIR} does not leak inside build
821 environments, which avoids discrepancies in cases where build processes
822 capture the name of their build tree.
823
824 @vindex http_proxy
825 The daemon also honors the @code{http_proxy} environment variable for
826 HTTP downloads it performs, be it for fixed-output derivations
827 (@pxref{Derivations}) or for substitutes (@pxref{Substitutes}).
828
829 If you are installing Guix as an unprivileged user, it is still possible
830 to run @command{guix-daemon} provided you pass @code{--disable-chroot}.
831 However, build processes will not be isolated from one another, and not
832 from the rest of the system. Thus, build processes may interfere with
833 each other, and may access programs, libraries, and other files
834 available on the system---making it much harder to view them as
835 @emph{pure} functions.
836
837
838 @node Daemon Offload Setup
839 @subsection Using the Offload Facility
840
841 @cindex offloading
842 @cindex build hook
843 When desired, the build daemon can @dfn{offload} derivation builds to
844 other machines running Guix, using the @code{offload} @dfn{build
845 hook}@footnote{This feature is available only when
846 @uref{https://github.com/artyom-poptsov/guile-ssh, Guile-SSH} is
847 present.}. When that
848 feature is enabled, a list of user-specified build machines is read from
849 @file{/etc/guix/machines.scm}; every time a build is requested, for
850 instance via @code{guix build}, the daemon attempts to offload it to one
851 of the machines that satisfy the constraints of the derivation, in
852 particular its system type---e.g., @file{x86_64-linux}. Missing
853 prerequisites for the build are copied over SSH to the target machine,
854 which then proceeds with the build; upon success the output(s) of the
855 build are copied back to the initial machine.
856
857 The @file{/etc/guix/machines.scm} file typically looks like this:
858
859 @example
860 (list (build-machine
861 (name "eightysix.example.org")
862 (system "x86_64-linux")
863 (host-key "ssh-ed25519 AAAAC3Nza@dots{}")
864 (user "bob")
865 (speed 2.)) ;incredibly fast!
866
867 (build-machine
868 (name "meeps.example.org")
869 (system "mips64el-linux")
870 (host-key "ssh-rsa AAAAB3Nza@dots{}")
871 (user "alice")
872 (private-key
873 (string-append (getenv "HOME")
874 "/.ssh/identity-for-guix"))))
875 @end example
876
877 @noindent
878 In the example above we specify a list of two build machines, one for
879 the @code{x86_64} architecture and one for the @code{mips64el}
880 architecture.
881
882 In fact, this file is---not surprisingly!---a Scheme file that is
883 evaluated when the @code{offload} hook is started. Its return value
884 must be a list of @code{build-machine} objects. While this example
885 shows a fixed list of build machines, one could imagine, say, using
886 DNS-SD to return a list of potential build machines discovered in the
887 local network (@pxref{Introduction, Guile-Avahi,, guile-avahi, Using
888 Avahi in Guile Scheme Programs}). The @code{build-machine} data type is
889 detailed below.
890
891 @deftp {Data Type} build-machine
892 This data type represents build machines to which the daemon may offload
893 builds. The important fields are:
894
895 @table @code
896
897 @item name
898 The host name of the remote machine.
899
900 @item system
901 The system type of the remote machine---e.g., @code{"x86_64-linux"}.
902
903 @item user
904 The user account to use when connecting to the remote machine over SSH.
905 Note that the SSH key pair must @emph{not} be passphrase-protected, to
906 allow non-interactive logins.
907
908 @item host-key
909 This must be the machine's SSH @dfn{public host key} in OpenSSH format.
910 This is used to authenticate the machine when we connect to it. It is a
911 long string that looks like this:
912
913 @example
914 ssh-ed25519 AAAAC3NzaC@dots{}mde+UhL hint@@example.org
915 @end example
916
917 If the machine is running the OpenSSH daemon, @command{sshd}, the host
918 key can be found in a file such as
919 @file{/etc/ssh/ssh_host_ed25519_key.pub}.
920
921 If the machine is running the SSH daemon of GNU@tie{}lsh,
922 @command{lshd}, the host key is in @file{/etc/lsh/host-key.pub} or a
923 similar file. It can be converted to the OpenSSH format using
924 @command{lsh-export-key} (@pxref{Converting keys,,, lsh, LSH Manual}):
925
926 @example
927 $ lsh-export-key --openssh < /etc/lsh/host-key.pub
928 ssh-rsa AAAAB3NzaC1yc2EAAAAEOp8FoQAAAQEAs1eB46LV@dots{}
929 @end example
930
931 @end table
932
933 A number of optional fields may be specified:
934
935 @table @asis
936
937 @item @code{port} (default: @code{22})
938 Port number of SSH server on the machine.
939
940 @item @code{private-key} (default: @file{~/.ssh/id_rsa})
941 The SSH private key file to use when connecting to the machine, in
942 OpenSSH format.
943
944 @item @code{compression} (default: @code{"zlib@@openssh.com,zlib"})
945 @itemx @code{compression-level} (default: @code{3})
946 The SSH-level compression methods and compression level requested.
947
948 Note that offloading relies on SSH compression to reduce bandwidth usage
949 when transferring files to and from build machines.
950
951 @item @code{daemon-socket} (default: @code{"/var/guix/daemon-socket/socket"})
952 File name of the Unix-domain socket @command{guix-daemon} is listening
953 to on that machine.
954
955 @item @code{parallel-builds} (default: @code{1})
956 The number of builds that may run in parallel on the machine.
957
958 @item @code{speed} (default: @code{1.0})
959 A ``relative speed factor''. The offload scheduler will tend to prefer
960 machines with a higher speed factor.
961
962 @item @code{features} (default: @code{'()})
963 A list of strings denoting specific features supported by the machine.
964 An example is @code{"kvm"} for machines that have the KVM Linux modules
965 and corresponding hardware support. Derivations can request features by
966 name, and they will be scheduled on matching build machines.
967
968 @end table
969 @end deftp
970
971 The @code{guile} command must be in the search path on the build
972 machines. In addition, the Guix modules must be in
973 @code{$GUILE_LOAD_PATH} on the build machine---you can check whether
974 this is the case by running:
975
976 @example
977 ssh build-machine guile -c "'(use-modules (guix config))'"
978 @end example
979
980 There is one last thing to do once @file{machines.scm} is in place. As
981 explained above, when offloading, files are transferred back and forth
982 between the machine stores. For this to work, you first need to
983 generate a key pair on each machine to allow the daemon to export signed
984 archives of files from the store (@pxref{Invoking guix archive}):
985
986 @example
987 # guix archive --generate-key
988 @end example
989
990 @noindent
991 Each build machine must authorize the key of the master machine so that
992 it accepts store items it receives from the master:
993
994 @example
995 # guix archive --authorize < master-public-key.txt
996 @end example
997
998 @noindent
999 Likewise, the master machine must authorize the key of each build machine.
1000
1001 All the fuss with keys is here to express pairwise mutual trust
1002 relations between the master and the build machines. Concretely, when
1003 the master receives files from a build machine (and @i{vice versa}), its
1004 build daemon can make sure they are genuine, have not been tampered
1005 with, and that they are signed by an authorized key.
1006
1007 @cindex offload test
1008 To test whether your setup is operational, run this command on the
1009 master node:
1010
1011 @example
1012 # guix offload test
1013 @end example
1014
1015 This will attempt to connect to each of the build machines specified in
1016 @file{/etc/guix/machines.scm}, make sure Guile and the Guix modules are
1017 available on each machine, attempt to export to the machine and import
1018 from it, and report any error in the process.
1019
1020 If you want to test a different machine file, just specify it on the
1021 command line:
1022
1023 @example
1024 # guix offload test machines-qualif.scm
1025 @end example
1026
1027 Last, you can test the subset of the machines whose name matches a
1028 regular expression like this:
1029
1030 @example
1031 # guix offload test machines.scm '\.gnu\.org$'
1032 @end example
1033
1034 @node Invoking guix-daemon
1035 @section Invoking @command{guix-daemon}
1036
1037 The @command{guix-daemon} program implements all the functionality to
1038 access the store. This includes launching build processes, running the
1039 garbage collector, querying the availability of a build result, etc. It
1040 is normally run as @code{root} like this:
1041
1042 @example
1043 # guix-daemon --build-users-group=guixbuild
1044 @end example
1045
1046 @noindent
1047 For details on how to set it up, @pxref{Setting Up the Daemon}.
1048
1049 @cindex chroot
1050 @cindex container, build environment
1051 @cindex build environment
1052 @cindex reproducible builds
1053 By default, @command{guix-daemon} launches build processes under
1054 different UIDs, taken from the build group specified with
1055 @code{--build-users-group}. In addition, each build process is run in a
1056 chroot environment that only contains the subset of the store that the
1057 build process depends on, as specified by its derivation
1058 (@pxref{Programming Interface, derivation}), plus a set of specific
1059 system directories. By default, the latter contains @file{/dev} and
1060 @file{/dev/pts}. Furthermore, on GNU/Linux, the build environment is a
1061 @dfn{container}: in addition to having its own file system tree, it has
1062 a separate mount name space, its own PID name space, network name space,
1063 etc. This helps achieve reproducible builds (@pxref{Features}).
1064
1065 When the daemon performs a build on behalf of the user, it creates a
1066 build directory under @file{/tmp} or under the directory specified by
1067 its @code{TMPDIR} environment variable; this directory is shared with
1068 the container for the duration of the build. Be aware that using a
1069 directory other than @file{/tmp} can affect build results---for example,
1070 with a longer directory name, a build process that uses Unix-domain
1071 sockets might hit the name length limitation for @code{sun_path}, which
1072 it would otherwise not hit.
1073
1074 The build directory is automatically deleted upon completion, unless the
1075 build failed and the client specified @option{--keep-failed}
1076 (@pxref{Invoking guix build, @option{--keep-failed}}).
1077
1078 The following command-line options are supported:
1079
1080 @table @code
1081 @item --build-users-group=@var{group}
1082 Take users from @var{group} to run build processes (@pxref{Setting Up
1083 the Daemon, build users}).
1084
1085 @item --no-substitutes
1086 @cindex substitutes
1087 Do not use substitutes for build products. That is, always build things
1088 locally instead of allowing downloads of pre-built binaries
1089 (@pxref{Substitutes}).
1090
1091 By default substitutes are used, unless the client---such as the
1092 @command{guix package} command---is explicitly invoked with
1093 @code{--no-substitutes}.
1094
1095 When the daemon runs with @code{--no-substitutes}, clients can still
1096 explicitly enable substitution @i{via} the @code{set-build-options}
1097 remote procedure call (@pxref{The Store}).
1098
1099 @item --substitute-urls=@var{urls}
1100 @anchor{daemon-substitute-urls}
1101 Consider @var{urls} the default whitespace-separated list of substitute
1102 source URLs. When this option is omitted,
1103 @indicateurl{https://mirror.hydra.gnu.org https://hydra.gnu.org} is used
1104 (@code{mirror.hydra.gnu.org} is a mirror of @code{hydra.gnu.org}).
1105
1106 This means that substitutes may be downloaded from @var{urls}, as long
1107 as they are signed by a trusted signature (@pxref{Substitutes}).
1108
1109 @cindex build hook
1110 @item --no-build-hook
1111 Do not use the @dfn{build hook}.
1112
1113 The build hook is a helper program that the daemon can start and to
1114 which it submits build requests. This mechanism is used to offload
1115 builds to other machines (@pxref{Daemon Offload Setup}).
1116
1117 @item --cache-failures
1118 Cache build failures. By default, only successful builds are cached.
1119
1120 When this option is used, @command{guix gc --list-failures} can be used
1121 to query the set of store items marked as failed; @command{guix gc
1122 --clear-failures} removes store items from the set of cached failures.
1123 @xref{Invoking guix gc}.
1124
1125 @item --cores=@var{n}
1126 @itemx -c @var{n}
1127 Use @var{n} CPU cores to build each derivation; @code{0} means as many
1128 as available.
1129
1130 The default value is @code{0}, but it may be overridden by clients, such
1131 as the @code{--cores} option of @command{guix build} (@pxref{Invoking
1132 guix build}).
1133
1134 The effect is to define the @code{NIX_BUILD_CORES} environment variable
1135 in the build process, which can then use it to exploit internal
1136 parallelism---for instance, by running @code{make -j$NIX_BUILD_CORES}.
1137
1138 @item --max-jobs=@var{n}
1139 @itemx -M @var{n}
1140 Allow at most @var{n} build jobs in parallel. The default value is
1141 @code{1}. Setting it to @code{0} means that no builds will be performed
1142 locally; instead, the daemon will offload builds (@pxref{Daemon Offload
1143 Setup}), or simply fail.
1144
1145 @item --rounds=@var{N}
1146 Build each derivation @var{n} times in a row, and raise an error if
1147 consecutive build results are not bit-for-bit identical. Note that this
1148 setting can be overridden by clients such as @command{guix build}
1149 (@pxref{Invoking guix build}).
1150
1151 When used in conjunction with @option{--keep-failed}, the differing
1152 output is kept in the store, under @file{/gnu/store/@dots{}-check}.
1153 This makes it easy to look for differences between the two results.
1154
1155 @item --debug
1156 Produce debugging output.
1157
1158 This is useful to debug daemon start-up issues, but then it may be
1159 overridden by clients, for example the @code{--verbosity} option of
1160 @command{guix build} (@pxref{Invoking guix build}).
1161
1162 @item --chroot-directory=@var{dir}
1163 Add @var{dir} to the build chroot.
1164
1165 Doing this may change the result of build processes---for instance if
1166 they use optional dependencies found in @var{dir} when it is available,
1167 and not otherwise. For that reason, it is not recommended to do so.
1168 Instead, make sure that each derivation declares all the inputs that it
1169 needs.
1170
1171 @item --disable-chroot
1172 Disable chroot builds.
1173
1174 Using this option is not recommended since, again, it would allow build
1175 processes to gain access to undeclared dependencies. It is necessary,
1176 though, when @command{guix-daemon} is running under an unprivileged user
1177 account.
1178
1179 @item --disable-log-compression
1180 Disable compression of the build logs.
1181
1182 Unless @code{--lose-logs} is used, all the build logs are kept in the
1183 @var{localstatedir}. To save space, the daemon automatically compresses
1184 them with bzip2 by default. This option disables that.
1185
1186 @item --disable-deduplication
1187 @cindex deduplication
1188 Disable automatic file ``deduplication'' in the store.
1189
1190 By default, files added to the store are automatically ``deduplicated'':
1191 if a newly added file is identical to another one found in the store,
1192 the daemon makes the new file a hard link to the other file. This can
1193 noticeably reduce disk usage, at the expense of slightly increased
1194 input/output load at the end of a build process. This option disables
1195 this optimization.
1196
1197 @item --gc-keep-outputs[=yes|no]
1198 Tell whether the garbage collector (GC) must keep outputs of live
1199 derivations.
1200
1201 When set to ``yes'', the GC will keep the outputs of any live derivation
1202 available in the store---the @code{.drv} files. The default is ``no'',
1203 meaning that derivation outputs are kept only if they are GC roots.
1204
1205 @item --gc-keep-derivations[=yes|no]
1206 Tell whether the garbage collector (GC) must keep derivations
1207 corresponding to live outputs.
1208
1209 When set to ``yes'', as is the case by default, the GC keeps
1210 derivations---i.e., @code{.drv} files---as long as at least one of their
1211 outputs is live. This allows users to keep track of the origins of
1212 items in their store. Setting it to ``no'' saves a bit of disk space.
1213
1214 Note that when both @code{--gc-keep-derivations} and
1215 @code{--gc-keep-outputs} are used, the effect is to keep all the build
1216 prerequisites (the sources, compiler, libraries, and other build-time
1217 tools) of live objects in the store, regardless of whether these
1218 prerequisites are live. This is convenient for developers since it
1219 saves rebuilds or downloads.
1220
1221 @item --impersonate-linux-2.6
1222 On Linux-based systems, impersonate Linux 2.6. This means that the
1223 kernel's @code{uname} system call will report 2.6 as the release number.
1224
1225 This might be helpful to build programs that (usually wrongfully) depend
1226 on the kernel version number.
1227
1228 @item --lose-logs
1229 Do not keep build logs. By default they are kept under
1230 @code{@var{localstatedir}/guix/log}.
1231
1232 @item --system=@var{system}
1233 Assume @var{system} as the current system type. By default it is the
1234 architecture/kernel pair found at configure time, such as
1235 @code{x86_64-linux}.
1236
1237 @item --listen=@var{socket}
1238 Listen for connections on @var{socket}, the file name of a Unix-domain
1239 socket. The default socket is
1240 @file{@var{localstatedir}/daemon-socket/socket}. This option is only
1241 useful in exceptional circumstances, such as if you need to run several
1242 daemons on the same machine.
1243 @end table
1244
1245
1246 @node Application Setup
1247 @section Application Setup
1248
1249 @cindex foreign distro
1250 When using Guix on top of GNU/Linux distribution other than GuixSD---a
1251 so-called @dfn{foreign distro}---a few additional steps are needed to
1252 get everything in place. Here are some of them.
1253
1254 @subsection Locales
1255
1256 @anchor{locales-and-locpath}
1257 @cindex locales, when not on GuixSD
1258 @vindex LOCPATH
1259 @vindex GUIX_LOCPATH
1260 Packages installed @i{via} Guix will not use the locale data of the
1261 host system. Instead, you must first install one of the locale packages
1262 available with Guix and then define the @code{GUIX_LOCPATH} environment
1263 variable:
1264
1265 @example
1266 $ guix package -i glibc-locales
1267 $ export GUIX_LOCPATH=$HOME/.guix-profile/lib/locale
1268 @end example
1269
1270 Note that the @code{glibc-locales} package contains data for all the
1271 locales supported by the GNU@tie{}libc and weighs in at around
1272 110@tie{}MiB. Alternatively, the @code{glibc-utf8-locales} is smaller but
1273 limited to a few UTF-8 locales.
1274
1275 The @code{GUIX_LOCPATH} variable plays a role similar to @code{LOCPATH}
1276 (@pxref{Locale Names, @code{LOCPATH},, libc, The GNU C Library Reference
1277 Manual}). There are two important differences though:
1278
1279 @enumerate
1280 @item
1281 @code{GUIX_LOCPATH} is honored only by the libc in Guix, and not by the libc
1282 provided by foreign distros. Thus, using @code{GUIX_LOCPATH} allows you
1283 to make sure the programs of the foreign distro will not end up loading
1284 incompatible locale data.
1285
1286 @item
1287 libc suffixes each entry of @code{GUIX_LOCPATH} with @code{/X.Y}, where
1288 @code{X.Y} is the libc version---e.g., @code{2.22}. This means that,
1289 should your Guix profile contain a mixture of programs linked against
1290 different libc version, each libc version will only try to load locale
1291 data in the right format.
1292 @end enumerate
1293
1294 This is important because the locale data format used by different libc
1295 versions may be incompatible.
1296
1297 @subsection Name Service Switch
1298
1299 @cindex name service switch, glibc
1300 @cindex NSS (name service switch), glibc
1301 @cindex nscd (name service caching daemon)
1302 @cindex name service caching daemon (nscd)
1303 When using Guix on a foreign distro, we @emph{strongly recommend} that
1304 the system run the GNU C library's @dfn{name service cache daemon},
1305 @command{nscd}, which should be listening on the
1306 @file{/var/run/nscd/socket} socket. Failing to do that, applications
1307 installed with Guix may fail to look up host names or user accounts, or
1308 may even crash. The next paragraphs explain why.
1309
1310 @cindex @file{nsswitch.conf}
1311 The GNU C library implements a @dfn{name service switch} (NSS), which is
1312 an extensible mechanism for ``name lookups'' in general: host name
1313 resolution, user accounts, and more (@pxref{Name Service Switch,,, libc,
1314 The GNU C Library Reference Manual}).
1315
1316 @cindex Network information service (NIS)
1317 @cindex NIS (Network information service)
1318 Being extensible, the NSS supports @dfn{plugins}, which provide new name
1319 lookup implementations: for example, the @code{nss-mdns} plugin allow
1320 resolution of @code{.local} host names, the @code{nis} plugin allows
1321 user account lookup using the Network information service (NIS), and so
1322 on. These extra ``lookup services'' are configured system-wide in
1323 @file{/etc/nsswitch.conf}, and all the programs running on the system
1324 honor those settings (@pxref{NSS Configuration File,,, libc, The GNU C
1325 Reference Manual}).
1326
1327 When they perform a name lookup---for instance by calling the
1328 @code{getaddrinfo} function in C---applications first try to connect to
1329 the nscd; on success, nscd performs name lookups on their behalf. If
1330 the nscd is not running, then they perform the name lookup by
1331 themselves, by loading the name lookup services into their own address
1332 space and running it. These name lookup services---the
1333 @file{libnss_*.so} files---are @code{dlopen}'d, but they may come from
1334 the host system's C library, rather than from the C library the
1335 application is linked against (the C library coming from Guix).
1336
1337 And this is where the problem is: if your application is linked against
1338 Guix's C library (say, glibc 2.24) and tries to load NSS plugins from
1339 another C library (say, @code{libnss_mdns.so} for glibc 2.22), it will
1340 likely crash or have its name lookups fail unexpectedly.
1341
1342 Running @command{nscd} on the system, among other advantages, eliminates
1343 this binary incompatibility problem because those @code{libnss_*.so}
1344 files are loaded in the @command{nscd} process, not in applications
1345 themselves.
1346
1347 @subsection X11 Fonts
1348
1349 @cindex fonts
1350 The majority of graphical applications use Fontconfig to locate and
1351 load fonts and perform X11-client-side rendering. The @code{fontconfig}
1352 package in Guix looks for fonts in @file{$HOME/.guix-profile}
1353 by default. Thus, to allow graphical applications installed with Guix
1354 to display fonts, you have to install fonts with Guix as well.
1355 Essential font packages include @code{gs-fonts}, @code{font-dejavu}, and
1356 @code{font-gnu-freefont-ttf}.
1357
1358 To display text written in Chinese languages, Japanese, or Korean in
1359 graphical applications, consider installing
1360 @code{font-adobe-source-han-sans} or @code{font-wqy-zenhei}. The former
1361 has multiple outputs, one per language family (@pxref{Packages with
1362 Multiple Outputs}). For instance, the following command installs fonts
1363 for Chinese languages:
1364
1365 @example
1366 guix package -i font-adobe-source-han-sans:cn
1367 @end example
1368
1369 @cindex @code{xterm}
1370 Older programs such as @command{xterm} do not use Fontconfig and instead
1371 rely on server-side font rendering. Such programs require to specify a
1372 full name of a font using XLFD (X Logical Font Description), like this:
1373
1374 @example
1375 -*-dejavu sans-medium-r-normal-*-*-100-*-*-*-*-*-1
1376 @end example
1377
1378 To be able to use such full names for the TrueType fonts installed in
1379 your Guix profile, you need to extend the font path of the X server:
1380
1381 @example
1382 xset +fp ~/.guix-profile/share/fonts/truetype
1383 @end example
1384
1385 @cindex @code{xlsfonts}
1386 After that, you can run @code{xlsfonts} (from @code{xlsfonts} package)
1387 to make sure your TrueType fonts are listed there.
1388
1389 @subsection X.509 Certificates
1390
1391 @cindex @code{nss-certs}
1392 The @code{nss-certs} package provides X.509 certificates, which allow
1393 programs to authenticate Web servers accessed over HTTPS.
1394
1395 When using Guix on a foreign distro, you can install this package and
1396 define the relevant environment variables so that packages know where to
1397 look for certificates. @xref{X.509 Certificates}, for detailed
1398 information.
1399
1400 @subsection Emacs Packages
1401
1402 @cindex @code{emacs}
1403 When you install Emacs packages with Guix, the elisp files may be placed
1404 either in @file{$HOME/.guix-profile/share/emacs/site-lisp/} or in
1405 sub-directories of
1406 @file{$HOME/.guix-profile/share/emacs/site-lisp/guix.d/}. The latter
1407 directory exists because potentially there may exist thousands of Emacs
1408 packages and storing all their files in a single directory may be not
1409 reliable (because of name conflicts). So we think using a separate
1410 directory for each package is a good idea. It is very similar to how
1411 the Emacs package system organizes the file structure (@pxref{Package
1412 Files,,, emacs, The GNU Emacs Manual}).
1413
1414 By default, Emacs (installed with Guix) ``knows'' where these packages
1415 are placed, so you do not need to perform any configuration. If, for
1416 some reason, you want to avoid auto-loading Emacs packages installed
1417 with Guix, you can do so by running Emacs with @code{--no-site-file}
1418 option (@pxref{Init File,,, emacs, The GNU Emacs Manual}).
1419
1420 @c TODO What else?
1421
1422 @c *********************************************************************
1423 @node Package Management
1424 @chapter Package Management
1425
1426 @cindex packages
1427 The purpose of GNU Guix is to allow users to easily install, upgrade, and
1428 remove software packages, without having to know about their build
1429 procedures or dependencies. Guix also goes beyond this obvious set of
1430 features.
1431
1432 This chapter describes the main features of Guix, as well as the package
1433 management tools it provides. Along with the command-line interface
1434 described below (@pxref{Invoking guix package, @code{guix package}}),
1435 you may also use Emacs Interface, after installing @code{emacs-guix}
1436 package (run @kbd{M-x guix-help} command to start with it):
1437
1438 @example
1439 guix package -i emacs-guix
1440 @end example
1441
1442 @menu
1443 * Features:: How Guix will make your life brighter.
1444 * Invoking guix package:: Package installation, removal, etc.
1445 * Substitutes:: Downloading pre-built binaries.
1446 * Packages with Multiple Outputs:: Single source package, multiple outputs.
1447 * Invoking guix gc:: Running the garbage collector.
1448 * Invoking guix pull:: Fetching the latest Guix and distribution.
1449 * Invoking guix pack:: Creating software bundles.
1450 * Invoking guix archive:: Exporting and importing store files.
1451 @end menu
1452
1453 @node Features
1454 @section Features
1455
1456 When using Guix, each package ends up in the @dfn{package store}, in its
1457 own directory---something that resembles
1458 @file{/gnu/store/xxx-package-1.2}, where @code{xxx} is a base32 string.
1459
1460 Instead of referring to these directories, users have their own
1461 @dfn{profile}, which points to the packages that they actually want to
1462 use. These profiles are stored within each user's home directory, at
1463 @code{$HOME/.guix-profile}.
1464
1465 For example, @code{alice} installs GCC 4.7.2. As a result,
1466 @file{/home/alice/.guix-profile/bin/gcc} points to
1467 @file{/gnu/store/@dots{}-gcc-4.7.2/bin/gcc}. Now, on the same machine,
1468 @code{bob} had already installed GCC 4.8.0. The profile of @code{bob}
1469 simply continues to point to
1470 @file{/gnu/store/@dots{}-gcc-4.8.0/bin/gcc}---i.e., both versions of GCC
1471 coexist on the same system without any interference.
1472
1473 The @command{guix package} command is the central tool to manage
1474 packages (@pxref{Invoking guix package}). It operates on the per-user
1475 profiles, and can be used @emph{with normal user privileges}.
1476
1477 @cindex transactions
1478 The command provides the obvious install, remove, and upgrade
1479 operations. Each invocation is actually a @emph{transaction}: either
1480 the specified operation succeeds, or nothing happens. Thus, if the
1481 @command{guix package} process is terminated during the transaction,
1482 or if a power outage occurs during the transaction, then the user's
1483 profile remains in its previous state, and remains usable.
1484
1485 In addition, any package transaction may be @emph{rolled back}. So, if,
1486 for example, an upgrade installs a new version of a package that turns
1487 out to have a serious bug, users may roll back to the previous instance
1488 of their profile, which was known to work well. Similarly, the global
1489 system configuration on GuixSD is subject to
1490 transactional upgrades and roll-back
1491 (@pxref{Using the Configuration System}).
1492
1493 All packages in the package store may be @emph{garbage-collected}.
1494 Guix can determine which packages are still referenced by user
1495 profiles, and remove those that are provably no longer referenced
1496 (@pxref{Invoking guix gc}). Users may also explicitly remove old
1497 generations of their profile so that the packages they refer to can be
1498 collected.
1499
1500 @cindex reproducibility
1501 @cindex reproducible builds
1502 Finally, Guix takes a @dfn{purely functional} approach to package
1503 management, as described in the introduction (@pxref{Introduction}).
1504 Each @file{/gnu/store} package directory name contains a hash of all the
1505 inputs that were used to build that package---compiler, libraries, build
1506 scripts, etc. This direct correspondence allows users to make sure a
1507 given package installation matches the current state of their
1508 distribution. It also helps maximize @dfn{build reproducibility}:
1509 thanks to the isolated build environments that are used, a given build
1510 is likely to yield bit-identical files when performed on different
1511 machines (@pxref{Invoking guix-daemon, container}).
1512
1513 @cindex substitutes
1514 This foundation allows Guix to support @dfn{transparent binary/source
1515 deployment}. When a pre-built binary for a @file{/gnu/store} item is
1516 available from an external source---a @dfn{substitute}, Guix just
1517 downloads it and unpacks it;
1518 otherwise, it builds the package from source, locally
1519 (@pxref{Substitutes}). Because build results are usually bit-for-bit
1520 reproducible, users do not have to trust servers that provide
1521 substitutes: they can force a local build and @emph{challenge} providers
1522 (@pxref{Invoking guix challenge}).
1523
1524 Control over the build environment is a feature that is also useful for
1525 developers. The @command{guix environment} command allows developers of
1526 a package to quickly set up the right development environment for their
1527 package, without having to manually install the dependencies of the
1528 package into their profile (@pxref{Invoking guix environment}).
1529
1530 @node Invoking guix package
1531 @section Invoking @command{guix package}
1532
1533 @cindex installing packages
1534 @cindex removing packages
1535 @cindex package installation
1536 @cindex package removal
1537 The @command{guix package} command is the tool that allows users to
1538 install, upgrade, and remove packages, as well as rolling back to
1539 previous configurations. It operates only on the user's own profile,
1540 and works with normal user privileges (@pxref{Features}). Its syntax
1541 is:
1542
1543 @example
1544 guix package @var{options}
1545 @end example
1546 @cindex transactions
1547 Primarily, @var{options} specifies the operations to be performed during
1548 the transaction. Upon completion, a new profile is created, but
1549 previous @dfn{generations} of the profile remain available, should the user
1550 want to roll back.
1551
1552 For example, to remove @code{lua} and install @code{guile} and
1553 @code{guile-cairo} in a single transaction:
1554
1555 @example
1556 guix package -r lua -i guile guile-cairo
1557 @end example
1558
1559 @command{guix package} also supports a @dfn{declarative approach}
1560 whereby the user specifies the exact set of packages to be available and
1561 passes it @i{via} the @option{--manifest} option
1562 (@pxref{profile-manifest, @option{--manifest}}).
1563
1564 @cindex profile
1565 For each user, a symlink to the user's default profile is automatically
1566 created in @file{$HOME/.guix-profile}. This symlink always points to the
1567 current generation of the user's default profile. Thus, users can add
1568 @file{$HOME/.guix-profile/bin} to their @code{PATH} environment
1569 variable, and so on.
1570 @cindex search paths
1571 If you are not using the Guix System Distribution, consider adding the
1572 following lines to your @file{~/.bash_profile} (@pxref{Bash Startup
1573 Files,,, bash, The GNU Bash Reference Manual}) so that newly-spawned
1574 shells get all the right environment variable definitions:
1575
1576 @example
1577 GUIX_PROFILE="$HOME/.guix-profile" \
1578 source "$HOME/.guix-profile/etc/profile"
1579 @end example
1580
1581 In a multi-user setup, user profiles are stored in a place registered as
1582 a @dfn{garbage-collector root}, which @file{$HOME/.guix-profile} points
1583 to (@pxref{Invoking guix gc}). That directory is normally
1584 @code{@var{localstatedir}/profiles/per-user/@var{user}}, where
1585 @var{localstatedir} is the value passed to @code{configure} as
1586 @code{--localstatedir}, and @var{user} is the user name. The
1587 @file{per-user} directory is created when @command{guix-daemon} is
1588 started, and the @var{user} sub-directory is created by @command{guix
1589 package}.
1590
1591 The @var{options} can be among the following:
1592
1593 @table @code
1594
1595 @item --install=@var{package} @dots{}
1596 @itemx -i @var{package} @dots{}
1597 Install the specified @var{package}s.
1598
1599 Each @var{package} may specify either a simple package name, such as
1600 @code{guile}, or a package name followed by an at-sign and version number,
1601 such as @code{guile@@1.8.8} or simply @code{guile@@1.8} (in the latter
1602 case, the newest version prefixed by @code{1.8} is selected.)
1603
1604 If no version number is specified, the
1605 newest available version will be selected. In addition, @var{package}
1606 may contain a colon, followed by the name of one of the outputs of the
1607 package, as in @code{gcc:doc} or @code{binutils@@2.22:lib}
1608 (@pxref{Packages with Multiple Outputs}). Packages with a corresponding
1609 name (and optionally version) are searched for among the GNU
1610 distribution modules (@pxref{Package Modules}).
1611
1612 @cindex propagated inputs
1613 Sometimes packages have @dfn{propagated inputs}: these are dependencies
1614 that automatically get installed along with the required package
1615 (@pxref{package-propagated-inputs, @code{propagated-inputs} in
1616 @code{package} objects}, for information about propagated inputs in
1617 package definitions).
1618
1619 @anchor{package-cmd-propagated-inputs}
1620 An example is the GNU MPC library: its C header files refer to those of
1621 the GNU MPFR library, which in turn refer to those of the GMP library.
1622 Thus, when installing MPC, the MPFR and GMP libraries also get installed
1623 in the profile; removing MPC also removes MPFR and GMP---unless they had
1624 also been explicitly installed by the user.
1625
1626 Besides, packages sometimes rely on the definition of environment
1627 variables for their search paths (see explanation of
1628 @code{--search-paths} below). Any missing or possibly incorrect
1629 environment variable definitions are reported here.
1630
1631 @item --install-from-expression=@var{exp}
1632 @itemx -e @var{exp}
1633 Install the package @var{exp} evaluates to.
1634
1635 @var{exp} must be a Scheme expression that evaluates to a
1636 @code{<package>} object. This option is notably useful to disambiguate
1637 between same-named variants of a package, with expressions such as
1638 @code{(@@ (gnu packages base) guile-final)}.
1639
1640 Note that this option installs the first output of the specified
1641 package, which may be insufficient when needing a specific output of a
1642 multiple-output package.
1643
1644 @item --install-from-file=@var{file}
1645 @itemx -f @var{file}
1646 Install the package that the code within @var{file} evaluates to.
1647
1648 As an example, @var{file} might contain a definition like this
1649 (@pxref{Defining Packages}):
1650
1651 @example
1652 @verbatiminclude package-hello.scm
1653 @end example
1654
1655 Developers may find it useful to include such a @file{guix.scm} file
1656 in the root of their project source tree that can be used to test
1657 development snapshots and create reproducible development environments
1658 (@pxref{Invoking guix environment}).
1659
1660 @item --remove=@var{package} @dots{}
1661 @itemx -r @var{package} @dots{}
1662 Remove the specified @var{package}s.
1663
1664 As for @code{--install}, each @var{package} may specify a version number
1665 and/or output name in addition to the package name. For instance,
1666 @code{-r glibc:debug} would remove the @code{debug} output of
1667 @code{glibc}.
1668
1669 @item --upgrade[=@var{regexp} @dots{}]
1670 @itemx -u [@var{regexp} @dots{}]
1671 @cindex upgrading packages
1672 Upgrade all the installed packages. If one or more @var{regexp}s are
1673 specified, upgrade only installed packages whose name matches a
1674 @var{regexp}. Also see the @code{--do-not-upgrade} option below.
1675
1676 Note that this upgrades package to the latest version of packages found
1677 in the distribution currently installed. To update your distribution,
1678 you should regularly run @command{guix pull} (@pxref{Invoking guix
1679 pull}).
1680
1681 @item --do-not-upgrade[=@var{regexp} @dots{}]
1682 When used together with the @code{--upgrade} option, do @emph{not}
1683 upgrade any packages whose name matches a @var{regexp}. For example, to
1684 upgrade all packages in the current profile except those containing the
1685 substring ``emacs'':
1686
1687 @example
1688 $ guix package --upgrade . --do-not-upgrade emacs
1689 @end example
1690
1691 @item @anchor{profile-manifest}--manifest=@var{file}
1692 @itemx -m @var{file}
1693 @cindex profile declaration
1694 @cindex profile manifest
1695 Create a new generation of the profile from the manifest object
1696 returned by the Scheme code in @var{file}.
1697
1698 This allows you to @emph{declare} the profile's contents rather than
1699 constructing it through a sequence of @code{--install} and similar
1700 commands. The advantage is that @var{file} can be put under version
1701 control, copied to different machines to reproduce the same profile, and
1702 so on.
1703
1704 @c FIXME: Add reference to (guix profile) documentation when available.
1705 @var{file} must return a @dfn{manifest} object, which is roughly a list
1706 of packages:
1707
1708 @findex packages->manifest
1709 @example
1710 (use-package-modules guile emacs)
1711
1712 (packages->manifest
1713 (list emacs
1714 guile-2.0
1715 ;; Use a specific package output.
1716 (list guile-2.0 "debug")))
1717 @end example
1718
1719 @findex specification->package+output
1720 In this example we have to know which modules define the @code{emacs}
1721 and @code{guile-2.0} variables to provide the right
1722 @code{use-package-modules} line, which can be cumbersome. We can
1723 instead provide regular package specifications and let
1724 @code{specification->package-output} look up the corresponding package
1725 objects, like this:
1726
1727 @example
1728 (packages->manifest
1729 (map (compose list specification->package+output)
1730 '("emacs" "guile@@2.0" "guile@@2.0:debug")))
1731 @end example
1732
1733 @item --roll-back
1734 @cindex rolling back
1735 @cindex undoing transactions
1736 @cindex transactions, undoing
1737 Roll back to the previous @dfn{generation} of the profile---i.e., undo
1738 the last transaction.
1739
1740 When combined with options such as @code{--install}, roll back occurs
1741 before any other actions.
1742
1743 When rolling back from the first generation that actually contains
1744 installed packages, the profile is made to point to the @dfn{zeroth
1745 generation}, which contains no files apart from its own metadata.
1746
1747 After having rolled back, installing, removing, or upgrading packages
1748 overwrites previous future generations. Thus, the history of the
1749 generations in a profile is always linear.
1750
1751 @item --switch-generation=@var{pattern}
1752 @itemx -S @var{pattern}
1753 @cindex generations
1754 Switch to a particular generation defined by @var{pattern}.
1755
1756 @var{pattern} may be either a generation number or a number prefixed
1757 with ``+'' or ``-''. The latter means: move forward/backward by a
1758 specified number of generations. For example, if you want to return to
1759 the latest generation after @code{--roll-back}, use
1760 @code{--switch-generation=+1}.
1761
1762 The difference between @code{--roll-back} and
1763 @code{--switch-generation=-1} is that @code{--switch-generation} will
1764 not make a zeroth generation, so if a specified generation does not
1765 exist, the current generation will not be changed.
1766
1767 @item --search-paths[=@var{kind}]
1768 @cindex search paths
1769 Report environment variable definitions, in Bash syntax, that may be
1770 needed in order to use the set of installed packages. These environment
1771 variables are used to specify @dfn{search paths} for files used by some
1772 of the installed packages.
1773
1774 For example, GCC needs the @code{CPATH} and @code{LIBRARY_PATH}
1775 environment variables to be defined so it can look for headers and
1776 libraries in the user's profile (@pxref{Environment Variables,,, gcc,
1777 Using the GNU Compiler Collection (GCC)}). If GCC and, say, the C
1778 library are installed in the profile, then @code{--search-paths} will
1779 suggest setting these variables to @code{@var{profile}/include} and
1780 @code{@var{profile}/lib}, respectively.
1781
1782 The typical use case is to define these environment variables in the
1783 shell:
1784
1785 @example
1786 $ eval `guix package --search-paths`
1787 @end example
1788
1789 @var{kind} may be one of @code{exact}, @code{prefix}, or @code{suffix},
1790 meaning that the returned environment variable definitions will either
1791 be exact settings, or prefixes or suffixes of the current value of these
1792 variables. When omitted, @var{kind} defaults to @code{exact}.
1793
1794 This option can also be used to compute the @emph{combined} search paths
1795 of several profiles. Consider this example:
1796
1797 @example
1798 $ guix package -p foo -i guile
1799 $ guix package -p bar -i guile-json
1800 $ guix package -p foo -p bar --search-paths
1801 @end example
1802
1803 The last command above reports about the @code{GUILE_LOAD_PATH}
1804 variable, even though, taken individually, neither @file{foo} nor
1805 @file{bar} would lead to that recommendation.
1806
1807
1808 @item --profile=@var{profile}
1809 @itemx -p @var{profile}
1810 Use @var{profile} instead of the user's default profile.
1811
1812 @item --verbose
1813 Produce verbose output. In particular, emit the build log of the
1814 environment on the standard error port.
1815
1816 @item --bootstrap
1817 Use the bootstrap Guile to build the profile. This option is only
1818 useful to distribution developers.
1819
1820 @end table
1821
1822 In addition to these actions, @command{guix package} supports the
1823 following options to query the current state of a profile, or the
1824 availability of packages:
1825
1826 @table @option
1827
1828 @item --search=@var{regexp}
1829 @itemx -s @var{regexp}
1830 @cindex searching for packages
1831 List the available packages whose name, synopsis, or description matches
1832 @var{regexp}. Print all the metadata of matching packages in
1833 @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils,
1834 GNU recutils manual}).
1835
1836 This allows specific fields to be extracted using the @command{recsel}
1837 command, for instance:
1838
1839 @example
1840 $ guix package -s malloc | recsel -p name,version
1841 name: glibc
1842 version: 2.17
1843
1844 name: libgc
1845 version: 7.2alpha6
1846 @end example
1847
1848 Similarly, to show the name of all the packages available under the
1849 terms of the GNU@tie{}LGPL version 3:
1850
1851 @example
1852 $ guix package -s "" | recsel -p name -e 'license ~ "LGPL 3"'
1853 name: elfutils
1854
1855 name: gmp
1856 @dots{}
1857 @end example
1858
1859 It is also possible to refine search results using several @code{-s}
1860 flags. For example, the following command returns a list of board
1861 games:
1862
1863 @example
1864 $ guix package -s '\<board\>' -s game | recsel -p name
1865 name: gnubg
1866 @dots{}
1867 @end example
1868
1869 If we were to omit @code{-s game}, we would also get software packages
1870 that deal with printed circuit boards; removing the angle brackets
1871 around @code{board} would further add packages that have to do with
1872 keyboards.
1873
1874 And now for a more elaborate example. The following command searches
1875 for cryptographic libraries, filters out Haskell, Perl, Python, and Ruby
1876 libraries, and prints the name and synopsis of the matching packages:
1877
1878 @example
1879 $ guix package -s crypto -s library | \
1880 recsel -e '! (name ~ "^(ghc|perl|python|ruby)")' -p name,synopsis
1881 @end example
1882
1883 @noindent
1884 @xref{Selection Expressions,,, recutils, GNU recutils manual}, for more
1885 information on @dfn{selection expressions} for @code{recsel -e}.
1886
1887 @item --show=@var{package}
1888 Show details about @var{package}, taken from the list of available packages, in
1889 @code{recutils} format (@pxref{Top, GNU recutils databases,, recutils, GNU
1890 recutils manual}).
1891
1892 @example
1893 $ guix package --show=python | recsel -p name,version
1894 name: python
1895 version: 2.7.6
1896
1897 name: python
1898 version: 3.3.5
1899 @end example
1900
1901 You may also specify the full name of a package to only get details about a
1902 specific version of it:
1903 @example
1904 $ guix package --show=python@@3.4 | recsel -p name,version
1905 name: python
1906 version: 3.4.3
1907 @end example
1908
1909
1910
1911 @item --list-installed[=@var{regexp}]
1912 @itemx -I [@var{regexp}]
1913 List the currently installed packages in the specified profile, with the
1914 most recently installed packages shown last. When @var{regexp} is
1915 specified, list only installed packages whose name matches @var{regexp}.
1916
1917 For each installed package, print the following items, separated by
1918 tabs: the package name, its version string, the part of the package that
1919 is installed (for instance, @code{out} for the default output,
1920 @code{include} for its headers, etc.), and the path of this package in
1921 the store.
1922
1923 @item --list-available[=@var{regexp}]
1924 @itemx -A [@var{regexp}]
1925 List packages currently available in the distribution for this system
1926 (@pxref{GNU Distribution}). When @var{regexp} is specified, list only
1927 installed packages whose name matches @var{regexp}.
1928
1929 For each package, print the following items separated by tabs: its name,
1930 its version string, the parts of the package (@pxref{Packages with
1931 Multiple Outputs}), and the source location of its definition.
1932
1933 @item --list-generations[=@var{pattern}]
1934 @itemx -l [@var{pattern}]
1935 @cindex generations
1936 Return a list of generations along with their creation dates; for each
1937 generation, show the installed packages, with the most recently
1938 installed packages shown last. Note that the zeroth generation is never
1939 shown.
1940
1941 For each installed package, print the following items, separated by
1942 tabs: the name of a package, its version string, the part of the package
1943 that is installed (@pxref{Packages with Multiple Outputs}), and the
1944 location of this package in the store.
1945
1946 When @var{pattern} is used, the command returns only matching
1947 generations. Valid patterns include:
1948
1949 @itemize
1950 @item @emph{Integers and comma-separated integers}. Both patterns denote
1951 generation numbers. For instance, @code{--list-generations=1} returns
1952 the first one.
1953
1954 And @code{--list-generations=1,8,2} outputs three generations in the
1955 specified order. Neither spaces nor trailing commas are allowed.
1956
1957 @item @emph{Ranges}. @code{--list-generations=2..9} prints the
1958 specified generations and everything in between. Note that the start of
1959 a range must be smaller than its end.
1960
1961 It is also possible to omit the endpoint. For example,
1962 @code{--list-generations=2..}, returns all generations starting from the
1963 second one.
1964
1965 @item @emph{Durations}. You can also get the last @emph{N}@tie{}days, weeks,
1966 or months by passing an integer along with the first letter of the
1967 duration. For example, @code{--list-generations=20d} lists generations
1968 that are up to 20 days old.
1969 @end itemize
1970
1971 @item --delete-generations[=@var{pattern}]
1972 @itemx -d [@var{pattern}]
1973 When @var{pattern} is omitted, delete all generations except the current
1974 one.
1975
1976 This command accepts the same patterns as @option{--list-generations}.
1977 When @var{pattern} is specified, delete the matching generations. When
1978 @var{pattern} specifies a duration, generations @emph{older} than the
1979 specified duration match. For instance, @code{--delete-generations=1m}
1980 deletes generations that are more than one month old.
1981
1982 If the current generation matches, it is @emph{not} deleted. Also, the
1983 zeroth generation is never deleted.
1984
1985 Note that deleting generations prevents rolling back to them.
1986 Consequently, this command must be used with care.
1987
1988 @end table
1989
1990 Finally, since @command{guix package} may actually start build
1991 processes, it supports all the common build options (@pxref{Common Build
1992 Options}). It also supports package transformation options, such as
1993 @option{--with-source} (@pxref{Package Transformation Options}).
1994 However, note that package transformations are lost when upgrading; to
1995 preserve transformations across upgrades, you should define your own
1996 package variant in a Guile module and add it to @code{GUIX_PACKAGE_PATH}
1997 (@pxref{Defining Packages}).
1998
1999
2000 @node Substitutes
2001 @section Substitutes
2002
2003 @cindex substitutes
2004 @cindex pre-built binaries
2005 Guix supports transparent source/binary deployment, which means that it
2006 can either build things locally, or download pre-built items from a
2007 server. We call these pre-built items @dfn{substitutes}---they are
2008 substitutes for local build results. In many cases, downloading a
2009 substitute is much faster than building things locally.
2010
2011 Substitutes can be anything resulting from a derivation build
2012 (@pxref{Derivations}). Of course, in the common case, they are
2013 pre-built package binaries, but source tarballs, for instance, which
2014 also result from derivation builds, can be available as substitutes.
2015
2016 The @code{hydra.gnu.org} server is a front-end to a build farm that
2017 builds packages from the GNU distribution continuously for some
2018 architectures, and makes them available as substitutes. This is the
2019 default source of substitutes; it can be overridden by passing the
2020 @option{--substitute-urls} option either to @command{guix-daemon}
2021 (@pxref{daemon-substitute-urls,, @code{guix-daemon --substitute-urls}})
2022 or to client tools such as @command{guix package}
2023 (@pxref{client-substitute-urls,, client @option{--substitute-urls}
2024 option}).
2025
2026 Substitute URLs can be either HTTP or HTTPS.
2027 HTTPS is recommended because communications are encrypted; conversely,
2028 using HTTP makes all communications visible to an eavesdropper, who
2029 could use the information gathered to determine, for instance, whether
2030 your system has unpatched security vulnerabilities.
2031
2032 @cindex security
2033 @cindex digital signatures
2034 @cindex substitutes, authorization thereof
2035 To allow Guix to download substitutes from @code{hydra.gnu.org} or a
2036 mirror thereof, you
2037 must add its public key to the access control list (ACL) of archive
2038 imports, using the @command{guix archive} command (@pxref{Invoking guix
2039 archive}). Doing so implies that you trust @code{hydra.gnu.org} to not
2040 be compromised and to serve genuine substitutes.
2041
2042 This public key is installed along with Guix, in
2043 @code{@var{prefix}/share/guix/hydra.gnu.org.pub}, where @var{prefix} is
2044 the installation prefix of Guix. If you installed Guix from source,
2045 make sure you checked the GPG signature of
2046 @file{guix-@value{VERSION}.tar.gz}, which contains this public key file.
2047 Then, you can run something like this:
2048
2049 @example
2050 # guix archive --authorize < hydra.gnu.org.pub
2051 @end example
2052
2053 Once this is in place, the output of a command like @code{guix build}
2054 should change from something like:
2055
2056 @example
2057 $ guix build emacs --dry-run
2058 The following derivations would be built:
2059 /gnu/store/yr7bnx8xwcayd6j95r2clmkdl1qh688w-emacs-24.3.drv
2060 /gnu/store/x8qsh1hlhgjx6cwsjyvybnfv2i37z23w-dbus-1.6.4.tar.gz.drv
2061 /gnu/store/1ixwp12fl950d15h2cj11c73733jay0z-alsa-lib-1.0.27.1.tar.bz2.drv
2062 /gnu/store/nlma1pw0p603fpfiqy7kn4zm105r5dmw-util-linux-2.21.drv
2063 @dots{}
2064 @end example
2065
2066 @noindent
2067 to something like:
2068
2069 @example
2070 $ guix build emacs --dry-run
2071 The following files would be downloaded:
2072 /gnu/store/pk3n22lbq6ydamyymqkkz7i69wiwjiwi-emacs-24.3
2073 /gnu/store/2ygn4ncnhrpr61rssa6z0d9x22si0va3-libjpeg-8d
2074 /gnu/store/71yz6lgx4dazma9dwn2mcjxaah9w77jq-cairo-1.12.16
2075 /gnu/store/7zdhgp0n1518lvfn8mb96sxqfmvqrl7v-libxrender-0.9.7
2076 @dots{}
2077 @end example
2078
2079 @noindent
2080 This indicates that substitutes from @code{hydra.gnu.org} are usable and
2081 will be downloaded, when possible, for future builds.
2082
2083 Guix ignores substitutes that are not signed, or that are not signed by
2084 one of the keys listed in the ACL. It also detects and raises an error
2085 when attempting to use a substitute that has been tampered with.
2086
2087 @vindex http_proxy
2088 Substitutes are downloaded over HTTP or HTTPS.
2089 The @code{http_proxy} environment
2090 variable can be set in the environment of @command{guix-daemon} and is
2091 honored for downloads of substitutes. Note that the value of
2092 @code{http_proxy} in the environment where @command{guix build},
2093 @command{guix package}, and other client commands are run has
2094 @emph{absolutely no effect}.
2095
2096 When using HTTPS, the server's X.509 certificate is @emph{not} validated
2097 (in other words, the server is not authenticated), contrary to what
2098 HTTPS clients such as Web browsers usually do. This is because Guix
2099 authenticates substitute information itself, as explained above, which
2100 is what we care about (whereas X.509 certificates are about
2101 authenticating bindings between domain names and public keys.)
2102
2103 The substitute mechanism can be disabled globally by running
2104 @code{guix-daemon} with @code{--no-substitutes} (@pxref{Invoking
2105 guix-daemon}). It can also be disabled temporarily by passing the
2106 @code{--no-substitutes} option to @command{guix package}, @command{guix
2107 build}, and other command-line tools.
2108
2109
2110 @unnumberedsubsec On Trusting Binaries
2111
2112 Today, each individual's control over their own computing is at the
2113 mercy of institutions, corporations, and groups with enough power and
2114 determination to subvert the computing infrastructure and exploit its
2115 weaknesses. While using @code{hydra.gnu.org} substitutes can be
2116 convenient, we encourage users to also build on their own, or even run
2117 their own build farm, such that @code{hydra.gnu.org} is less of an
2118 interesting target. One way to help is by publishing the software you
2119 build using @command{guix publish} so that others have one more choice
2120 of server to download substitutes from (@pxref{Invoking guix publish}).
2121
2122 Guix has the foundations to maximize build reproducibility
2123 (@pxref{Features}). In most cases, independent builds of a given
2124 package or derivation should yield bit-identical results. Thus, through
2125 a diverse set of independent package builds, we can strengthen the
2126 integrity of our systems. The @command{guix challenge} command aims to
2127 help users assess substitute servers, and to assist developers in
2128 finding out about non-deterministic package builds (@pxref{Invoking guix
2129 challenge}). Similarly, the @option{--check} option of @command{guix
2130 build} allows users to check whether previously-installed substitutes
2131 are genuine by rebuilding them locally (@pxref{build-check,
2132 @command{guix build --check}}).
2133
2134 In the future, we want Guix to have support to publish and retrieve
2135 binaries to/from other users, in a peer-to-peer fashion. If you would
2136 like to discuss this project, join us on @email{guix-devel@@gnu.org}.
2137
2138
2139 @node Packages with Multiple Outputs
2140 @section Packages with Multiple Outputs
2141
2142 @cindex multiple-output packages
2143 @cindex package outputs
2144 @cindex outputs
2145
2146 Often, packages defined in Guix have a single @dfn{output}---i.e., the
2147 source package leads to exactly one directory in the store. When running
2148 @command{guix package -i glibc}, one installs the default output of the
2149 GNU libc package; the default output is called @code{out}, but its name
2150 can be omitted as shown in this command. In this particular case, the
2151 default output of @code{glibc} contains all the C header files, shared
2152 libraries, static libraries, Info documentation, and other supporting
2153 files.
2154
2155 Sometimes it is more appropriate to separate the various types of files
2156 produced from a single source package into separate outputs. For
2157 instance, the GLib C library (used by GTK+ and related packages)
2158 installs more than 20 MiB of reference documentation as HTML pages.
2159 To save space for users who do not need it, the documentation goes to a
2160 separate output, called @code{doc}. To install the main GLib output,
2161 which contains everything but the documentation, one would run:
2162
2163 @example
2164 guix package -i glib
2165 @end example
2166
2167 @cindex documentation
2168 The command to install its documentation is:
2169
2170 @example
2171 guix package -i glib:doc
2172 @end example
2173
2174 Some packages install programs with different ``dependency footprints''.
2175 For instance, the WordNet package installs both command-line tools and
2176 graphical user interfaces (GUIs). The former depend solely on the C
2177 library, whereas the latter depend on Tcl/Tk and the underlying X
2178 libraries. In this case, we leave the command-line tools in the default
2179 output, whereas the GUIs are in a separate output. This allows users
2180 who do not need the GUIs to save space. The @command{guix size} command
2181 can help find out about such situations (@pxref{Invoking guix size}).
2182 @command{guix graph} can also be helpful (@pxref{Invoking guix graph}).
2183
2184 There are several such multiple-output packages in the GNU distribution.
2185 Other conventional output names include @code{lib} for libraries and
2186 possibly header files, @code{bin} for stand-alone programs, and
2187 @code{debug} for debugging information (@pxref{Installing Debugging
2188 Files}). The outputs of a packages are listed in the third column of
2189 the output of @command{guix package --list-available} (@pxref{Invoking
2190 guix package}).
2191
2192
2193 @node Invoking guix gc
2194 @section Invoking @command{guix gc}
2195
2196 @cindex garbage collector
2197 @cindex disk space
2198 Packages that are installed, but not used, may be @dfn{garbage-collected}.
2199 The @command{guix gc} command allows users to explicitly run the garbage
2200 collector to reclaim space from the @file{/gnu/store} directory. It is
2201 the @emph{only} way to remove files from @file{/gnu/store}---removing
2202 files or directories manually may break it beyond repair!
2203
2204 The garbage collector has a set of known @dfn{roots}: any file under
2205 @file{/gnu/store} reachable from a root is considered @dfn{live} and
2206 cannot be deleted; any other file is considered @dfn{dead} and may be
2207 deleted. The set of garbage collector roots includes default user
2208 profiles, and may be augmented with @command{guix build --root}, for
2209 example (@pxref{Invoking guix build}).
2210
2211 Prior to running @code{guix gc --collect-garbage} to make space, it is
2212 often useful to remove old generations from user profiles; that way, old
2213 package builds referenced by those generations can be reclaimed. This
2214 is achieved by running @code{guix package --delete-generations}
2215 (@pxref{Invoking guix package}).
2216
2217 The @command{guix gc} command has three modes of operation: it can be
2218 used to garbage-collect any dead files (the default), to delete specific
2219 files (the @code{--delete} option), to print garbage-collector
2220 information, or for more advanced queries. The garbage collection
2221 options are as follows:
2222
2223 @table @code
2224 @item --collect-garbage[=@var{min}]
2225 @itemx -C [@var{min}]
2226 Collect garbage---i.e., unreachable @file{/gnu/store} files and
2227 sub-directories. This is the default operation when no option is
2228 specified.
2229
2230 When @var{min} is given, stop once @var{min} bytes have been collected.
2231 @var{min} may be a number of bytes, or it may include a unit as a
2232 suffix, such as @code{MiB} for mebibytes and @code{GB} for gigabytes
2233 (@pxref{Block size, size specifications,, coreutils, GNU Coreutils}).
2234
2235 When @var{min} is omitted, collect all the garbage.
2236
2237 @item --free-space=@var{free}
2238 @itemx -F @var{free}
2239 Collect garbage until @var{free} space is available under
2240 @file{/gnu/store}, if possible; @var{free} denotes storage space, such
2241 as @code{500MiB}, as described above.
2242
2243 When @var{free} or more is already available in @file{/gnu/store}, do
2244 nothing and exit immediately.
2245
2246 @item --delete
2247 @itemx -d
2248 Attempt to delete all the store files and directories specified as
2249 arguments. This fails if some of the files are not in the store, or if
2250 they are still live.
2251
2252 @item --list-failures
2253 List store items corresponding to cached build failures.
2254
2255 This prints nothing unless the daemon was started with
2256 @option{--cache-failures} (@pxref{Invoking guix-daemon,
2257 @option{--cache-failures}}).
2258
2259 @item --clear-failures
2260 Remove the specified store items from the failed-build cache.
2261
2262 Again, this option only makes sense when the daemon is started with
2263 @option{--cache-failures}. Otherwise, it does nothing.
2264
2265 @item --list-dead
2266 Show the list of dead files and directories still present in the
2267 store---i.e., files and directories no longer reachable from any root.
2268
2269 @item --list-live
2270 Show the list of live store files and directories.
2271
2272 @end table
2273
2274 In addition, the references among existing store files can be queried:
2275
2276 @table @code
2277
2278 @item --references
2279 @itemx --referrers
2280 @cindex package dependencies
2281 List the references (respectively, the referrers) of store files given
2282 as arguments.
2283
2284 @item --requisites
2285 @itemx -R
2286 @cindex closure
2287 List the requisites of the store files passed as arguments. Requisites
2288 include the store files themselves, their references, and the references
2289 of these, recursively. In other words, the returned list is the
2290 @dfn{transitive closure} of the store files.
2291
2292 @xref{Invoking guix size}, for a tool to profile the size of the closure
2293 of an element. @xref{Invoking guix graph}, for a tool to visualize
2294 the graph of references.
2295
2296 @end table
2297
2298 Lastly, the following options allow you to check the integrity of the
2299 store and to control disk usage.
2300
2301 @table @option
2302
2303 @item --verify[=@var{options}]
2304 @cindex integrity, of the store
2305 @cindex integrity checking
2306 Verify the integrity of the store.
2307
2308 By default, make sure that all the store items marked as valid in the
2309 database of the daemon actually exist in @file{/gnu/store}.
2310
2311 When provided, @var{options} must be a comma-separated list containing one
2312 or more of @code{contents} and @code{repair}.
2313
2314 When passing @option{--verify=contents}, the daemon computes the
2315 content hash of each store item and compares it against its hash in the
2316 database. Hash mismatches are reported as data corruptions. Because it
2317 traverses @emph{all the files in the store}, this command can take a
2318 long time, especially on systems with a slow disk drive.
2319
2320 @cindex repairing the store
2321 @cindex corruption, recovering from
2322 Using @option{--verify=repair} or @option{--verify=contents,repair}
2323 causes the daemon to try to repair corrupt store items by fetching
2324 substitutes for them (@pxref{Substitutes}). Because repairing is not
2325 atomic, and thus potentially dangerous, it is available only to the
2326 system administrator. A lightweight alternative, when you know exactly
2327 which items in the store are corrupt, is @command{guix build --repair}
2328 (@pxref{Invoking guix build}).
2329
2330 @item --optimize
2331 @cindex deduplication
2332 Optimize the store by hard-linking identical files---this is
2333 @dfn{deduplication}.
2334
2335 The daemon performs deduplication after each successful build or archive
2336 import, unless it was started with @code{--disable-deduplication}
2337 (@pxref{Invoking guix-daemon, @code{--disable-deduplication}}). Thus,
2338 this option is primarily useful when the daemon was running with
2339 @code{--disable-deduplication}.
2340
2341 @end table
2342
2343 @node Invoking guix pull
2344 @section Invoking @command{guix pull}
2345
2346 @cindex upgrading Guix
2347 @cindex updating Guix
2348 @cindex @command{guix pull}
2349 @cindex pull
2350 Packages are installed or upgraded to the latest version available in
2351 the distribution currently available on your local machine. To update
2352 that distribution, along with the Guix tools, you must run @command{guix
2353 pull}: the command downloads the latest Guix source code and package
2354 descriptions, and deploys it.
2355
2356 On completion, @command{guix package} will use packages and package
2357 versions from this just-retrieved copy of Guix. Not only that, but all
2358 the Guix commands and Scheme modules will also be taken from that latest
2359 version. New @command{guix} sub-commands added by the update also
2360 become available.
2361
2362 Any user can update their Guix copy using @command{guix pull}, and the
2363 effect is limited to the user who run @command{guix pull}. For
2364 instance, when user @code{root} runs @command{guix pull}, this has no
2365 effect on the version of Guix that user @code{alice} sees, and vice
2366 versa@footnote{Under the hood, @command{guix pull} updates the
2367 @file{~/.config/guix/latest} symbolic link to point to the latest Guix,
2368 and the @command{guix} command loads code from there. Currently, the
2369 only way to roll back an invocation of @command{guix pull} is to
2370 manually update this symlink to point to the previous Guix.}.
2371
2372 The @command{guix pull} command is usually invoked with no arguments,
2373 but it supports the following options:
2374
2375 @table @code
2376 @item --verbose
2377 Produce verbose output, writing build logs to the standard error output.
2378
2379 @item --url=@var{url}
2380 Download the source tarball of Guix from @var{url}.
2381
2382 By default, the tarball is taken from its canonical address at
2383 @code{gnu.org}, for the stable branch of Guix.
2384
2385 With some Git servers, this can be used to deploy any version of Guix.
2386 For example, to download and deploy version 0.12.0 of Guix from the
2387 canonical Git repo:
2388
2389 @example
2390 guix pull --url=http://git.savannah.gnu.org/cgit/guix.git/snapshot/v0.12.0.tar.gz
2391 @end example
2392
2393 It can also be used to deploy arbitrary Git revisions:
2394
2395 @example
2396 guix pull --url=http://git.savannah.gnu.org/cgit/guix.git/snapshot/74d862e8a.tar.gz
2397 @end example
2398
2399 @item --bootstrap
2400 Use the bootstrap Guile to build the latest Guix. This option is only
2401 useful to Guix developers.
2402 @end table
2403
2404
2405 @node Invoking guix pack
2406 @section Invoking @command{guix pack}
2407
2408 Occasionally you want to pass software to people who are not (yet!)
2409 lucky enough to be using Guix. You'd tell them to run @command{guix
2410 package -i @var{something}}, but that's not possible in this case. This
2411 is where @command{guix pack} comes in.
2412
2413 @cindex pack
2414 @cindex bundle
2415 @cindex application bundle
2416 @cindex software bundle
2417 The @command{guix pack} command creates a shrink-wrapped @dfn{pack} or
2418 @dfn{software bundle}: it creates a tarball or some other archive
2419 containing the binaries of the software you're interested in, and all
2420 its dependencies. The resulting archive can be used on any machine that
2421 does not have Guix, and people can run the exact same binaries as those
2422 you have with Guix. The pack itself is created in a bit-reproducible
2423 fashion, so anyone can verify that it really contains the build results
2424 that you pretend to be shipping.
2425
2426 For example, to create a bundle containing Guile, Emacs, Geiser, and all
2427 their dependencies, you can run:
2428
2429 @example
2430 $ guix pack guile emacs geiser
2431 @dots{}
2432 /gnu/store/@dots{}-pack.tar.gz
2433 @end example
2434
2435 The result here is a tarball containing a @file{/gnu/store} directory
2436 with all the relevant packages. The resulting tarball contains a
2437 @dfn{profile} with the three packages of interest; the profile is the
2438 same as would be created by @command{guix package -i}. It is this
2439 mechanism that is used to create Guix's own standalone binary tarball
2440 (@pxref{Binary Installation}).
2441
2442 Users of this pack would have to run
2443 @file{/gnu/store/@dots{}-profile/bin/guile} to run Guile, which you may
2444 find inconvenient. To work around it, you can create, say, a
2445 @file{/opt/gnu/bin} symlink to the profile:
2446
2447 @example
2448 guix pack -S /opt/gnu/bin=bin guile emacs geiser
2449 @end example
2450
2451 @noindent
2452 That way, users can happily type @file{/opt/gnu/bin/guile} and enjoy.
2453
2454 Alternatively, you can produce a pack in the Docker image format using
2455 the following command:
2456
2457 @example
2458 guix pack -f docker guile emacs geiser
2459 @end example
2460
2461 @noindent
2462 The result is a tarball that can be passed to the @command{docker load}
2463 command. See the
2464 @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker
2465 documentation} for more information.
2466
2467 Several command-line options allow you to customize your pack:
2468
2469 @table @code
2470 @item --format=@var{format}
2471 @itemx -f @var{format}
2472 Produce a pack in the given @var{format}.
2473
2474 The available formats are:
2475
2476 @table @code
2477 @item tarball
2478 This is the default format. It produces a tarball containing all the
2479 specifies binaries and symlinks.
2480
2481 @item docker
2482 This produces a tarball that follows the
2483 @uref{https://github.com/docker/docker/blob/master/image/spec/v1.2.md,
2484 Docker Image Specification}.
2485 @end table
2486
2487 @item --expression=@var{expr}
2488 @itemx -e @var{expr}
2489 Consider the package @var{expr} evaluates to.
2490
2491 This has the same purpose as the same-named option in @command{guix
2492 build} (@pxref{Additional Build Options, @code{--expression} in
2493 @command{guix build}}).
2494
2495 @item --system=@var{system}
2496 @itemx -s @var{system}
2497 Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
2498 the system type of the build host.
2499
2500 @item --target=@var{triplet}
2501 @cindex cross-compilation
2502 Cross-build for @var{triplet}, which must be a valid GNU triplet, such
2503 as @code{"mips64el-linux-gnu"} (@pxref{Specifying target triplets, GNU
2504 configuration triplets,, autoconf, Autoconf}).
2505
2506 @item --compression=@var{tool}
2507 @itemx -C @var{tool}
2508 Compress the resulting tarball using @var{tool}---one of @code{gzip},
2509 @code{bzip2}, @code{xz}, or @code{lzip}.
2510
2511 @item --symlink=@var{spec}
2512 @itemx -S @var{spec}
2513 Add the symlinks specified by @var{spec} to the pack. This option can
2514 appear several times.
2515
2516 @var{spec} has the form @code{@var{source}=@var{target}}, where
2517 @var{source} is the symlink that will be created and @var{target} is the
2518 symlink target.
2519
2520 For instance, @code{-S /opt/gnu/bin=bin} creates a @file{/opt/gnu/bin}
2521 symlink pointing to the @file{bin} sub-directory of the profile.
2522
2523 @item --localstatedir
2524 Include the ``local state directory'', @file{/var/guix}, in the
2525 resulting pack.
2526
2527 @file{/var/guix} contains the store database (@pxref{The Store}) as well
2528 as garbage-collector roots (@pxref{Invoking guix gc}). Providing it in
2529 the pack means that the store is ``complete'' and manageable by Guix;
2530 not providing it pack means that the store is ``dead'': items cannot be
2531 added to it or removed from it after extraction of the pack.
2532
2533 One use case for this is the Guix self-contained binary tarball
2534 (@pxref{Binary Installation}).
2535 @end table
2536
2537 In addition, @command{guix pack} supports all the common build options
2538 (@pxref{Common Build Options}) and all the package transformation
2539 options (@pxref{Package Transformation Options}).
2540
2541
2542 @node Invoking guix archive
2543 @section Invoking @command{guix archive}
2544
2545 @cindex @command{guix archive}
2546 @cindex archive
2547 The @command{guix archive} command allows users to @dfn{export} files
2548 from the store into a single archive, and to later @dfn{import} them.
2549 In particular, it allows store files to be transferred from one machine
2550 to the store on another machine.
2551
2552 @cindex exporting store items
2553 To export store files as an archive to standard output, run:
2554
2555 @example
2556 guix archive --export @var{options} @var{specifications}...
2557 @end example
2558
2559 @var{specifications} may be either store file names or package
2560 specifications, as for @command{guix package} (@pxref{Invoking guix
2561 package}). For instance, the following command creates an archive
2562 containing the @code{gui} output of the @code{git} package and the main
2563 output of @code{emacs}:
2564
2565 @example
2566 guix archive --export git:gui /gnu/store/...-emacs-24.3 > great.nar
2567 @end example
2568
2569 If the specified packages are not built yet, @command{guix archive}
2570 automatically builds them. The build process may be controlled with the
2571 common build options (@pxref{Common Build Options}).
2572
2573 To transfer the @code{emacs} package to a machine connected over SSH,
2574 one would run:
2575
2576 @example
2577 guix archive --export -r emacs | ssh the-machine guix archive --import
2578 @end example
2579
2580 @noindent
2581 Similarly, a complete user profile may be transferred from one machine
2582 to another like this:
2583
2584 @example
2585 guix archive --export -r $(readlink -f ~/.guix-profile) | \
2586 ssh the-machine guix-archive --import
2587 @end example
2588
2589 @noindent
2590 However, note that, in both examples, all of @code{emacs} and the
2591 profile as well as all of their dependencies are transferred (due to
2592 @code{-r}), regardless of what is already available in the store on the
2593 target machine. The @code{--missing} option can help figure out which
2594 items are missing from the target store. The @command{guix copy}
2595 command simplifies and optimizes this whole process, so this is probably
2596 what you should use in this case (@pxref{Invoking guix copy}).
2597
2598 @cindex nar, archive format
2599 @cindex normalized archive (nar)
2600 Archives are stored in the ``normalized archive'' or ``nar'' format, which is
2601 comparable in spirit to `tar', but with differences
2602 that make it more appropriate for our purposes. First, rather than
2603 recording all Unix metadata for each file, the nar format only mentions
2604 the file type (regular, directory, or symbolic link); Unix permissions
2605 and owner/group are dismissed. Second, the order in which directory
2606 entries are stored always follows the order of file names according to
2607 the C locale collation order. This makes archive production fully
2608 deterministic.
2609
2610 When exporting, the daemon digitally signs the contents of the archive,
2611 and that digital signature is appended. When importing, the daemon
2612 verifies the signature and rejects the import in case of an invalid
2613 signature or if the signing key is not authorized.
2614 @c FIXME: Add xref to daemon doc about signatures.
2615
2616 The main options are:
2617
2618 @table @code
2619 @item --export
2620 Export the specified store files or packages (see below.) Write the
2621 resulting archive to the standard output.
2622
2623 Dependencies are @emph{not} included in the output, unless
2624 @code{--recursive} is passed.
2625
2626 @item -r
2627 @itemx --recursive
2628 When combined with @code{--export}, this instructs @command{guix
2629 archive} to include dependencies of the given items in the archive.
2630 Thus, the resulting archive is self-contained: it contains the closure
2631 of the exported store items.
2632
2633 @item --import
2634 Read an archive from the standard input, and import the files listed
2635 therein into the store. Abort if the archive has an invalid digital
2636 signature, or if it is signed by a public key not among the authorized
2637 keys (see @code{--authorize} below.)
2638
2639 @item --missing
2640 Read a list of store file names from the standard input, one per line,
2641 and write on the standard output the subset of these files missing from
2642 the store.
2643
2644 @item --generate-key[=@var{parameters}]
2645 @cindex signing, archives
2646 Generate a new key pair for the daemon. This is a prerequisite before
2647 archives can be exported with @code{--export}. Note that this operation
2648 usually takes time, because it needs to gather enough entropy to
2649 generate the key pair.
2650
2651 The generated key pair is typically stored under @file{/etc/guix}, in
2652 @file{signing-key.pub} (public key) and @file{signing-key.sec} (private
2653 key, which must be kept secret.) When @var{parameters} is omitted,
2654 an ECDSA key using the Ed25519 curve is generated, or, for Libgcrypt
2655 versions before 1.6.0, it is a 4096-bit RSA key.
2656 Alternatively, @var{parameters} can specify
2657 @code{genkey} parameters suitable for Libgcrypt (@pxref{General
2658 public-key related Functions, @code{gcry_pk_genkey},, gcrypt, The
2659 Libgcrypt Reference Manual}).
2660
2661 @item --authorize
2662 @cindex authorizing, archives
2663 Authorize imports signed by the public key passed on standard input.
2664 The public key must be in ``s-expression advanced format''---i.e., the
2665 same format as the @file{signing-key.pub} file.
2666
2667 The list of authorized keys is kept in the human-editable file
2668 @file{/etc/guix/acl}. The file contains
2669 @url{http://people.csail.mit.edu/rivest/Sexp.txt, ``advanced-format
2670 s-expressions''} and is structured as an access-control list in the
2671 @url{http://theworld.com/~cme/spki.txt, Simple Public-Key Infrastructure
2672 (SPKI)}.
2673
2674 @item --extract=@var{directory}
2675 @itemx -x @var{directory}
2676 Read a single-item archive as served by substitute servers
2677 (@pxref{Substitutes}) and extract it to @var{directory}. This is a
2678 low-level operation needed in only very narrow use cases; see below.
2679
2680 For example, the following command extracts the substitute for Emacs
2681 served by @code{hydra.gnu.org} to @file{/tmp/emacs}:
2682
2683 @example
2684 $ wget -O - \
2685 https://hydra.gnu.org/nar/@dots{}-emacs-24.5 \
2686 | bunzip2 | guix archive -x /tmp/emacs
2687 @end example
2688
2689 Single-item archives are different from multiple-item archives produced
2690 by @command{guix archive --export}; they contain a single store item,
2691 and they do @emph{not} embed a signature. Thus this operation does
2692 @emph{no} signature verification and its output should be considered
2693 unsafe.
2694
2695 The primary purpose of this operation is to facilitate inspection of
2696 archive contents coming from possibly untrusted substitute servers.
2697
2698 @end table
2699
2700 @c *********************************************************************
2701 @node Programming Interface
2702 @chapter Programming Interface
2703
2704 GNU Guix provides several Scheme programming interfaces (APIs) to
2705 define, build, and query packages. The first interface allows users to
2706 write high-level package definitions. These definitions refer to
2707 familiar packaging concepts, such as the name and version of a package,
2708 its build system, and its dependencies. These definitions can then be
2709 turned into concrete build actions.
2710
2711 Build actions are performed by the Guix daemon, on behalf of users. In a
2712 standard setup, the daemon has write access to the store---the
2713 @file{/gnu/store} directory---whereas users do not. The recommended
2714 setup also has the daemon perform builds in chroots, under a specific
2715 build users, to minimize interference with the rest of the system.
2716
2717 @cindex derivation
2718 Lower-level APIs are available to interact with the daemon and the
2719 store. To instruct the daemon to perform a build action, users actually
2720 provide it with a @dfn{derivation}. A derivation is a low-level
2721 representation of the build actions to be taken, and the environment in
2722 which they should occur---derivations are to package definitions what
2723 assembly is to C programs. The term ``derivation'' comes from the fact
2724 that build results @emph{derive} from them.
2725
2726 This chapter describes all these APIs in turn, starting from high-level
2727 package definitions.
2728
2729 @menu
2730 * Defining Packages:: Defining new packages.
2731 * Build Systems:: Specifying how packages are built.
2732 * The Store:: Manipulating the package store.
2733 * Derivations:: Low-level interface to package derivations.
2734 * The Store Monad:: Purely functional interface to the store.
2735 * G-Expressions:: Manipulating build expressions.
2736 @end menu
2737
2738 @node Defining Packages
2739 @section Defining Packages
2740
2741 The high-level interface to package definitions is implemented in the
2742 @code{(guix packages)} and @code{(guix build-system)} modules. As an
2743 example, the package definition, or @dfn{recipe}, for the GNU Hello
2744 package looks like this:
2745
2746 @example
2747 (define-module (gnu packages hello)
2748 #:use-module (guix packages)
2749 #:use-module (guix download)
2750 #:use-module (guix build-system gnu)
2751 #:use-module (guix licenses)
2752 #:use-module (gnu packages gawk))
2753
2754 (define-public hello
2755 (package
2756 (name "hello")
2757 (version "2.10")
2758 (source (origin
2759 (method url-fetch)
2760 (uri (string-append "mirror://gnu/hello/hello-" version
2761 ".tar.gz"))
2762 (sha256
2763 (base32
2764 "0ssi1wpaf7plaswqqjwigppsg5fyh99vdlb9kzl7c9lng89ndq1i"))))
2765 (build-system gnu-build-system)
2766 (arguments '(#:configure-flags '("--enable-silent-rules")))
2767 (inputs `(("gawk" ,gawk)))
2768 (synopsis "Hello, GNU world: An example GNU package")
2769 (description "Guess what GNU Hello prints!")
2770 (home-page "http://www.gnu.org/software/hello/")
2771 (license gpl3+)))
2772 @end example
2773
2774 @noindent
2775 Without being a Scheme expert, the reader may have guessed the meaning
2776 of the various fields here. This expression binds the variable
2777 @code{hello} to a @code{<package>} object, which is essentially a record
2778 (@pxref{SRFI-9, Scheme records,, guile, GNU Guile Reference Manual}).
2779 This package object can be inspected using procedures found in the
2780 @code{(guix packages)} module; for instance, @code{(package-name hello)}
2781 returns---surprise!---@code{"hello"}.
2782
2783 With luck, you may be able to import part or all of the definition of
2784 the package you are interested in from another repository, using the
2785 @code{guix import} command (@pxref{Invoking guix import}).
2786
2787 In the example above, @var{hello} is defined in a module of its own,
2788 @code{(gnu packages hello)}. Technically, this is not strictly
2789 necessary, but it is convenient to do so: all the packages defined in
2790 modules under @code{(gnu packages @dots{})} are automatically known to
2791 the command-line tools (@pxref{Package Modules}).
2792
2793 There are a few points worth noting in the above package definition:
2794
2795 @itemize
2796 @item
2797 The @code{source} field of the package is an @code{<origin>} object
2798 (@pxref{origin Reference}, for the complete reference).
2799 Here, the @code{url-fetch} method from @code{(guix download)} is used,
2800 meaning that the source is a file to be downloaded over FTP or HTTP.
2801
2802 The @code{mirror://gnu} prefix instructs @code{url-fetch} to use one of
2803 the GNU mirrors defined in @code{(guix download)}.
2804
2805 The @code{sha256} field specifies the expected SHA256 hash of the file
2806 being downloaded. It is mandatory, and allows Guix to check the
2807 integrity of the file. The @code{(base32 @dots{})} form introduces the
2808 base32 representation of the hash. You can obtain this information with
2809 @code{guix download} (@pxref{Invoking guix download}) and @code{guix
2810 hash} (@pxref{Invoking guix hash}).
2811
2812 @cindex patches
2813 When needed, the @code{origin} form can also have a @code{patches} field
2814 listing patches to be applied, and a @code{snippet} field giving a
2815 Scheme expression to modify the source code.
2816
2817 @item
2818 @cindex GNU Build System
2819 The @code{build-system} field specifies the procedure to build the
2820 package (@pxref{Build Systems}). Here, @var{gnu-build-system}
2821 represents the familiar GNU Build System, where packages may be
2822 configured, built, and installed with the usual @code{./configure &&
2823 make && make check && make install} command sequence.
2824
2825 @item
2826 The @code{arguments} field specifies options for the build system
2827 (@pxref{Build Systems}). Here it is interpreted by
2828 @var{gnu-build-system} as a request run @file{configure} with the
2829 @code{--enable-silent-rules} flag.
2830
2831 @cindex quote
2832 @cindex quoting
2833 @findex '
2834 @findex quote
2835 What about these quote (@code{'}) characters? They are Scheme syntax to
2836 introduce a literal list; @code{'} is synonymous with @code{quote}.
2837 @xref{Expression Syntax, quoting,, guile, GNU Guile Reference Manual},
2838 for details. Here the value of the @code{arguments} field is a list of
2839 arguments passed to the build system down the road, as with @code{apply}
2840 (@pxref{Fly Evaluation, @code{apply},, guile, GNU Guile Reference
2841 Manual}).
2842
2843 The hash-colon (@code{#:}) sequence defines a Scheme @dfn{keyword}
2844 (@pxref{Keywords,,, guile, GNU Guile Reference Manual}), and
2845 @code{#:configure-flags} is a keyword used to pass a keyword argument
2846 to the build system (@pxref{Coding With Keywords,,, guile, GNU Guile
2847 Reference Manual}).
2848
2849 @item
2850 The @code{inputs} field specifies inputs to the build process---i.e.,
2851 build-time or run-time dependencies of the package. Here, we define an
2852 input called @code{"gawk"} whose value is that of the @var{gawk}
2853 variable; @var{gawk} is itself bound to a @code{<package>} object.
2854
2855 @cindex backquote (quasiquote)
2856 @findex `
2857 @findex quasiquote
2858 @cindex comma (unquote)
2859 @findex ,
2860 @findex unquote
2861 @findex ,@@
2862 @findex unquote-splicing
2863 Again, @code{`} (a backquote, synonymous with @code{quasiquote}) allows
2864 us to introduce a literal list in the @code{inputs} field, while
2865 @code{,} (a comma, synonymous with @code{unquote}) allows us to insert a
2866 value in that list (@pxref{Expression Syntax, unquote,, guile, GNU Guile
2867 Reference Manual}).
2868
2869 Note that GCC, Coreutils, Bash, and other essential tools do not need to
2870 be specified as inputs here. Instead, @var{gnu-build-system} takes care
2871 of ensuring that they are present (@pxref{Build Systems}).
2872
2873 However, any other dependencies need to be specified in the
2874 @code{inputs} field. Any dependency not specified here will simply be
2875 unavailable to the build process, possibly leading to a build failure.
2876 @end itemize
2877
2878 @xref{package Reference}, for a full description of possible fields.
2879
2880 Once a package definition is in place, the
2881 package may actually be built using the @code{guix build} command-line
2882 tool (@pxref{Invoking guix build}). You can easily jump back to the
2883 package definition using the @command{guix edit} command
2884 (@pxref{Invoking guix edit}).
2885 @xref{Packaging Guidelines}, for
2886 more information on how to test package definitions, and
2887 @ref{Invoking guix lint}, for information on how to check a definition
2888 for style conformance.
2889
2890 Finally, updating the package definition to a new upstream version
2891 can be partly automated by the @command{guix refresh} command
2892 (@pxref{Invoking guix refresh}).
2893
2894 Behind the scenes, a derivation corresponding to the @code{<package>}
2895 object is first computed by the @code{package-derivation} procedure.
2896 That derivation is stored in a @code{.drv} file under @file{/gnu/store}.
2897 The build actions it prescribes may then be realized by using the
2898 @code{build-derivations} procedure (@pxref{The Store}).
2899
2900 @deffn {Scheme Procedure} package-derivation @var{store} @var{package} [@var{system}]
2901 Return the @code{<derivation>} object of @var{package} for @var{system}
2902 (@pxref{Derivations}).
2903
2904 @var{package} must be a valid @code{<package>} object, and @var{system}
2905 must be a string denoting the target system type---e.g.,
2906 @code{"x86_64-linux"} for an x86_64 Linux-based GNU system. @var{store}
2907 must be a connection to the daemon, which operates on the store
2908 (@pxref{The Store}).
2909 @end deffn
2910
2911 @noindent
2912 @cindex cross-compilation
2913 Similarly, it is possible to compute a derivation that cross-builds a
2914 package for some other system:
2915
2916 @deffn {Scheme Procedure} package-cross-derivation @var{store} @
2917 @var{package} @var{target} [@var{system}]
2918 Return the @code{<derivation>} object of @var{package} cross-built from
2919 @var{system} to @var{target}.
2920
2921 @var{target} must be a valid GNU triplet denoting the target hardware
2922 and operating system, such as @code{"mips64el-linux-gnu"}
2923 (@pxref{Configuration Names, GNU configuration triplets,, configure, GNU
2924 Configure and Build System}).
2925 @end deffn
2926
2927 @cindex package transformations
2928 @cindex input rewriting
2929 @cindex dependency tree rewriting
2930 Packages can be manipulated in arbitrary ways. An example of a useful
2931 transformation is @dfn{input rewriting}, whereby the dependency tree of
2932 a package is rewritten by replacing specific inputs by others:
2933
2934 @deffn {Scheme Procedure} package-input-rewriting @var{replacements} @
2935 [@var{rewrite-name}]
2936 Return a procedure that, when passed a package, replaces its direct and
2937 indirect dependencies (but not its implicit inputs) according to
2938 @var{replacements}. @var{replacements} is a list of package pairs; the
2939 first element of each pair is the package to replace, and the second one
2940 is the replacement.
2941
2942 Optionally, @var{rewrite-name} is a one-argument procedure that takes
2943 the name of a package and returns its new name after rewrite.
2944 @end deffn
2945
2946 @noindent
2947 Consider this example:
2948
2949 @example
2950 (define libressl-instead-of-openssl
2951 ;; This is a procedure to replace OPENSSL by LIBRESSL,
2952 ;; recursively.
2953 (package-input-rewriting `((,openssl . ,libressl))))
2954
2955 (define git-with-libressl
2956 (libressl-instead-of-openssl git))
2957 @end example
2958
2959 @noindent
2960 Here we first define a rewriting procedure that replaces @var{openssl}
2961 with @var{libressl}. Then we use it to define a @dfn{variant} of the
2962 @var{git} package that uses @var{libressl} instead of @var{openssl}.
2963 This is exactly what the @option{--with-input} command-line option does
2964 (@pxref{Package Transformation Options, @option{--with-input}}).
2965
2966 A more generic procedure to rewrite a package dependency graph is
2967 @code{package-mapping}: it supports arbitrary changes to nodes in the
2968 graph.
2969
2970 @deffn {Scheme Procedure} package-mapping @var{proc} [@var{cut?}]
2971 Return a procedure that, given a package, applies @var{proc} to all the packages
2972 depended on and returns the resulting package. The procedure stops recursion
2973 when @var{cut?} returns true for a given package.
2974 @end deffn
2975
2976 @menu
2977 * package Reference :: The package data type.
2978 * origin Reference:: The origin data type.
2979 @end menu
2980
2981
2982 @node package Reference
2983 @subsection @code{package} Reference
2984
2985 This section summarizes all the options available in @code{package}
2986 declarations (@pxref{Defining Packages}).
2987
2988 @deftp {Data Type} package
2989 This is the data type representing a package recipe.
2990
2991 @table @asis
2992 @item @code{name}
2993 The name of the package, as a string.
2994
2995 @item @code{version}
2996 The version of the package, as a string.
2997
2998 @item @code{source}
2999 An object telling how the source code for the package should be
3000 acquired. Most of the time, this is an @code{origin} object, which
3001 denotes a file fetched from the Internet (@pxref{origin Reference}). It
3002 can also be any other ``file-like'' object such as a @code{local-file},
3003 which denotes a file from the local file system (@pxref{G-Expressions,
3004 @code{local-file}}).
3005
3006 @item @code{build-system}
3007 The build system that should be used to build the package (@pxref{Build
3008 Systems}).
3009
3010 @item @code{arguments} (default: @code{'()})
3011 The arguments that should be passed to the build system. This is a
3012 list, typically containing sequential keyword-value pairs.
3013
3014 @item @code{inputs} (default: @code{'()})
3015 @itemx @code{native-inputs} (default: @code{'()})
3016 @itemx @code{propagated-inputs} (default: @code{'()})
3017 @cindex inputs, of packages
3018 These fields list dependencies of the package. Each one is a list of
3019 tuples, where each tuple has a label for the input (a string) as its
3020 first element, a package, origin, or derivation as its second element,
3021 and optionally the name of the output thereof that should be used, which
3022 defaults to @code{"out"} (@pxref{Packages with Multiple Outputs}, for
3023 more on package outputs). For example, the list below specifies three
3024 inputs:
3025
3026 @example
3027 `(("libffi" ,libffi)
3028 ("libunistring" ,libunistring)
3029 ("glib:bin" ,glib "bin")) ;the "bin" output of Glib
3030 @end example
3031
3032 @cindex cross compilation, package dependencies
3033 The distinction between @code{native-inputs} and @code{inputs} is
3034 necessary when considering cross-compilation. When cross-compiling,
3035 dependencies listed in @code{inputs} are built for the @emph{target}
3036 architecture; conversely, dependencies listed in @code{native-inputs}
3037 are built for the architecture of the @emph{build} machine.
3038
3039 @code{native-inputs} is typically used to list tools needed at
3040 build time, but not at run time, such as Autoconf, Automake, pkg-config,
3041 Gettext, or Bison. @command{guix lint} can report likely mistakes in
3042 this area (@pxref{Invoking guix lint}).
3043
3044 @anchor{package-propagated-inputs}
3045 Lastly, @code{propagated-inputs} is similar to @code{inputs}, but the
3046 specified packages will be automatically installed alongside the package
3047 they belong to (@pxref{package-cmd-propagated-inputs, @command{guix
3048 package}}, for information on how @command{guix package} deals with
3049 propagated inputs.)
3050
3051 For example this is necessary when a C/C++ library needs headers of
3052 another library to compile, or when a pkg-config file refers to another
3053 one @i{via} its @code{Requires} field.
3054
3055 Another example where @code{propagated-inputs} is useful is for languages
3056 that lack a facility to record the run-time search path akin to the
3057 @code{RUNPATH} of ELF files; this includes Guile, Python, Perl, and
3058 more. To ensure that libraries written in those languages can find
3059 library code they depend on at run time, run-time dependencies must be
3060 listed in @code{propagated-inputs} rather than @code{inputs}.
3061
3062 @item @code{self-native-input?} (default: @code{#f})
3063 This is a Boolean field telling whether the package should use itself as
3064 a native input when cross-compiling.
3065
3066 @item @code{outputs} (default: @code{'("out")})
3067 The list of output names of the package. @xref{Packages with Multiple
3068 Outputs}, for typical uses of additional outputs.
3069
3070 @item @code{native-search-paths} (default: @code{'()})
3071 @itemx @code{search-paths} (default: @code{'()})
3072 A list of @code{search-path-specification} objects describing
3073 search-path environment variables honored by the package.
3074
3075 @item @code{replacement} (default: @code{#f})
3076 This must be either @code{#f} or a package object that will be used as a
3077 @dfn{replacement} for this package. @xref{Security Updates, grafts},
3078 for details.
3079
3080 @item @code{synopsis}
3081 A one-line description of the package.
3082
3083 @item @code{description}
3084 A more elaborate description of the package.
3085
3086 @item @code{license}
3087 @cindex license, of packages
3088 The license of the package; a value from @code{(guix licenses)},
3089 or a list of such values.
3090
3091 @item @code{home-page}
3092 The URL to the home-page of the package, as a string.
3093
3094 @item @code{supported-systems} (default: @var{%supported-systems})
3095 The list of systems supported by the package, as strings of the form
3096 @code{architecture-kernel}, for example @code{"x86_64-linux"}.
3097
3098 @item @code{maintainers} (default: @code{'()})
3099 The list of maintainers of the package, as @code{maintainer} objects.
3100
3101 @item @code{location} (default: source location of the @code{package} form)
3102 The source location of the package. It is useful to override this when
3103 inheriting from another package, in which case this field is not
3104 automatically corrected.
3105 @end table
3106 @end deftp
3107
3108
3109 @node origin Reference
3110 @subsection @code{origin} Reference
3111
3112 This section summarizes all the options available in @code{origin}
3113 declarations (@pxref{Defining Packages}).
3114
3115 @deftp {Data Type} origin
3116 This is the data type representing a source code origin.
3117
3118 @table @asis
3119 @item @code{uri}
3120 An object containing the URI of the source. The object type depends on
3121 the @code{method} (see below). For example, when using the
3122 @var{url-fetch} method of @code{(guix download)}, the valid @code{uri}
3123 values are: a URL represented as a string, or a list thereof.
3124
3125 @item @code{method}
3126 A procedure that handles the URI.
3127
3128 Examples include:
3129
3130 @table @asis
3131 @item @var{url-fetch} from @code{(guix download)}
3132 download a file from the HTTP, HTTPS, or FTP URL specified in the
3133 @code{uri} field;
3134
3135 @vindex git-fetch
3136 @item @var{git-fetch} from @code{(guix git-download)}
3137 clone the Git version control repository, and check out the revision
3138 specified in the @code{uri} field as a @code{git-reference} object; a
3139 @code{git-reference} looks like this:
3140
3141 @example
3142 (git-reference
3143 (url "git://git.debian.org/git/pkg-shadow/shadow")
3144 (commit "v4.1.5.1"))
3145 @end example
3146 @end table
3147
3148 @item @code{sha256}
3149 A bytevector containing the SHA-256 hash of the source. Typically the
3150 @code{base32} form is used here to generate the bytevector from a
3151 base-32 string.
3152
3153 You can obtain this information using @code{guix download}
3154 (@pxref{Invoking guix download}) or @code{guix hash} (@pxref{Invoking
3155 guix hash}).
3156
3157 @item @code{file-name} (default: @code{#f})
3158 The file name under which the source code should be saved. When this is
3159 @code{#f}, a sensible default value will be used in most cases. In case
3160 the source is fetched from a URL, the file name from the URL will be
3161 used. For version control checkouts, it is recommended to provide the
3162 file name explicitly because the default is not very descriptive.
3163
3164 @item @code{patches} (default: @code{'()})
3165 A list of file names containing patches to be applied to the source.
3166
3167 This list of patches must be unconditional. In particular, it cannot
3168 depend on the value of @code{%current-system} or
3169 @code{%current-target-system}.
3170
3171 @item @code{snippet} (default: @code{#f})
3172 A G-expression (@pxref{G-Expressions}) or S-expression that will be run
3173 in the source directory. This is a convenient way to modify the source,
3174 sometimes more convenient than a patch.
3175
3176 @item @code{patch-flags} (default: @code{'("-p1")})
3177 A list of command-line flags that should be passed to the @code{patch}
3178 command.
3179
3180 @item @code{patch-inputs} (default: @code{#f})
3181 Input packages or derivations to the patching process. When this is
3182 @code{#f}, the usual set of inputs necessary for patching are provided,
3183 such as GNU@tie{}Patch.
3184
3185 @item @code{modules} (default: @code{'()})
3186 A list of Guile modules that should be loaded during the patching
3187 process and while running the code in the @code{snippet} field.
3188
3189 @item @code{patch-guile} (default: @code{#f})
3190 The Guile package that should be used in the patching process. When
3191 this is @code{#f}, a sensible default is used.
3192 @end table
3193 @end deftp
3194
3195
3196 @node Build Systems
3197 @section Build Systems
3198
3199 @cindex build system
3200 Each package definition specifies a @dfn{build system} and arguments for
3201 that build system (@pxref{Defining Packages}). This @code{build-system}
3202 field represents the build procedure of the package, as well as implicit
3203 dependencies of that build procedure.
3204
3205 Build systems are @code{<build-system>} objects. The interface to
3206 create and manipulate them is provided by the @code{(guix build-system)}
3207 module, and actual build systems are exported by specific modules.
3208
3209 @cindex bag (low-level package representation)
3210 Under the hood, build systems first compile package objects to
3211 @dfn{bags}. A @dfn{bag} is like a package, but with less
3212 ornamentation---in other words, a bag is a lower-level representation of
3213 a package, which includes all the inputs of that package, including some
3214 that were implicitly added by the build system. This intermediate
3215 representation is then compiled to a derivation (@pxref{Derivations}).
3216
3217 Build systems accept an optional list of @dfn{arguments}. In package
3218 definitions, these are passed @i{via} the @code{arguments} field
3219 (@pxref{Defining Packages}). They are typically keyword arguments
3220 (@pxref{Optional Arguments, keyword arguments in Guile,, guile, GNU
3221 Guile Reference Manual}). The value of these arguments is usually
3222 evaluated in the @dfn{build stratum}---i.e., by a Guile process launched
3223 by the daemon (@pxref{Derivations}).
3224
3225 The main build system is @var{gnu-build-system}, which implements the
3226 standard build procedure for GNU and many other packages. It
3227 is provided by the @code{(guix build-system gnu)} module.
3228
3229 @defvr {Scheme Variable} gnu-build-system
3230 @var{gnu-build-system} represents the GNU Build System, and variants
3231 thereof (@pxref{Configuration, configuration and makefile conventions,,
3232 standards, GNU Coding Standards}).
3233
3234 @cindex build phases
3235 In a nutshell, packages using it are configured, built, and installed with
3236 the usual @code{./configure && make && make check && make install}
3237 command sequence. In practice, a few additional steps are often needed.
3238 All these steps are split up in separate @dfn{phases},
3239 notably@footnote{Please see the @code{(guix build gnu-build-system)}
3240 modules for more details about the build phases.}:
3241
3242 @table @code
3243 @item unpack
3244 Unpack the source tarball, and change the current directory to the
3245 extracted source tree. If the source is actually a directory, copy it
3246 to the build tree, and enter that directory.
3247
3248 @item patch-source-shebangs
3249 Patch shebangs encountered in source files so they refer to the right
3250 store file names. For instance, this changes @code{#!/bin/sh} to
3251 @code{#!/gnu/store/@dots{}-bash-4.3/bin/sh}.
3252
3253 @item configure
3254 Run the @file{configure} script with a number of default options, such
3255 as @code{--prefix=/gnu/store/@dots{}}, as well as the options specified
3256 by the @code{#:configure-flags} argument.
3257
3258 @item build
3259 Run @code{make} with the list of flags specified with
3260 @code{#:make-flags}. If the @code{#:parallel-build?} argument is true
3261 (the default), build with @code{make -j}.
3262
3263 @item check
3264 Run @code{make check}, or some other target specified with
3265 @code{#:test-target}, unless @code{#:tests? #f} is passed. If the
3266 @code{#:parallel-tests?} argument is true (the default), run @code{make
3267 check -j}.
3268
3269 @item install
3270 Run @code{make install} with the flags listed in @code{#:make-flags}.
3271
3272 @item patch-shebangs
3273 Patch shebangs on the installed executable files.
3274
3275 @item strip
3276 Strip debugging symbols from ELF files (unless @code{#:strip-binaries?}
3277 is false), copying them to the @code{debug} output when available
3278 (@pxref{Installing Debugging Files}).
3279 @end table
3280
3281 @vindex %standard-phases
3282 The build-side module @code{(guix build gnu-build-system)} defines
3283 @var{%standard-phases} as the default list of build phases.
3284 @var{%standard-phases} is a list of symbol/procedure pairs, where the
3285 procedure implements the actual phase.
3286
3287 The list of phases used for a particular package can be changed with the
3288 @code{#:phases} parameter. For instance, passing:
3289
3290 @example
3291 #:phases (modify-phases %standard-phases (delete 'configure))
3292 @end example
3293
3294 means that all the phases described above will be used, except the
3295 @code{configure} phase.
3296
3297 In addition, this build system ensures that the ``standard'' environment
3298 for GNU packages is available. This includes tools such as GCC, libc,
3299 Coreutils, Bash, Make, Diffutils, grep, and sed (see the @code{(guix
3300 build-system gnu)} module for a complete list). We call these the
3301 @dfn{implicit inputs} of a package, because package definitions do not
3302 have to mention them.
3303 @end defvr
3304
3305 Other @code{<build-system>} objects are defined to support other
3306 conventions and tools used by free software packages. They inherit most
3307 of @var{gnu-build-system}, and differ mainly in the set of inputs
3308 implicitly added to the build process, and in the list of phases
3309 executed. Some of these build systems are listed below.
3310
3311 @defvr {Scheme Variable} ant-build-system
3312 This variable is exported by @code{(guix build-system ant)}. It
3313 implements the build procedure for Java packages that can be built with
3314 @url{http://ant.apache.org/, Ant build tool}.
3315
3316 It adds both @code{ant} and the @dfn{Java Development Kit} (JDK) as
3317 provided by the @code{icedtea} package to the set of inputs. Different
3318 packages can be specified with the @code{#:ant} and @code{#:jdk}
3319 parameters, respectively.
3320
3321 When the original package does not provide a suitable Ant build file,
3322 the parameter @code{#:jar-name} can be used to generate a minimal Ant
3323 build file @file{build.xml} with tasks to build the specified jar
3324 archive.
3325
3326 The parameter @code{#:build-target} can be used to specify the Ant task
3327 that should be run during the @code{build} phase. By default the
3328 ``jar'' task will be run.
3329
3330 @end defvr
3331
3332 @defvr {Scheme Variable} asdf-build-system/source
3333 @defvrx {Scheme Variable} asdf-build-system/sbcl
3334 @defvrx {Scheme Variable} asdf-build-system/ecl
3335
3336 These variables, exported by @code{(guix build-system asdf)}, implement
3337 build procedures for Common Lisp packages using
3338 @url{https://common-lisp.net/project/asdf/, ``ASDF''}. ASDF is a system
3339 definition facility for Common Lisp programs and libraries.
3340
3341 The @code{asdf-build-system/source} system installs the packages in
3342 source form, and can be loaded using any common lisp implementation, via
3343 ASDF. The others, such as @code{asdf-build-system/sbcl}, install binary
3344 systems in the format which a particular implementation understands.
3345 These build systems can also be used to produce executable programs, or
3346 lisp images which contain a set of packages pre-loaded.
3347
3348 The build system uses naming conventions. For binary packages, the
3349 package itself as well as its run-time dependencies should begin their
3350 name with the lisp implementation, such as @code{sbcl-} for
3351 @code{asdf-build-system/sbcl}. Beginning the input name with this
3352 prefix will allow the build system to encode its location into the
3353 resulting library, so that the input can be found at run-time.
3354
3355 If dependencies are used only for tests, it is convenient to use a
3356 different prefix in order to avoid having a run-time dependency on such
3357 systems. For example,
3358
3359 @example
3360 (define-public sbcl-bordeaux-threads
3361 (package
3362 ...
3363 (native-inputs `(("tests:cl-fiveam" ,sbcl-fiveam)))
3364 ...))
3365 @end example
3366
3367 Additionally, the corresponding source package should be labeled using
3368 the same convention as python packages (see @ref{Python Modules}), using
3369 the @code{cl-} prefix.
3370
3371 For binary packages, each system should be defined as a Guix package.
3372 If one package @code{origin} contains several systems, package variants
3373 can be created in order to build all the systems. Source packages,
3374 which use @code{asdf-build-system/source}, may contain several systems.
3375
3376 In order to create executable programs and images, the build-side
3377 procedures @code{build-program} and @code{build-image} can be used.
3378 They should be called in a build phase after the @code{create-symlinks}
3379 phase, so that the system which was just built can be used within the
3380 resulting image. @code{build-program} requires a list of Common Lisp
3381 expressions to be passed as the @code{#:entry-program} argument.
3382
3383 If the system is not defined within its own @code{.asd} file of the same
3384 name, then the @code{#:asd-file} parameter should be used to specify
3385 which file the system is defined in.
3386
3387 @end defvr
3388
3389 @defvr {Scheme Variable} cargo-build-system
3390 @cindex Rust programming language
3391 @cindex Cargo (Rust build system)
3392 This variable is exported by @code{(guix build-system cargo)}. It
3393 supports builds of packages using Cargo, the build tool of the
3394 @uref{https://www.rust-lang.org, Rust programming language}.
3395
3396 In its @code{configure} phase, this build system replaces dependencies
3397 specified in the @file{Carto.toml} file with inputs to the Guix package.
3398 The @code{install} phase installs the binaries, and it also installs the
3399 source code and @file{Cargo.toml} file.
3400 @end defvr
3401
3402 @defvr {Scheme Variable} cmake-build-system
3403 This variable is exported by @code{(guix build-system cmake)}. It
3404 implements the build procedure for packages using the
3405 @url{http://www.cmake.org, CMake build tool}.
3406
3407 It automatically adds the @code{cmake} package to the set of inputs.
3408 Which package is used can be specified with the @code{#:cmake}
3409 parameter.
3410
3411 The @code{#:configure-flags} parameter is taken as a list of flags
3412 passed to the @command{cmake} command. The @code{#:build-type}
3413 parameter specifies in abstract terms the flags passed to the compiler;
3414 it defaults to @code{"RelWithDebInfo"} (short for ``release mode with
3415 debugging information''), which roughly means that code is compiled with
3416 @code{-O2 -g}, as is the case for Autoconf-based packages by default.
3417 @end defvr
3418
3419 @defvr {Scheme Variable} glib-or-gtk-build-system
3420 This variable is exported by @code{(guix build-system glib-or-gtk)}. It
3421 is intended for use with packages making use of GLib or GTK+.
3422
3423 This build system adds the following two phases to the ones defined by
3424 @var{gnu-build-system}:
3425
3426 @table @code
3427 @item glib-or-gtk-wrap
3428 The phase @code{glib-or-gtk-wrap} ensures that programs in
3429 @file{bin/} are able to find GLib ``schemas'' and
3430 @uref{https://developer.gnome.org/gtk3/stable/gtk-running.html, GTK+
3431 modules}. This is achieved by wrapping the programs in launch scripts
3432 that appropriately set the @code{XDG_DATA_DIRS} and @code{GTK_PATH}
3433 environment variables.
3434
3435 It is possible to exclude specific package outputs from that wrapping
3436 process by listing their names in the
3437 @code{#:glib-or-gtk-wrap-excluded-outputs} parameter. This is useful
3438 when an output is known not to contain any GLib or GTK+ binaries, and
3439 where wrapping would gratuitously add a dependency of that output on
3440 GLib and GTK+.
3441
3442 @item glib-or-gtk-compile-schemas
3443 The phase @code{glib-or-gtk-compile-schemas} makes sure that all
3444 @uref{https://developer.gnome.org/gio/stable/glib-compile-schemas.html,
3445 GSettings schemas} of GLib are compiled. Compilation is performed by the
3446 @command{glib-compile-schemas} program. It is provided by the package
3447 @code{glib:bin} which is automatically imported by the build system.
3448 The @code{glib} package providing @command{glib-compile-schemas} can be
3449 specified with the @code{#:glib} parameter.
3450 @end table
3451
3452 Both phases are executed after the @code{install} phase.
3453 @end defvr
3454
3455 @defvr {Scheme Variable} ocaml-build-system
3456 This variable is exported by @code{(guix build-system ocaml)}. It implements
3457 a build procedure for @uref{https://ocaml.org, OCaml} packages, which consists
3458 of choosing the correct set of commands to run for each package. OCaml
3459 packages can expect many different commands to be run. This build system will
3460 try some of them.
3461
3462 When the package has a @file{setup.ml} file present at the top-level, it will
3463 run @code{ocaml setup.ml -configure}, @code{ocaml setup.ml -build} and
3464 @code{ocaml setup.ml -install}. The build system will assume that this file
3465 was generated by @uref{http://oasis.forge.ocamlcore.org/, OASIS} and will take
3466 care of setting the prefix and enabling tests if they are not disabled. You
3467 can pass configure and build flags with the @code{#:configure-flags} and
3468 @code{#:build-flags}. The @code{#:test-flags} key can be passed to change the
3469 set of flags used to enable tests. The @code{#:use-make?} key can be used to
3470 bypass this system in the build and install phases.
3471
3472 When the package has a @file{configure} file, it is assumed that it is a
3473 hand-made configure script that requires a different argument format than
3474 in the @code{gnu-build-system}. You can add more flags with the
3475 @code{#:configure-flags} key.
3476
3477 When the package has a @file{Makefile} file (or @code{#:use-make?} is
3478 @code{#t}), it will be used and more flags can be passed to the build and
3479 install phases with the @code{#:make-flags} key.
3480
3481 Finally, some packages do not have these files and use a somewhat standard
3482 location for its build system. In that case, the build system will run
3483 @code{ocaml pkg/pkg.ml} or @code{ocaml pkg/build.ml} and take care of
3484 providing the path to the required findlib module. Additional flags can
3485 be passed via the @code{#:build-flags} key. Install is taken care of by
3486 @command{opam-installer}. In this case, the @code{opam} package must
3487 be added to the @code{native-inputs} field of the package definition.
3488
3489 Note that most OCaml packages assume they will be installed in the same
3490 directory as OCaml, which is not what we want in guix. In particular, they
3491 will install @file{.so} files in their module's directory, which is usually
3492 fine because it is in the OCaml compiler directory. In guix though, these
3493 libraries cannot be found and we use @code{CAML_LD_LIBRARY_PATH}. This
3494 variable points to @file{lib/ocaml/site-lib/stubslibs} and this is where
3495 @file{.so} libraries should be installed.
3496 @end defvr
3497
3498 @defvr {Scheme Variable} python-build-system
3499 This variable is exported by @code{(guix build-system python)}. It
3500 implements the more or less standard build procedure used by Python
3501 packages, which consists in running @code{python setup.py build} and
3502 then @code{python setup.py install --prefix=/gnu/store/@dots{}}.
3503
3504 For packages that install stand-alone Python programs under @code{bin/},
3505 it takes care of wrapping these programs so that their @code{PYTHONPATH}
3506 environment variable points to all the Python libraries they depend on.
3507
3508 Which Python package is used to perform the build can be specified with
3509 the @code{#:python} parameter. This is a useful way to force a package
3510 to be built for a specific version of the Python interpreter, which
3511 might be necessary if the package is only compatible with a single
3512 interpreter version.
3513
3514 By default guix calls @code{setup.py} under control of
3515 @code{setuptools}, much like @command{pip} does. Some packages are not
3516 compatible with setuptools (and pip), thus you can disable this by
3517 setting the @code{#:use-setuptools} parameter to @code{#f}.
3518 @end defvr
3519
3520 @defvr {Scheme Variable} perl-build-system
3521 This variable is exported by @code{(guix build-system perl)}. It
3522 implements the standard build procedure for Perl packages, which either
3523 consists in running @code{perl Build.PL --prefix=/gnu/store/@dots{}},
3524 followed by @code{Build} and @code{Build install}; or in running
3525 @code{perl Makefile.PL PREFIX=/gnu/store/@dots{}}, followed by
3526 @code{make} and @code{make install}, depending on which of
3527 @code{Build.PL} or @code{Makefile.PL} is present in the package
3528 distribution. Preference is given to the former if both @code{Build.PL}
3529 and @code{Makefile.PL} exist in the package distribution. This
3530 preference can be reversed by specifying @code{#t} for the
3531 @code{#:make-maker?} parameter.
3532
3533 The initial @code{perl Makefile.PL} or @code{perl Build.PL} invocation
3534 passes flags specified by the @code{#:make-maker-flags} or
3535 @code{#:module-build-flags} parameter, respectively.
3536
3537 Which Perl package is used can be specified with @code{#:perl}.
3538 @end defvr
3539
3540 @defvr {Scheme Variable} r-build-system
3541 This variable is exported by @code{(guix build-system r)}. It
3542 implements the build procedure used by @uref{http://r-project.org, R}
3543 packages, which essentially is little more than running @code{R CMD
3544 INSTALL --library=/gnu/store/@dots{}} in an environment where
3545 @code{R_LIBS_SITE} contains the paths to all R package inputs. Tests
3546 are run after installation using the R function
3547 @code{tools::testInstalledPackage}.
3548 @end defvr
3549
3550 @defvr {Scheme Variable} ruby-build-system
3551 This variable is exported by @code{(guix build-system ruby)}. It
3552 implements the RubyGems build procedure used by Ruby packages, which
3553 involves running @code{gem build} followed by @code{gem install}.
3554
3555 The @code{source} field of a package that uses this build system
3556 typically references a gem archive, since this is the format that Ruby
3557 developers use when releasing their software. The build system unpacks
3558 the gem archive, potentially patches the source, runs the test suite,
3559 repackages the gem, and installs it. Additionally, directories and
3560 tarballs may be referenced to allow building unreleased gems from Git or
3561 a traditional source release tarball.
3562
3563 Which Ruby package is used can be specified with the @code{#:ruby}
3564 parameter. A list of additional flags to be passed to the @command{gem}
3565 command can be specified with the @code{#:gem-flags} parameter.
3566 @end defvr
3567
3568 @defvr {Scheme Variable} waf-build-system
3569 This variable is exported by @code{(guix build-system waf)}. It
3570 implements a build procedure around the @code{waf} script. The common
3571 phases---@code{configure}, @code{build}, and @code{install}---are
3572 implemented by passing their names as arguments to the @code{waf}
3573 script.
3574
3575 The @code{waf} script is executed by the Python interpreter. Which
3576 Python package is used to run the script can be specified with the
3577 @code{#:python} parameter.
3578 @end defvr
3579
3580 @defvr {Scheme Variable} haskell-build-system
3581 This variable is exported by @code{(guix build-system haskell)}. It
3582 implements the Cabal build procedure used by Haskell packages, which
3583 involves running @code{runhaskell Setup.hs configure
3584 --prefix=/gnu/store/@dots{}} and @code{runhaskell Setup.hs build}.
3585 Instead of installing the package by running @code{runhaskell Setup.hs
3586 install}, to avoid trying to register libraries in the read-only
3587 compiler store directory, the build system uses @code{runhaskell
3588 Setup.hs copy}, followed by @code{runhaskell Setup.hs register}. In
3589 addition, the build system generates the package documentation by
3590 running @code{runhaskell Setup.hs haddock}, unless @code{#:haddock? #f}
3591 is passed. Optional Haddock parameters can be passed with the help of
3592 the @code{#:haddock-flags} parameter. If the file @code{Setup.hs} is
3593 not found, the build system looks for @code{Setup.lhs} instead.
3594
3595 Which Haskell compiler is used can be specified with the @code{#:haskell}
3596 parameter which defaults to @code{ghc}.
3597 @end defvr
3598
3599 @defvr {Scheme Variable} dub-build-system
3600 This variable is exported by @code{(guix build-system dub)}. It
3601 implements the Dub build procedure used by D packages, which
3602 involves running @code{dub build} and @code{dub run}.
3603 Installation is done by copying the files manually.
3604
3605 Which D compiler is used can be specified with the @code{#:ldc}
3606 parameter which defaults to @code{ldc}.
3607 @end defvr
3608
3609 @defvr {Scheme Variable} emacs-build-system
3610 This variable is exported by @code{(guix build-system emacs)}. It
3611 implements an installation procedure similar to the packaging system
3612 of Emacs itself (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
3613
3614 It first creates the @code{@var{package}-autoloads.el} file, then it
3615 byte compiles all Emacs Lisp files. Differently from the Emacs
3616 packaging system, the Info documentation files are moved to the standard
3617 documentation directory and the @file{dir} file is deleted. Each
3618 package is installed in its own directory under
3619 @file{share/emacs/site-lisp/guix.d}.
3620 @end defvr
3621
3622 Lastly, for packages that do not need anything as sophisticated, a
3623 ``trivial'' build system is provided. It is trivial in the sense that
3624 it provides basically no support: it does not pull any implicit inputs,
3625 and does not have a notion of build phases.
3626
3627 @defvr {Scheme Variable} trivial-build-system
3628 This variable is exported by @code{(guix build-system trivial)}.
3629
3630 This build system requires a @code{#:builder} argument. This argument
3631 must be a Scheme expression that builds the package output(s)---as
3632 with @code{build-expression->derivation} (@pxref{Derivations,
3633 @code{build-expression->derivation}}).
3634 @end defvr
3635
3636 @node The Store
3637 @section The Store
3638
3639 @cindex store
3640 @cindex store items
3641 @cindex store paths
3642
3643 Conceptually, the @dfn{store} is the place where derivations that have
3644 been built successfully are stored---by default, @file{/gnu/store}.
3645 Sub-directories in the store are referred to as @dfn{store items} or
3646 sometimes @dfn{store paths}. The store has an associated database that
3647 contains information such as the store paths referred to by each store
3648 path, and the list of @emph{valid} store items---results of successful
3649 builds. This database resides in @file{@var{localstatedir}/guix/db},
3650 where @var{localstatedir} is the state directory specified @i{via}
3651 @option{--localstatedir} at configure time, usually @file{/var}.
3652
3653 The store is @emph{always} accessed by the daemon on behalf of its clients
3654 (@pxref{Invoking guix-daemon}). To manipulate the store, clients
3655 connect to the daemon over a Unix-domain socket, send requests to it,
3656 and read the result---these are remote procedure calls, or RPCs.
3657
3658 @quotation Note
3659 Users must @emph{never} modify files under @file{/gnu/store} directly.
3660 This would lead to inconsistencies and break the immutability
3661 assumptions of Guix's functional model (@pxref{Introduction}).
3662
3663 @xref{Invoking guix gc, @command{guix gc --verify}}, for information on
3664 how to check the integrity of the store and attempt recovery from
3665 accidental modifications.
3666 @end quotation
3667
3668 The @code{(guix store)} module provides procedures to connect to the
3669 daemon, and to perform RPCs. These are described below.
3670
3671 @deffn {Scheme Procedure} open-connection [@var{file}] [#:reserve-space? #t]
3672 Connect to the daemon over the Unix-domain socket at @var{file}. When
3673 @var{reserve-space?} is true, instruct it to reserve a little bit of
3674 extra space on the file system so that the garbage collector can still
3675 operate should the disk become full. Return a server object.
3676
3677 @var{file} defaults to @var{%default-socket-path}, which is the normal
3678 location given the options that were passed to @command{configure}.
3679 @end deffn
3680
3681 @deffn {Scheme Procedure} close-connection @var{server}
3682 Close the connection to @var{server}.
3683 @end deffn
3684
3685 @defvr {Scheme Variable} current-build-output-port
3686 This variable is bound to a SRFI-39 parameter, which refers to the port
3687 where build and error logs sent by the daemon should be written.
3688 @end defvr
3689
3690 Procedures that make RPCs all take a server object as their first
3691 argument.
3692
3693 @deffn {Scheme Procedure} valid-path? @var{server} @var{path}
3694 @cindex invalid store items
3695 Return @code{#t} when @var{path} designates a valid store item and
3696 @code{#f} otherwise (an invalid item may exist on disk but still be
3697 invalid, for instance because it is the result of an aborted or failed
3698 build.)
3699
3700 A @code{&nix-protocol-error} condition is raised if @var{path} is not
3701 prefixed by the store directory (@file{/gnu/store}).
3702 @end deffn
3703
3704 @deffn {Scheme Procedure} add-text-to-store @var{server} @var{name} @var{text} [@var{references}]
3705 Add @var{text} under file @var{name} in the store, and return its store
3706 path. @var{references} is the list of store paths referred to by the
3707 resulting store path.
3708 @end deffn
3709
3710 @deffn {Scheme Procedure} build-derivations @var{server} @var{derivations}
3711 Build @var{derivations} (a list of @code{<derivation>} objects or
3712 derivation paths), and return when the worker is done building them.
3713 Return @code{#t} on success.
3714 @end deffn
3715
3716 Note that the @code{(guix monads)} module provides a monad as well as
3717 monadic versions of the above procedures, with the goal of making it
3718 more convenient to work with code that accesses the store (@pxref{The
3719 Store Monad}).
3720
3721 @c FIXME
3722 @i{This section is currently incomplete.}
3723
3724 @node Derivations
3725 @section Derivations
3726
3727 @cindex derivations
3728 Low-level build actions and the environment in which they are performed
3729 are represented by @dfn{derivations}. A derivation contains the
3730 following pieces of information:
3731
3732 @itemize
3733 @item
3734 The outputs of the derivation---derivations produce at least one file or
3735 directory in the store, but may produce more.
3736
3737 @item
3738 The inputs of the derivations, which may be other derivations or plain
3739 files in the store (patches, build scripts, etc.)
3740
3741 @item
3742 The system type targeted by the derivation---e.g., @code{x86_64-linux}.
3743
3744 @item
3745 The file name of a build script in the store, along with the arguments
3746 to be passed.
3747
3748 @item
3749 A list of environment variables to be defined.
3750
3751 @end itemize
3752
3753 @cindex derivation path
3754 Derivations allow clients of the daemon to communicate build actions to
3755 the store. They exist in two forms: as an in-memory representation,
3756 both on the client- and daemon-side, and as files in the store whose
3757 name end in @code{.drv}---these files are referred to as @dfn{derivation
3758 paths}. Derivations paths can be passed to the @code{build-derivations}
3759 procedure to perform the build actions they prescribe (@pxref{The
3760 Store}).
3761
3762 The @code{(guix derivations)} module provides a representation of
3763 derivations as Scheme objects, along with procedures to create and
3764 otherwise manipulate derivations. The lowest-level primitive to create
3765 a derivation is the @code{derivation} procedure:
3766
3767 @deffn {Scheme Procedure} derivation @var{store} @var{name} @var{builder} @
3768 @var{args} [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
3769 [#:recursive? #f] [#:inputs '()] [#:env-vars '()] @
3770 [#:system (%current-system)] [#:references-graphs #f] @
3771 [#:allowed-references #f] [#:disallowed-references #f] @
3772 [#:leaked-env-vars #f] [#:local-build? #f] @
3773 [#:substitutable? #t]
3774 Build a derivation with the given arguments, and return the resulting
3775 @code{<derivation>} object.
3776
3777 When @var{hash} and @var{hash-algo} are given, a
3778 @dfn{fixed-output derivation} is created---i.e., one whose result is
3779 known in advance, such as a file download. If, in addition,
3780 @var{recursive?} is true, then that fixed output may be an executable
3781 file or a directory and @var{hash} must be the hash of an archive
3782 containing this output.
3783
3784 When @var{references-graphs} is true, it must be a list of file
3785 name/store path pairs. In that case, the reference graph of each store
3786 path is exported in the build environment in the corresponding file, in
3787 a simple text format.
3788
3789 When @var{allowed-references} is true, it must be a list of store items
3790 or outputs that the derivation's output may refer to. Likewise,
3791 @var{disallowed-references}, if true, must be a list of things the
3792 outputs may @emph{not} refer to.
3793
3794 When @var{leaked-env-vars} is true, it must be a list of strings
3795 denoting environment variables that are allowed to ``leak'' from the
3796 daemon's environment to the build environment. This is only applicable
3797 to fixed-output derivations---i.e., when @var{hash} is true. The main
3798 use is to allow variables such as @code{http_proxy} to be passed to
3799 derivations that download files.
3800
3801 When @var{local-build?} is true, declare that the derivation is not a
3802 good candidate for offloading and should rather be built locally
3803 (@pxref{Daemon Offload Setup}). This is the case for small derivations
3804 where the costs of data transfers would outweigh the benefits.
3805
3806 When @var{substitutable?} is false, declare that substitutes of the
3807 derivation's output should not be used (@pxref{Substitutes}). This is
3808 useful, for instance, when building packages that capture details of the
3809 host CPU instruction set.
3810 @end deffn
3811
3812 @noindent
3813 Here's an example with a shell script as its builder, assuming
3814 @var{store} is an open connection to the daemon, and @var{bash} points
3815 to a Bash executable in the store:
3816
3817 @lisp
3818 (use-modules (guix utils)
3819 (guix store)
3820 (guix derivations))
3821
3822 (let ((builder ; add the Bash script to the store
3823 (add-text-to-store store "my-builder.sh"
3824 "echo hello world > $out\n" '())))
3825 (derivation store "foo"
3826 bash `("-e" ,builder)
3827 #:inputs `((,bash) (,builder))
3828 #:env-vars '(("HOME" . "/homeless"))))
3829 @result{} #<derivation /gnu/store/@dots{}-foo.drv => /gnu/store/@dots{}-foo>
3830 @end lisp
3831
3832 As can be guessed, this primitive is cumbersome to use directly. A
3833 better approach is to write build scripts in Scheme, of course! The
3834 best course of action for that is to write the build code as a
3835 ``G-expression'', and to pass it to @code{gexp->derivation}. For more
3836 information, @pxref{G-Expressions}.
3837
3838 Once upon a time, @code{gexp->derivation} did not exist and constructing
3839 derivations with build code written in Scheme was achieved with
3840 @code{build-expression->derivation}, documented below. This procedure
3841 is now deprecated in favor of the much nicer @code{gexp->derivation}.
3842
3843 @deffn {Scheme Procedure} build-expression->derivation @var{store} @
3844 @var{name} @var{exp} @
3845 [#:system (%current-system)] [#:inputs '()] @
3846 [#:outputs '("out")] [#:hash #f] [#:hash-algo #f] @
3847 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
3848 [#:references-graphs #f] [#:allowed-references #f] @
3849 [#:disallowed-references #f] @
3850 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
3851 Return a derivation that executes Scheme expression @var{exp} as a
3852 builder for derivation @var{name}. @var{inputs} must be a list of
3853 @code{(name drv-path sub-drv)} tuples; when @var{sub-drv} is omitted,
3854 @code{"out"} is assumed. @var{modules} is a list of names of Guile
3855 modules from the current search path to be copied in the store,
3856 compiled, and made available in the load path during the execution of
3857 @var{exp}---e.g., @code{((guix build utils) (guix build
3858 gnu-build-system))}.
3859
3860 @var{exp} is evaluated in an environment where @code{%outputs} is bound
3861 to a list of output/path pairs, and where @code{%build-inputs} is bound
3862 to a list of string/output-path pairs made from @var{inputs}.
3863 Optionally, @var{env-vars} is a list of string pairs specifying the name
3864 and value of environment variables visible to the builder. The builder
3865 terminates by passing the result of @var{exp} to @code{exit}; thus, when
3866 @var{exp} returns @code{#f}, the build is considered to have failed.
3867
3868 @var{exp} is built using @var{guile-for-build} (a derivation). When
3869 @var{guile-for-build} is omitted or is @code{#f}, the value of the
3870 @code{%guile-for-build} fluid is used instead.
3871
3872 See the @code{derivation} procedure for the meaning of
3873 @var{references-graphs}, @var{allowed-references},
3874 @var{disallowed-references}, @var{local-build?}, and
3875 @var{substitutable?}.
3876 @end deffn
3877
3878 @noindent
3879 Here's an example of a single-output derivation that creates a directory
3880 containing one file:
3881
3882 @lisp
3883 (let ((builder '(let ((out (assoc-ref %outputs "out")))
3884 (mkdir out) ; create /gnu/store/@dots{}-goo
3885 (call-with-output-file (string-append out "/test")
3886 (lambda (p)
3887 (display '(hello guix) p))))))
3888 (build-expression->derivation store "goo" builder))
3889
3890 @result{} #<derivation /gnu/store/@dots{}-goo.drv => @dots{}>
3891 @end lisp
3892
3893
3894 @node The Store Monad
3895 @section The Store Monad
3896
3897 @cindex monad
3898
3899 The procedures that operate on the store described in the previous
3900 sections all take an open connection to the build daemon as their first
3901 argument. Although the underlying model is functional, they either have
3902 side effects or depend on the current state of the store.
3903
3904 The former is inconvenient: the connection to the build daemon has to be
3905 carried around in all those functions, making it impossible to compose
3906 functions that do not take that parameter with functions that do. The
3907 latter can be problematic: since store operations have side effects
3908 and/or depend on external state, they have to be properly sequenced.
3909
3910 @cindex monadic values
3911 @cindex monadic functions
3912 This is where the @code{(guix monads)} module comes in. This module
3913 provides a framework for working with @dfn{monads}, and a particularly
3914 useful monad for our uses, the @dfn{store monad}. Monads are a
3915 construct that allows two things: associating ``context'' with values
3916 (in our case, the context is the store), and building sequences of
3917 computations (here computations include accesses to the store). Values
3918 in a monad---values that carry this additional context---are called
3919 @dfn{monadic values}; procedures that return such values are called
3920 @dfn{monadic procedures}.
3921
3922 Consider this ``normal'' procedure:
3923
3924 @example
3925 (define (sh-symlink store)
3926 ;; Return a derivation that symlinks the 'bash' executable.
3927 (let* ((drv (package-derivation store bash))
3928 (out (derivation->output-path drv))
3929 (sh (string-append out "/bin/bash")))
3930 (build-expression->derivation store "sh"
3931 `(symlink ,sh %output))))
3932 @end example
3933
3934 Using @code{(guix monads)} and @code{(guix gexp)}, it may be rewritten
3935 as a monadic function:
3936
3937 @example
3938 (define (sh-symlink)
3939 ;; Same, but return a monadic value.
3940 (mlet %store-monad ((drv (package->derivation bash)))
3941 (gexp->derivation "sh"
3942 #~(symlink (string-append #$drv "/bin/bash")
3943 #$output))))
3944 @end example
3945
3946 There are several things to note in the second version: the @code{store}
3947 parameter is now implicit and is ``threaded'' in the calls to the
3948 @code{package->derivation} and @code{gexp->derivation} monadic
3949 procedures, and the monadic value returned by @code{package->derivation}
3950 is @dfn{bound} using @code{mlet} instead of plain @code{let}.
3951
3952 As it turns out, the call to @code{package->derivation} can even be
3953 omitted since it will take place implicitly, as we will see later
3954 (@pxref{G-Expressions}):
3955
3956 @example
3957 (define (sh-symlink)
3958 (gexp->derivation "sh"
3959 #~(symlink (string-append #$bash "/bin/bash")
3960 #$output)))
3961 @end example
3962
3963 @c See
3964 @c <https://syntaxexclamation.wordpress.com/2014/06/26/escaping-continuations/>
3965 @c for the funny quote.
3966 Calling the monadic @code{sh-symlink} has no effect. As someone once
3967 said, ``you exit a monad like you exit a building on fire: by running''.
3968 So, to exit the monad and get the desired effect, one must use
3969 @code{run-with-store}:
3970
3971 @example
3972 (run-with-store (open-connection) (sh-symlink))
3973 @result{} /gnu/store/...-sh-symlink
3974 @end example
3975
3976 Note that the @code{(guix monad-repl)} module extends the Guile REPL with
3977 new ``meta-commands'' to make it easier to deal with monadic procedures:
3978 @code{run-in-store}, and @code{enter-store-monad}. The former is used
3979 to ``run'' a single monadic value through the store:
3980
3981 @example
3982 scheme@@(guile-user)> ,run-in-store (package->derivation hello)
3983 $1 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3984 @end example
3985
3986 The latter enters a recursive REPL, where all the return values are
3987 automatically run through the store:
3988
3989 @example
3990 scheme@@(guile-user)> ,enter-store-monad
3991 store-monad@@(guile-user) [1]> (package->derivation hello)
3992 $2 = #<derivation /gnu/store/@dots{}-hello-2.9.drv => @dots{}>
3993 store-monad@@(guile-user) [1]> (text-file "foo" "Hello!")
3994 $3 = "/gnu/store/@dots{}-foo"
3995 store-monad@@(guile-user) [1]> ,q
3996 scheme@@(guile-user)>
3997 @end example
3998
3999 @noindent
4000 Note that non-monadic values cannot be returned in the
4001 @code{store-monad} REPL.
4002
4003 The main syntactic forms to deal with monads in general are provided by
4004 the @code{(guix monads)} module and are described below.
4005
4006 @deffn {Scheme Syntax} with-monad @var{monad} @var{body} ...
4007 Evaluate any @code{>>=} or @code{return} forms in @var{body} as being
4008 in @var{monad}.
4009 @end deffn
4010
4011 @deffn {Scheme Syntax} return @var{val}
4012 Return a monadic value that encapsulates @var{val}.
4013 @end deffn
4014
4015 @deffn {Scheme Syntax} >>= @var{mval} @var{mproc} ...
4016 @dfn{Bind} monadic value @var{mval}, passing its ``contents'' to monadic
4017 procedures @var{mproc}@dots{}@footnote{This operation is commonly
4018 referred to as ``bind'', but that name denotes an unrelated procedure in
4019 Guile. Thus we use this somewhat cryptic symbol inherited from the
4020 Haskell language.}. There can be one @var{mproc} or several of them, as
4021 in this example:
4022
4023 @example
4024 (run-with-state
4025 (with-monad %state-monad
4026 (>>= (return 1)
4027 (lambda (x) (return (+ 1 x)))
4028 (lambda (x) (return (* 2 x)))))
4029 'some-state)
4030
4031 @result{} 4
4032 @result{} some-state
4033 @end example
4034 @end deffn
4035
4036 @deffn {Scheme Syntax} mlet @var{monad} ((@var{var} @var{mval}) ...) @
4037 @var{body} ...
4038 @deffnx {Scheme Syntax} mlet* @var{monad} ((@var{var} @var{mval}) ...) @
4039 @var{body} ...
4040 Bind the variables @var{var} to the monadic values @var{mval} in
4041 @var{body}, which is a sequence of expressions. As with the bind
4042 operator, this can be thought of as ``unpacking'' the raw, non-monadic
4043 value ``contained'' in @var{mval} and making @var{var} refer to that
4044 raw, non-monadic value within the scope of the @var{body}. The form
4045 (@var{var} -> @var{val}) binds @var{var} to the ``normal'' value
4046 @var{val}, as per @code{let}. The binding operations occur in sequence
4047 from left to right. The last expression of @var{body} must be a monadic
4048 expression, and its result will become the result of the @code{mlet} or
4049 @code{mlet*} when run in the @var{monad}.
4050
4051 @code{mlet*} is to @code{mlet} what @code{let*} is to @code{let}
4052 (@pxref{Local Bindings,,, guile, GNU Guile Reference Manual}).
4053 @end deffn
4054
4055 @deffn {Scheme System} mbegin @var{monad} @var{mexp} ...
4056 Bind @var{mexp} and the following monadic expressions in sequence,
4057 returning the result of the last expression. Every expression in the
4058 sequence must be a monadic expression.
4059
4060 This is akin to @code{mlet}, except that the return values of the
4061 monadic expressions are ignored. In that sense, it is analogous to
4062 @code{begin}, but applied to monadic expressions.
4063 @end deffn
4064
4065 @deffn {Scheme System} mwhen @var{condition} @var{mexp0} @var{mexp*} ...
4066 When @var{condition} is true, evaluate the sequence of monadic
4067 expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When
4068 @var{condition} is false, return @code{*unspecified*} in the current
4069 monad. Every expression in the sequence must be a monadic expression.
4070 @end deffn
4071
4072 @deffn {Scheme System} munless @var{condition} @var{mexp0} @var{mexp*} ...
4073 When @var{condition} is false, evaluate the sequence of monadic
4074 expressions @var{mexp0}..@var{mexp*} as in an @code{mbegin}. When
4075 @var{condition} is true, return @code{*unspecified*} in the current
4076 monad. Every expression in the sequence must be a monadic expression.
4077 @end deffn
4078
4079 @cindex state monad
4080 The @code{(guix monads)} module provides the @dfn{state monad}, which
4081 allows an additional value---the state---to be @emph{threaded} through
4082 monadic procedure calls.
4083
4084 @defvr {Scheme Variable} %state-monad
4085 The state monad. Procedures in the state monad can access and change
4086 the state that is threaded.
4087
4088 Consider the example below. The @code{square} procedure returns a value
4089 in the state monad. It returns the square of its argument, but also
4090 increments the current state value:
4091
4092 @example
4093 (define (square x)
4094 (mlet %state-monad ((count (current-state)))
4095 (mbegin %state-monad
4096 (set-current-state (+ 1 count))
4097 (return (* x x)))))
4098
4099 (run-with-state (sequence %state-monad (map square (iota 3))) 0)
4100 @result{} (0 1 4)
4101 @result{} 3
4102 @end example
4103
4104 When ``run'' through @var{%state-monad}, we obtain that additional state
4105 value, which is the number of @code{square} calls.
4106 @end defvr
4107
4108 @deffn {Monadic Procedure} current-state
4109 Return the current state as a monadic value.
4110 @end deffn
4111
4112 @deffn {Monadic Procedure} set-current-state @var{value}
4113 Set the current state to @var{value} and return the previous state as a
4114 monadic value.
4115 @end deffn
4116
4117 @deffn {Monadic Procedure} state-push @var{value}
4118 Push @var{value} to the current state, which is assumed to be a list,
4119 and return the previous state as a monadic value.
4120 @end deffn
4121
4122 @deffn {Monadic Procedure} state-pop
4123 Pop a value from the current state and return it as a monadic value.
4124 The state is assumed to be a list.
4125 @end deffn
4126
4127 @deffn {Scheme Procedure} run-with-state @var{mval} [@var{state}]
4128 Run monadic value @var{mval} starting with @var{state} as the initial
4129 state. Return two values: the resulting value, and the resulting state.
4130 @end deffn
4131
4132 The main interface to the store monad, provided by the @code{(guix
4133 store)} module, is as follows.
4134
4135 @defvr {Scheme Variable} %store-monad
4136 The store monad---an alias for @var{%state-monad}.
4137
4138 Values in the store monad encapsulate accesses to the store. When its
4139 effect is needed, a value of the store monad must be ``evaluated'' by
4140 passing it to the @code{run-with-store} procedure (see below.)
4141 @end defvr
4142
4143 @deffn {Scheme Procedure} run-with-store @var{store} @var{mval} [#:guile-for-build] [#:system (%current-system)]
4144 Run @var{mval}, a monadic value in the store monad, in @var{store}, an
4145 open store connection.
4146 @end deffn
4147
4148 @deffn {Monadic Procedure} text-file @var{name} @var{text} [@var{references}]
4149 Return as a monadic value the absolute file name in the store of the file
4150 containing @var{text}, a string. @var{references} is a list of store items that the
4151 resulting text file refers to; it defaults to the empty list.
4152 @end deffn
4153
4154 @deffn {Monadic Procedure} interned-file @var{file} [@var{name}] @
4155 [#:recursive? #t] [#:select? (const #t)]
4156 Return the name of @var{file} once interned in the store. Use
4157 @var{name} as its store name, or the basename of @var{file} if
4158 @var{name} is omitted.
4159
4160 When @var{recursive?} is true, the contents of @var{file} are added
4161 recursively; if @var{file} designates a flat file and @var{recursive?}
4162 is true, its contents are added, and its permission bits are kept.
4163
4164 When @var{recursive?} is true, call @code{(@var{select?} @var{file}
4165 @var{stat})} for each directory entry, where @var{file} is the entry's
4166 absolute file name and @var{stat} is the result of @code{lstat}; exclude
4167 entries for which @var{select?} does not return true.
4168
4169 The example below adds a file to the store, under two different names:
4170
4171 @example
4172 (run-with-store (open-connection)
4173 (mlet %store-monad ((a (interned-file "README"))
4174 (b (interned-file "README" "LEGU-MIN")))
4175 (return (list a b))))
4176
4177 @result{} ("/gnu/store/rwm@dots{}-README" "/gnu/store/44i@dots{}-LEGU-MIN")
4178 @end example
4179
4180 @end deffn
4181
4182 The @code{(guix packages)} module exports the following package-related
4183 monadic procedures:
4184
4185 @deffn {Monadic Procedure} package-file @var{package} [@var{file}] @
4186 [#:system (%current-system)] [#:target #f] @
4187 [#:output "out"]
4188 Return as a monadic
4189 value in the absolute file name of @var{file} within the @var{output}
4190 directory of @var{package}. When @var{file} is omitted, return the name
4191 of the @var{output} directory of @var{package}. When @var{target} is
4192 true, use it as a cross-compilation target triplet.
4193 @end deffn
4194
4195 @deffn {Monadic Procedure} package->derivation @var{package} [@var{system}]
4196 @deffnx {Monadic Procedure} package->cross-derivation @var{package} @
4197 @var{target} [@var{system}]
4198 Monadic version of @code{package-derivation} and
4199 @code{package-cross-derivation} (@pxref{Defining Packages}).
4200 @end deffn
4201
4202
4203 @node G-Expressions
4204 @section G-Expressions
4205
4206 @cindex G-expression
4207 @cindex build code quoting
4208 So we have ``derivations'', which represent a sequence of build actions
4209 to be performed to produce an item in the store (@pxref{Derivations}).
4210 These build actions are performed when asking the daemon to actually
4211 build the derivations; they are run by the daemon in a container
4212 (@pxref{Invoking guix-daemon}).
4213
4214 @cindex strata of code
4215 It should come as no surprise that we like to write these build actions
4216 in Scheme. When we do that, we end up with two @dfn{strata} of Scheme
4217 code@footnote{The term @dfn{stratum} in this context was coined by
4218 Manuel Serrano et al.@: in the context of their work on Hop. Oleg
4219 Kiselyov, who has written insightful
4220 @url{http://okmij.org/ftp/meta-programming/#meta-scheme, essays and code
4221 on this topic}, refers to this kind of code generation as
4222 @dfn{staging}.}: the ``host code''---code that defines packages, talks
4223 to the daemon, etc.---and the ``build code''---code that actually
4224 performs build actions, such as making directories, invoking
4225 @command{make}, etc.
4226
4227 To describe a derivation and its build actions, one typically needs to
4228 embed build code inside host code. It boils down to manipulating build
4229 code as data, and the homoiconicity of Scheme---code has a direct
4230 representation as data---comes in handy for that. But we need more than
4231 the normal @code{quasiquote} mechanism in Scheme to construct build
4232 expressions.
4233
4234 The @code{(guix gexp)} module implements @dfn{G-expressions}, a form of
4235 S-expressions adapted to build expressions. G-expressions, or
4236 @dfn{gexps}, consist essentially of three syntactic forms: @code{gexp},
4237 @code{ungexp}, and @code{ungexp-splicing} (or simply: @code{#~},
4238 @code{#$}, and @code{#$@@}), which are comparable to
4239 @code{quasiquote}, @code{unquote}, and @code{unquote-splicing},
4240 respectively (@pxref{Expression Syntax, @code{quasiquote},, guile,
4241 GNU Guile Reference Manual}). However, there are major differences:
4242
4243 @itemize
4244 @item
4245 Gexps are meant to be written to a file and run or manipulated by other
4246 processes.
4247
4248 @item
4249 When a high-level object such as a package or derivation is unquoted
4250 inside a gexp, the result is as if its output file name had been
4251 introduced.
4252
4253 @item
4254 Gexps carry information about the packages or derivations they refer to,
4255 and these dependencies are automatically added as inputs to the build
4256 processes that use them.
4257 @end itemize
4258
4259 @cindex lowering, of high-level objects in gexps
4260 This mechanism is not limited to package and derivation
4261 objects: @dfn{compilers} able to ``lower'' other high-level objects to
4262 derivations or files in the store can be defined,
4263 such that these objects can also be inserted
4264 into gexps. For example, a useful type of high-level objects that can be
4265 inserted in a gexp is ``file-like objects'', which make it easy to
4266 add files to the store and to refer to them in
4267 derivations and such (see @code{local-file} and @code{plain-file}
4268 below.)
4269
4270 To illustrate the idea, here is an example of a gexp:
4271
4272 @example
4273 (define build-exp
4274 #~(begin
4275 (mkdir #$output)
4276 (chdir #$output)
4277 (symlink (string-append #$coreutils "/bin/ls")
4278 "list-files")))
4279 @end example
4280
4281 This gexp can be passed to @code{gexp->derivation}; we obtain a
4282 derivation that builds a directory containing exactly one symlink to
4283 @file{/gnu/store/@dots{}-coreutils-8.22/bin/ls}:
4284
4285 @example
4286 (gexp->derivation "the-thing" build-exp)
4287 @end example
4288
4289 As one would expect, the @code{"/gnu/store/@dots{}-coreutils-8.22"} string is
4290 substituted to the reference to the @var{coreutils} package in the
4291 actual build code, and @var{coreutils} is automatically made an input to
4292 the derivation. Likewise, @code{#$output} (equivalent to @code{(ungexp
4293 output)}) is replaced by a string containing the directory name of the
4294 output of the derivation.
4295
4296 @cindex cross compilation
4297 In a cross-compilation context, it is useful to distinguish between
4298 references to the @emph{native} build of a package---that can run on the
4299 host---versus references to cross builds of a package. To that end, the
4300 @code{#+} plays the same role as @code{#$}, but is a reference to a
4301 native package build:
4302
4303 @example
4304 (gexp->derivation "vi"
4305 #~(begin
4306 (mkdir #$output)
4307 (system* (string-append #+coreutils "/bin/ln")
4308 "-s"
4309 (string-append #$emacs "/bin/emacs")
4310 (string-append #$output "/bin/vi")))
4311 #:target "mips64el-linux-gnu")
4312 @end example
4313
4314 @noindent
4315 In the example above, the native build of @var{coreutils} is used, so
4316 that @command{ln} can actually run on the host; but then the
4317 cross-compiled build of @var{emacs} is referenced.
4318
4319 @cindex imported modules, for gexps
4320 @findex with-imported-modules
4321 Another gexp feature is @dfn{imported modules}: sometimes you want to be
4322 able to use certain Guile modules from the ``host environment'' in the
4323 gexp, so those modules should be imported in the ``build environment''.
4324 The @code{with-imported-modules} form allows you to express that:
4325
4326 @example
4327 (let ((build (with-imported-modules '((guix build utils))
4328 #~(begin
4329 (use-modules (guix build utils))
4330 (mkdir-p (string-append #$output "/bin"))))))
4331 (gexp->derivation "empty-dir"
4332 #~(begin
4333 #$build
4334 (display "success!\n")
4335 #t)))
4336 @end example
4337
4338 @noindent
4339 In this example, the @code{(guix build utils)} module is automatically
4340 pulled into the isolated build environment of our gexp, such that
4341 @code{(use-modules (guix build utils))} works as expected.
4342
4343 @cindex module closure
4344 @findex source-module-closure
4345 Usually you want the @emph{closure} of the module to be imported---i.e.,
4346 the module itself and all the modules it depends on---rather than just
4347 the module; failing to do that, attempts to use the module will fail
4348 because of missing dependent modules. The @code{source-module-closure}
4349 procedure computes the closure of a module by looking at its source file
4350 headers, which comes in handy in this case:
4351
4352 @example
4353 (use-modules (guix modules)) ;for 'source-module-closure'
4354
4355 (with-imported-modules (source-module-closure
4356 '((guix build utils)
4357 (gnu build vm)))
4358 (gexp->derivation "something-with-vms"
4359 #~(begin
4360 (use-modules (guix build utils)
4361 (gnu build vm))
4362 @dots{})))
4363 @end example
4364
4365 The syntactic form to construct gexps is summarized below.
4366
4367 @deffn {Scheme Syntax} #~@var{exp}
4368 @deffnx {Scheme Syntax} (gexp @var{exp})
4369 Return a G-expression containing @var{exp}. @var{exp} may contain one
4370 or more of the following forms:
4371
4372 @table @code
4373 @item #$@var{obj}
4374 @itemx (ungexp @var{obj})
4375 Introduce a reference to @var{obj}. @var{obj} may have one of the
4376 supported types, for example a package or a
4377 derivation, in which case the @code{ungexp} form is replaced by its
4378 output file name---e.g., @code{"/gnu/store/@dots{}-coreutils-8.22}.
4379
4380 If @var{obj} is a list, it is traversed and references to supported
4381 objects are substituted similarly.
4382
4383 If @var{obj} is another gexp, its contents are inserted and its
4384 dependencies are added to those of the containing gexp.
4385
4386 If @var{obj} is another kind of object, it is inserted as is.
4387
4388 @item #$@var{obj}:@var{output}
4389 @itemx (ungexp @var{obj} @var{output})
4390 This is like the form above, but referring explicitly to the
4391 @var{output} of @var{obj}---this is useful when @var{obj} produces
4392 multiple outputs (@pxref{Packages with Multiple Outputs}).
4393
4394 @item #+@var{obj}
4395 @itemx #+@var{obj}:output
4396 @itemx (ungexp-native @var{obj})
4397 @itemx (ungexp-native @var{obj} @var{output})
4398 Same as @code{ungexp}, but produces a reference to the @emph{native}
4399 build of @var{obj} when used in a cross compilation context.
4400
4401 @item #$output[:@var{output}]
4402 @itemx (ungexp output [@var{output}])
4403 Insert a reference to derivation output @var{output}, or to the main
4404 output when @var{output} is omitted.
4405
4406 This only makes sense for gexps passed to @code{gexp->derivation}.
4407
4408 @item #$@@@var{lst}
4409 @itemx (ungexp-splicing @var{lst})
4410 Like the above, but splices the contents of @var{lst} inside the
4411 containing list.
4412
4413 @item #+@@@var{lst}
4414 @itemx (ungexp-native-splicing @var{lst})
4415 Like the above, but refers to native builds of the objects listed in
4416 @var{lst}.
4417
4418 @end table
4419
4420 G-expressions created by @code{gexp} or @code{#~} are run-time objects
4421 of the @code{gexp?} type (see below.)
4422 @end deffn
4423
4424 @deffn {Scheme Syntax} with-imported-modules @var{modules} @var{body}@dots{}
4425 Mark the gexps defined in @var{body}@dots{} as requiring @var{modules}
4426 in their execution environment.
4427
4428 Each item in @var{modules} can be the name of a module, such as
4429 @code{(guix build utils)}, or it can be a module name, followed by an
4430 arrow, followed by a file-like object:
4431
4432 @example
4433 `((guix build utils)
4434 (guix gcrypt)
4435 ((guix config) => ,(scheme-file "config.scm"
4436 #~(define-module @dots{}))))
4437 @end example
4438
4439 @noindent
4440 In the example above, the first two modules are taken from the search
4441 path, and the last one is created from the given file-like object.
4442
4443 This form has @emph{lexical} scope: it has an effect on the gexps
4444 directly defined in @var{body}@dots{}, but not on those defined, say, in
4445 procedures called from @var{body}@dots{}.
4446 @end deffn
4447
4448 @deffn {Scheme Procedure} gexp? @var{obj}
4449 Return @code{#t} if @var{obj} is a G-expression.
4450 @end deffn
4451
4452 G-expressions are meant to be written to disk, either as code building
4453 some derivation, or as plain files in the store. The monadic procedures
4454 below allow you to do that (@pxref{The Store Monad}, for more
4455 information about monads.)
4456
4457 @deffn {Monadic Procedure} gexp->derivation @var{name} @var{exp} @
4458 [#:system (%current-system)] [#:target #f] [#:graft? #t] @
4459 [#:hash #f] [#:hash-algo #f] @
4460 [#:recursive? #f] [#:env-vars '()] [#:modules '()] @
4461 [#:module-path @var{%load-path}] @
4462 [#:references-graphs #f] [#:allowed-references #f] @
4463 [#:disallowed-references #f] @
4464 [#:leaked-env-vars #f] @
4465 [#:script-name (string-append @var{name} "-builder")] @
4466 [#:local-build? #f] [#:substitutable? #t] [#:guile-for-build #f]
4467 Return a derivation @var{name} that runs @var{exp} (a gexp) with
4468 @var{guile-for-build} (a derivation) on @var{system}; @var{exp} is
4469 stored in a file called @var{script-name}. When @var{target} is true,
4470 it is used as the cross-compilation target triplet for packages referred
4471 to by @var{exp}.
4472
4473 @var{modules} is deprecated in favor of @code{with-imported-modules}.
4474 Its meaning is to
4475 make @var{modules} available in the evaluation context of @var{exp};
4476 @var{modules} is a list of names of Guile modules searched in
4477 @var{module-path} to be copied in the store, compiled, and made available in
4478 the load path during the execution of @var{exp}---e.g., @code{((guix
4479 build utils) (guix build gnu-build-system))}.
4480
4481 @var{graft?} determines whether packages referred to by @var{exp} should be grafted when
4482 applicable.
4483
4484 When @var{references-graphs} is true, it must be a list of tuples of one of the
4485 following forms:
4486
4487 @example
4488 (@var{file-name} @var{package})
4489 (@var{file-name} @var{package} @var{output})
4490 (@var{file-name} @var{derivation})
4491 (@var{file-name} @var{derivation} @var{output})
4492 (@var{file-name} @var{store-item})
4493 @end example
4494
4495 The right-hand-side of each element of @var{references-graphs} is automatically made
4496 an input of the build process of @var{exp}. In the build environment, each
4497 @var{file-name} contains the reference graph of the corresponding item, in a simple
4498 text format.
4499
4500 @var{allowed-references} must be either @code{#f} or a list of output names and packages.
4501 In the latter case, the list denotes store items that the result is allowed to
4502 refer to. Any reference to another store item will lead to a build error.
4503 Similarly for @var{disallowed-references}, which can list items that must not be
4504 referenced by the outputs.
4505
4506 The other arguments are as for @code{derivation} (@pxref{Derivations}).
4507 @end deffn
4508
4509 @cindex file-like objects
4510 The @code{local-file}, @code{plain-file}, @code{computed-file},
4511 @code{program-file}, and @code{scheme-file} procedures below return
4512 @dfn{file-like objects}. That is, when unquoted in a G-expression,
4513 these objects lead to a file in the store. Consider this G-expression:
4514
4515 @example
4516 #~(system* #$(file-append glibc "/sbin/nscd") "-f"
4517 #$(local-file "/tmp/my-nscd.conf"))
4518 @end example
4519
4520 The effect here is to ``intern'' @file{/tmp/my-nscd.conf} by copying it
4521 to the store. Once expanded, for instance @i{via}
4522 @code{gexp->derivation}, the G-expression refers to that copy under
4523 @file{/gnu/store}; thus, modifying or removing the file in @file{/tmp}
4524 does not have any effect on what the G-expression does.
4525 @code{plain-file} can be used similarly; it differs in that the file
4526 content is directly passed as a string.
4527
4528 @deffn {Scheme Procedure} local-file @var{file} [@var{name}] @
4529 [#:recursive? #f] [#:select? (const #t)]
4530 Return an object representing local file @var{file} to add to the store; this
4531 object can be used in a gexp. If @var{file} is a relative file name, it is looked
4532 up relative to the source file where this form appears. @var{file} will be added to
4533 the store under @var{name}--by default the base name of @var{file}.
4534
4535 When @var{recursive?} is true, the contents of @var{file} are added recursively; if @var{file}
4536 designates a flat file and @var{recursive?} is true, its contents are added, and its
4537 permission bits are kept.
4538
4539 When @var{recursive?} is true, call @code{(@var{select?} @var{file}
4540 @var{stat})} for each directory entry, where @var{file} is the entry's
4541 absolute file name and @var{stat} is the result of @code{lstat}; exclude
4542 entries for which @var{select?} does not return true.
4543
4544 This is the declarative counterpart of the @code{interned-file} monadic
4545 procedure (@pxref{The Store Monad, @code{interned-file}}).
4546 @end deffn
4547
4548 @deffn {Scheme Procedure} plain-file @var{name} @var{content}
4549 Return an object representing a text file called @var{name} with the given
4550 @var{content} (a string) to be added to the store.
4551
4552 This is the declarative counterpart of @code{text-file}.
4553 @end deffn
4554
4555 @deffn {Scheme Procedure} computed-file @var{name} @var{gexp} @
4556 [#:options '(#:local-build? #t)]
4557 Return an object representing the store item @var{name}, a file or
4558 directory computed by @var{gexp}. @var{options}
4559 is a list of additional arguments to pass to @code{gexp->derivation}.
4560
4561 This is the declarative counterpart of @code{gexp->derivation}.
4562 @end deffn
4563
4564 @deffn {Monadic Procedure} gexp->script @var{name} @var{exp}
4565 Return an executable script @var{name} that runs @var{exp} using
4566 @var{guile}, with @var{exp}'s imported modules in its search path.
4567
4568 The example below builds a script that simply invokes the @command{ls}
4569 command:
4570
4571 @example
4572 (use-modules (guix gexp) (gnu packages base))
4573
4574 (gexp->script "list-files"
4575 #~(execl #$(file-append coreutils "/bin/ls")
4576 "ls"))
4577 @end example
4578
4579 When ``running'' it through the store (@pxref{The Store Monad,
4580 @code{run-with-store}}), we obtain a derivation that produces an
4581 executable file @file{/gnu/store/@dots{}-list-files} along these lines:
4582
4583 @example
4584 #!/gnu/store/@dots{}-guile-2.0.11/bin/guile -ds
4585 !#
4586 (execl "/gnu/store/@dots{}-coreutils-8.22"/bin/ls" "ls")
4587 @end example
4588 @end deffn
4589
4590 @deffn {Scheme Procedure} program-file @var{name} @var{exp} @
4591 [#:guile #f]
4592 Return an object representing the executable store item @var{name} that
4593 runs @var{gexp}. @var{guile} is the Guile package used to execute that
4594 script.
4595
4596 This is the declarative counterpart of @code{gexp->script}.
4597 @end deffn
4598
4599 @deffn {Monadic Procedure} gexp->file @var{name} @var{exp} @
4600 [#:set-load-path? #t]
4601 Return a derivation that builds a file @var{name} containing @var{exp}.
4602 When @var{set-load-path?} is true, emit code in the resulting file to
4603 set @code{%load-path} and @code{%load-compiled-path} to honor
4604 @var{exp}'s imported modules.
4605
4606 The resulting file holds references to all the dependencies of @var{exp}
4607 or a subset thereof.
4608 @end deffn
4609
4610 @deffn {Scheme Procedure} scheme-file @var{name} @var{exp}
4611 Return an object representing the Scheme file @var{name} that contains
4612 @var{exp}.
4613
4614 This is the declarative counterpart of @code{gexp->file}.
4615 @end deffn
4616
4617 @deffn {Monadic Procedure} text-file* @var{name} @var{text} @dots{}
4618 Return as a monadic value a derivation that builds a text file
4619 containing all of @var{text}. @var{text} may list, in addition to
4620 strings, objects of any type that can be used in a gexp: packages,
4621 derivations, local file objects, etc. The resulting store file holds
4622 references to all these.
4623
4624 This variant should be preferred over @code{text-file} anytime the file
4625 to create will reference items from the store. This is typically the
4626 case when building a configuration file that embeds store file names,
4627 like this:
4628
4629 @example
4630 (define (profile.sh)
4631 ;; Return the name of a shell script in the store that
4632 ;; initializes the 'PATH' environment variable.
4633 (text-file* "profile.sh"
4634 "export PATH=" coreutils "/bin:"
4635 grep "/bin:" sed "/bin\n"))
4636 @end example
4637
4638 In this example, the resulting @file{/gnu/store/@dots{}-profile.sh} file
4639 will reference @var{coreutils}, @var{grep}, and @var{sed}, thereby
4640 preventing them from being garbage-collected during its lifetime.
4641 @end deffn
4642
4643 @deffn {Scheme Procedure} mixed-text-file @var{name} @var{text} @dots{}
4644 Return an object representing store file @var{name} containing
4645 @var{text}. @var{text} is a sequence of strings and file-like objects,
4646 as in:
4647
4648 @example
4649 (mixed-text-file "profile"
4650 "export PATH=" coreutils "/bin:" grep "/bin")
4651 @end example
4652
4653 This is the declarative counterpart of @code{text-file*}.
4654 @end deffn
4655
4656 @deffn {Scheme Procedure} file-append @var{obj} @var{suffix} @dots{}
4657 Return a file-like object that expands to the concatenation of @var{obj}
4658 and @var{suffix}, where @var{obj} is a lowerable object and each
4659 @var{suffix} is a string.
4660
4661 As an example, consider this gexp:
4662
4663 @example
4664 (gexp->script "run-uname"
4665 #~(system* #$(file-append coreutils
4666 "/bin/uname")))
4667 @end example
4668
4669 The same effect could be achieved with:
4670
4671 @example
4672 (gexp->script "run-uname"
4673 #~(system* (string-append #$coreutils
4674 "/bin/uname")))
4675 @end example
4676
4677 There is one difference though: in the @code{file-append} case, the
4678 resulting script contains the absolute file name as a string, whereas in
4679 the second case, the resulting script contains a @code{(string-append
4680 @dots{})} expression to construct the file name @emph{at run time}.
4681 @end deffn
4682
4683
4684 Of course, in addition to gexps embedded in ``host'' code, there are
4685 also modules containing build tools. To make it clear that they are
4686 meant to be used in the build stratum, these modules are kept in the
4687 @code{(guix build @dots{})} name space.
4688
4689 @cindex lowering, of high-level objects in gexps
4690 Internally, high-level objects are @dfn{lowered}, using their compiler,
4691 to either derivations or store items. For instance, lowering a package
4692 yields a derivation, and lowering a @code{plain-file} yields a store
4693 item. This is achieved using the @code{lower-object} monadic procedure.
4694
4695 @deffn {Monadic Procedure} lower-object @var{obj} [@var{system}] @
4696 [#:target #f]
4697 Return as a value in @var{%store-monad} the derivation or store item
4698 corresponding to @var{obj} for @var{system}, cross-compiling for
4699 @var{target} if @var{target} is true. @var{obj} must be an object that
4700 has an associated gexp compiler, such as a @code{<package>}.
4701 @end deffn
4702
4703
4704 @c *********************************************************************
4705 @node Utilities
4706 @chapter Utilities
4707
4708 This section describes Guix command-line utilities. Some of them are
4709 primarily targeted at developers and users who write new package
4710 definitions, while others are more generally useful. They complement
4711 the Scheme programming interface of Guix in a convenient way.
4712
4713 @menu
4714 * Invoking guix build:: Building packages from the command line.
4715 * Invoking guix edit:: Editing package definitions.
4716 * Invoking guix download:: Downloading a file and printing its hash.
4717 * Invoking guix hash:: Computing the cryptographic hash of a file.
4718 * Invoking guix import:: Importing package definitions.
4719 * Invoking guix refresh:: Updating package definitions.
4720 * Invoking guix lint:: Finding errors in package definitions.
4721 * Invoking guix size:: Profiling disk usage.
4722 * Invoking guix graph:: Visualizing the graph of packages.
4723 * Invoking guix environment:: Setting up development environments.
4724 * Invoking guix publish:: Sharing substitutes.
4725 * Invoking guix challenge:: Challenging substitute servers.
4726 * Invoking guix copy:: Copying to and from a remote store.
4727 * Invoking guix container:: Process isolation.
4728 @end menu
4729
4730 @node Invoking guix build
4731 @section Invoking @command{guix build}
4732
4733 @cindex package building
4734 @cindex @command{guix build}
4735 The @command{guix build} command builds packages or derivations and
4736 their dependencies, and prints the resulting store paths. Note that it
4737 does not modify the user's profile---this is the job of the
4738 @command{guix package} command (@pxref{Invoking guix package}). Thus,
4739 it is mainly useful for distribution developers.
4740
4741 The general syntax is:
4742
4743 @example
4744 guix build @var{options} @var{package-or-derivation}@dots{}
4745 @end example
4746
4747 As an example, the following command builds the latest versions of Emacs
4748 and of Guile, displays their build logs, and finally displays the
4749 resulting directories:
4750
4751 @example
4752 guix build emacs guile
4753 @end example
4754
4755 Similarly, the following command builds all the available packages:
4756
4757 @example
4758 guix build --quiet --keep-going \
4759 `guix package -A | cut -f1,2 --output-delimiter=@@`
4760 @end example
4761
4762 @var{package-or-derivation} may be either the name of a package found in
4763 the software distribution such as @code{coreutils} or
4764 @code{coreutils@@8.20}, or a derivation such as
4765 @file{/gnu/store/@dots{}-coreutils-8.19.drv}. In the former case, a
4766 package with the corresponding name (and optionally version) is searched
4767 for among the GNU distribution modules (@pxref{Package Modules}).
4768
4769 Alternatively, the @code{--expression} option may be used to specify a
4770 Scheme expression that evaluates to a package; this is useful when
4771 disambiguating among several same-named packages or package variants is
4772 needed.
4773
4774 There may be zero or more @var{options}. The available options are
4775 described in the subsections below.
4776
4777 @menu
4778 * Common Build Options:: Build options for most commands.
4779 * Package Transformation Options:: Creating variants of packages.
4780 * Additional Build Options:: Options specific to 'guix build'.
4781 @end menu
4782
4783 @node Common Build Options
4784 @subsection Common Build Options
4785
4786 A number of options that control the build process are common to
4787 @command{guix build} and other commands that can spawn builds, such as
4788 @command{guix package} or @command{guix archive}. These are the
4789 following:
4790
4791 @table @code
4792
4793 @item --load-path=@var{directory}
4794 @itemx -L @var{directory}
4795 Add @var{directory} to the front of the package module search path
4796 (@pxref{Package Modules}).
4797
4798 This allows users to define their own packages and make them visible to
4799 the command-line tools.
4800
4801 @item --keep-failed
4802 @itemx -K
4803 Keep the build tree of failed builds. Thus, if a build fails, its build
4804 tree is kept under @file{/tmp}, in a directory whose name is shown at
4805 the end of the build log. This is useful when debugging build issues.
4806
4807 @item --keep-going
4808 @itemx -k
4809 Keep going when some of the derivations fail to build; return only once
4810 all the builds have either completed or failed.
4811
4812 The default behavior is to stop as soon as one of the specified
4813 derivations has failed.
4814
4815 @item --dry-run
4816 @itemx -n
4817 Do not build the derivations.
4818
4819 @item --fallback
4820 When substituting a pre-built binary fails, fall back to building
4821 packages locally.
4822
4823 @item --substitute-urls=@var{urls}
4824 @anchor{client-substitute-urls}
4825 Consider @var{urls} the whitespace-separated list of substitute source
4826 URLs, overriding the default list of URLs of @command{guix-daemon}
4827 (@pxref{daemon-substitute-urls,, @command{guix-daemon} URLs}).
4828
4829 This means that substitutes may be downloaded from @var{urls}, provided
4830 they are signed by a key authorized by the system administrator
4831 (@pxref{Substitutes}).
4832
4833 When @var{urls} is the empty string, substitutes are effectively
4834 disabled.
4835
4836 @item --no-substitutes
4837 Do not use substitutes for build products. That is, always build things
4838 locally instead of allowing downloads of pre-built binaries
4839 (@pxref{Substitutes}).
4840
4841 @item --no-grafts
4842 Do not ``graft'' packages. In practice, this means that package updates
4843 available as grafts are not applied. @xref{Security Updates}, for more
4844 information on grafts.
4845
4846 @item --rounds=@var{n}
4847 Build each derivation @var{n} times in a row, and raise an error if
4848 consecutive build results are not bit-for-bit identical.
4849
4850 This is a useful way to detect non-deterministic builds processes.
4851 Non-deterministic build processes are a problem because they make it
4852 practically impossible for users to @emph{verify} whether third-party
4853 binaries are genuine. @xref{Invoking guix challenge}, for more.
4854
4855 Note that, currently, the differing build results are not kept around,
4856 so you will have to manually investigate in case of an error---e.g., by
4857 stashing one of the build results with @code{guix archive --export}
4858 (@pxref{Invoking guix archive}), then rebuilding, and finally comparing
4859 the two results.
4860
4861 @item --no-build-hook
4862 Do not attempt to offload builds @i{via} the ``build hook'' of the daemon
4863 (@pxref{Daemon Offload Setup}). That is, always build things locally
4864 instead of offloading builds to remote machines.
4865
4866 @item --max-silent-time=@var{seconds}
4867 When the build or substitution process remains silent for more than
4868 @var{seconds}, terminate it and report a build failure.
4869
4870 @item --timeout=@var{seconds}
4871 Likewise, when the build or substitution process lasts for more than
4872 @var{seconds}, terminate it and report a build failure.
4873
4874 By default there is no timeout. This behavior can be restored with
4875 @code{--timeout=0}.
4876
4877 @item --verbosity=@var{level}
4878 Use the given verbosity level. @var{level} must be an integer between 0
4879 and 5; higher means more verbose output. Setting a level of 4 or more
4880 may be helpful when debugging setup issues with the build daemon.
4881
4882 @item --cores=@var{n}
4883 @itemx -c @var{n}
4884 Allow the use of up to @var{n} CPU cores for the build. The special
4885 value @code{0} means to use as many CPU cores as available.
4886
4887 @item --max-jobs=@var{n}
4888 @itemx -M @var{n}
4889 Allow at most @var{n} build jobs in parallel. @xref{Invoking
4890 guix-daemon, @code{--max-jobs}}, for details about this option and the
4891 equivalent @command{guix-daemon} option.
4892
4893 @end table
4894
4895 Behind the scenes, @command{guix build} is essentially an interface to
4896 the @code{package-derivation} procedure of the @code{(guix packages)}
4897 module, and to the @code{build-derivations} procedure of the @code{(guix
4898 derivations)} module.
4899
4900 In addition to options explicitly passed on the command line,
4901 @command{guix build} and other @command{guix} commands that support
4902 building honor the @code{GUIX_BUILD_OPTIONS} environment variable.
4903
4904 @defvr {Environment Variable} GUIX_BUILD_OPTIONS
4905 Users can define this variable to a list of command line options that
4906 will automatically be used by @command{guix build} and other
4907 @command{guix} commands that can perform builds, as in the example
4908 below:
4909
4910 @example
4911 $ export GUIX_BUILD_OPTIONS="--no-substitutes -c 2 -L /foo/bar"
4912 @end example
4913
4914 These options are parsed independently, and the result is appended to
4915 the parsed command-line options.
4916 @end defvr
4917
4918
4919 @node Package Transformation Options
4920 @subsection Package Transformation Options
4921
4922 @cindex package variants
4923 Another set of command-line options supported by @command{guix build}
4924 and also @command{guix package} are @dfn{package transformation
4925 options}. These are options that make it possible to define @dfn{package
4926 variants}---for instance, packages built from different source code.
4927 This is a convenient way to create customized packages on the fly
4928 without having to type in the definitions of package variants
4929 (@pxref{Defining Packages}).
4930
4931 @table @code
4932
4933 @item --with-source=@var{source}
4934 Use @var{source} as the source of the corresponding package.
4935 @var{source} must be a file name or a URL, as for @command{guix
4936 download} (@pxref{Invoking guix download}).
4937
4938 The ``corresponding package'' is taken to be the one specified on the
4939 command line the name of which matches the base of @var{source}---e.g.,
4940 if @var{source} is @code{/src/guile-2.0.10.tar.gz}, the corresponding
4941 package is @code{guile}. Likewise, the version string is inferred from
4942 @var{source}; in the previous example, it is @code{2.0.10}.
4943
4944 This option allows users to try out versions of packages other than the
4945 one provided by the distribution. The example below downloads
4946 @file{ed-1.7.tar.gz} from a GNU mirror and uses that as the source for
4947 the @code{ed} package:
4948
4949 @example
4950 guix build ed --with-source=mirror://gnu/ed/ed-1.7.tar.gz
4951 @end example
4952
4953 As a developer, @code{--with-source} makes it easy to test release
4954 candidates:
4955
4956 @example
4957 guix build guile --with-source=../guile-2.0.9.219-e1bb7.tar.xz
4958 @end example
4959
4960 @dots{} or to build from a checkout in a pristine environment:
4961
4962 @example
4963 $ git clone git://git.sv.gnu.org/guix.git
4964 $ guix build guix --with-source=./guix
4965 @end example
4966
4967 @item --with-input=@var{package}=@var{replacement}
4968 Replace dependency on @var{package} by a dependency on
4969 @var{replacement}. @var{package} must be a package name, and
4970 @var{replacement} must be a package specification such as @code{guile}
4971 or @code{guile@@1.8}.
4972
4973 For instance, the following command builds Guix, but replaces its
4974 dependency on the current stable version of Guile with a dependency on
4975 the legacy version of Guile, @code{guile@@2.0}:
4976
4977 @example
4978 guix build --with-input=guile=guile@@2.0 guix
4979 @end example
4980
4981 This is a recursive, deep replacement. So in this example, both
4982 @code{guix} and its dependency @code{guile-json} (which also depends on
4983 @code{guile}) get rebuilt against @code{guile@@2.0}.
4984
4985 This is implemented using the @code{package-input-rewriting} Scheme
4986 procedure (@pxref{Defining Packages, @code{package-input-rewriting}}).
4987
4988 @item --with-graft=@var{package}=@var{replacement}
4989 This is similar to @code{--with-input} but with an important difference:
4990 instead of rebuilding the whole dependency chain, @var{replacement} is
4991 built and then @dfn{grafted} onto the binaries that were initially
4992 referring to @var{package}. @xref{Security Updates}, for more
4993 information on grafts.
4994
4995 For example, the command below grafts version 3.5.4 of GnuTLS onto Wget
4996 and all its dependencies, replacing references to the version of GnuTLS
4997 they currently refer to:
4998
4999 @example
5000 guix build --with-graft=gnutls=gnutls@@3.5.4 wget
5001 @end example
5002
5003 This has the advantage of being much faster than rebuilding everything.
5004 But there is a caveat: it works if and only if @var{package} and
5005 @var{replacement} are strictly compatible---for example, if they provide
5006 a library, the application binary interface (ABI) of those libraries
5007 must be compatible. If @var{replacement} is somehow incompatible with
5008 @var{package}, then the resulting package may be unusable. Use with
5009 care!
5010
5011 @end table
5012
5013 @node Additional Build Options
5014 @subsection Additional Build Options
5015
5016 The command-line options presented below are specific to @command{guix
5017 build}.
5018
5019 @table @code
5020
5021 @item --quiet
5022 @itemx -q
5023 Build quietly, without displaying the build log. Upon completion, the
5024 build log is kept in @file{/var} (or similar) and can always be
5025 retrieved using the @option{--log-file} option.
5026
5027 @item --file=@var{file}
5028 @itemx -f @var{file}
5029
5030 Build the package or derivation that the code within @var{file}
5031 evaluates to.
5032
5033 As an example, @var{file} might contain a package definition like this
5034 (@pxref{Defining Packages}):
5035
5036 @example
5037 @verbatiminclude package-hello.scm
5038 @end example
5039
5040 @item --expression=@var{expr}
5041 @itemx -e @var{expr}
5042 Build the package or derivation @var{expr} evaluates to.
5043
5044 For example, @var{expr} may be @code{(@@ (gnu packages guile)
5045 guile-1.8)}, which unambiguously designates this specific variant of
5046 version 1.8 of Guile.
5047
5048 Alternatively, @var{expr} may be a G-expression, in which case it is used
5049 as a build program passed to @code{gexp->derivation}
5050 (@pxref{G-Expressions}).
5051
5052 Lastly, @var{expr} may refer to a zero-argument monadic procedure
5053 (@pxref{The Store Monad}). The procedure must return a derivation as a
5054 monadic value, which is then passed through @code{run-with-store}.
5055
5056 @item --source
5057 @itemx -S
5058 Build the source derivations of the packages, rather than the packages
5059 themselves.
5060
5061 For instance, @code{guix build -S gcc} returns something like
5062 @file{/gnu/store/@dots{}-gcc-4.7.2.tar.bz2}, which is the GCC
5063 source tarball.
5064
5065 The returned source tarball is the result of applying any patches and
5066 code snippets specified in the package @code{origin} (@pxref{Defining
5067 Packages}).
5068
5069 @item --sources
5070 Fetch and return the source of @var{package-or-derivation} and all their
5071 dependencies, recursively. This is a handy way to obtain a local copy
5072 of all the source code needed to build @var{packages}, allowing you to
5073 eventually build them even without network access. It is an extension
5074 of the @code{--source} option and can accept one of the following
5075 optional argument values:
5076
5077 @table @code
5078 @item package
5079 This value causes the @code{--sources} option to behave in the same way
5080 as the @code{--source} option.
5081
5082 @item all
5083 Build the source derivations of all packages, including any source that
5084 might be listed as @code{inputs}. This is the default value.
5085
5086 @example
5087 $ guix build --sources tzdata
5088 The following derivations will be built:
5089 /gnu/store/@dots{}-tzdata2015b.tar.gz.drv
5090 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
5091 @end example
5092
5093 @item transitive
5094 Build the source derivations of all packages, as well of all transitive
5095 inputs to the packages. This can be used e.g. to
5096 prefetch package source for later offline building.
5097
5098 @example
5099 $ guix build --sources=transitive tzdata
5100 The following derivations will be built:
5101 /gnu/store/@dots{}-tzcode2015b.tar.gz.drv
5102 /gnu/store/@dots{}-findutils-4.4.2.tar.xz.drv
5103 /gnu/store/@dots{}-grep-2.21.tar.xz.drv
5104 /gnu/store/@dots{}-coreutils-8.23.tar.xz.drv
5105 /gnu/store/@dots{}-make-4.1.tar.xz.drv
5106 /gnu/store/@dots{}-bash-4.3.tar.xz.drv
5107 @dots{}
5108 @end example
5109
5110 @end table
5111
5112 @item --system=@var{system}
5113 @itemx -s @var{system}
5114 Attempt to build for @var{system}---e.g., @code{i686-linux}---instead of
5115 the system type of the build host.
5116
5117 An example use of this is on Linux-based systems, which can emulate
5118 different personalities. For instance, passing
5119 @code{--system=i686-linux} on an @code{x86_64-linux} system allows users
5120 to build packages in a complete 32-bit environment.
5121
5122 @item --target=@var{triplet}
5123 @cindex cross-compilation
5124 Cross-build for @var{triplet}, which must be a valid GNU triplet, such
5125 as @code{"mips64el-linux-gnu"} (@pxref{Specifying target triplets, GNU
5126 configuration triplets,, autoconf, Autoconf}).
5127
5128 @anchor{build-check}
5129 @item --check
5130 @cindex determinism, checking
5131 @cindex reproducibility, checking
5132 Rebuild @var{package-or-derivation}, which are already available in the
5133 store, and raise an error if the build results are not bit-for-bit
5134 identical.
5135
5136 This mechanism allows you to check whether previously installed
5137 substitutes are genuine (@pxref{Substitutes}), or whether the build result
5138 of a package is deterministic. @xref{Invoking guix challenge}, for more
5139 background information and tools.
5140
5141 When used in conjunction with @option{--keep-failed}, the differing
5142 output is kept in the store, under @file{/gnu/store/@dots{}-check}.
5143 This makes it easy to look for differences between the two results.
5144
5145 @item --repair
5146 @cindex repairing store items
5147 @cindex corruption, recovering from
5148 Attempt to repair the specified store items, if they are corrupt, by
5149 re-downloading or rebuilding them.
5150
5151 This operation is not atomic and thus restricted to @code{root}.
5152
5153 @item --derivations
5154 @itemx -d
5155 Return the derivation paths, not the output paths, of the given
5156 packages.
5157
5158 @item --root=@var{file}
5159 @itemx -r @var{file}
5160 Make @var{file} a symlink to the result, and register it as a garbage
5161 collector root.
5162
5163 @item --log-file
5164 Return the build log file names or URLs for the given
5165 @var{package-or-derivation}, or raise an error if build logs are
5166 missing.
5167
5168 This works regardless of how packages or derivations are specified. For
5169 instance, the following invocations are equivalent:
5170
5171 @example
5172 guix build --log-file `guix build -d guile`
5173 guix build --log-file `guix build guile`
5174 guix build --log-file guile
5175 guix build --log-file -e '(@@ (gnu packages guile) guile-2.0)'
5176 @end example
5177
5178 If a log is unavailable locally, and unless @code{--no-substitutes} is
5179 passed, the command looks for a corresponding log on one of the
5180 substitute servers (as specified with @code{--substitute-urls}.)
5181
5182 So for instance, imagine you want to see the build log of GDB on MIPS,
5183 but you are actually on an @code{x86_64} machine:
5184
5185 @example
5186 $ guix build --log-file gdb -s mips64el-linux
5187 https://hydra.gnu.org/log/@dots{}-gdb-7.10
5188 @end example
5189
5190 You can freely access a huge library of build logs!
5191 @end table
5192
5193
5194 @node Invoking guix edit
5195 @section Invoking @command{guix edit}
5196
5197 @cindex @command{guix edit}
5198 @cindex package definition, editing
5199 So many packages, so many source files! The @command{guix edit} command
5200 facilitates the life of users and packagers by pointing their editor at
5201 the source file containing the definition of the specified packages.
5202 For instance:
5203
5204 @example
5205 guix edit gcc@@4.9 vim
5206 @end example
5207
5208 @noindent
5209 launches the program specified in the @code{VISUAL} or in the
5210 @code{EDITOR} environment variable to view the recipe of GCC@tie{}4.9.3
5211 and that of Vim.
5212
5213 If you are using a Guix Git checkout (@pxref{Building from Git}), or
5214 have created your own packages on @code{GUIX_PACKAGE_PATH}
5215 (@pxref{Defining Packages}), you will be able to edit the package
5216 recipes. Otherwise, you will be able to examine the read-only recipes
5217 for packages currently in the store.
5218
5219
5220 @node Invoking guix download
5221 @section Invoking @command{guix download}
5222
5223 @cindex @command{guix download}
5224 @cindex downloading package sources
5225 When writing a package definition, developers typically need to download
5226 a source tarball, compute its SHA256 hash, and write that
5227 hash in the package definition (@pxref{Defining Packages}). The
5228 @command{guix download} tool helps with this task: it downloads a file
5229 from the given URI, adds it to the store, and prints both its file name
5230 in the store and its SHA256 hash.
5231
5232 The fact that the downloaded file is added to the store saves bandwidth:
5233 when the developer eventually tries to build the newly defined package
5234 with @command{guix build}, the source tarball will not have to be
5235 downloaded again because it is already in the store. It is also a
5236 convenient way to temporarily stash files, which may be deleted
5237 eventually (@pxref{Invoking guix gc}).
5238
5239 The @command{guix download} command supports the same URIs as used in
5240 package definitions. In particular, it supports @code{mirror://} URIs.
5241 @code{https} URIs (HTTP over TLS) are supported @emph{provided} the
5242 Guile bindings for GnuTLS are available in the user's environment; when
5243 they are not available, an error is raised. @xref{Guile Preparations,
5244 how to install the GnuTLS bindings for Guile,, gnutls-guile,
5245 GnuTLS-Guile}, for more information.
5246
5247 @command{guix download} verifies HTTPS server certificates by loading
5248 the certificates of X.509 authorities from the directory pointed to by
5249 the @code{SSL_CERT_DIR} environment variable (@pxref{X.509
5250 Certificates}), unless @option{--no-check-certificate} is used.
5251
5252 The following options are available:
5253
5254 @table @code
5255 @item --format=@var{fmt}
5256 @itemx -f @var{fmt}
5257 Write the hash in the format specified by @var{fmt}. For more
5258 information on the valid values for @var{fmt}, @pxref{Invoking guix hash}.
5259
5260 @item --no-check-certificate
5261 Do not validate the X.509 certificates of HTTPS servers.
5262
5263 When using this option, you have @emph{absolutely no guarantee} that you
5264 are communicating with the authentic server responsible for the given
5265 URL, which makes you vulnerable to ``man-in-the-middle'' attacks.
5266
5267 @item --output=@var{file}
5268 @itemx -o @var{file}
5269 Save the downloaded file to @var{file} instead of adding it to the
5270 store.
5271 @end table
5272
5273 @node Invoking guix hash
5274 @section Invoking @command{guix hash}
5275
5276 @cindex @command{guix hash}
5277 The @command{guix hash} command computes the SHA256 hash of a file.
5278 It is primarily a convenience tool for anyone contributing to the
5279 distribution: it computes the cryptographic hash of a file, which can be
5280 used in the definition of a package (@pxref{Defining Packages}).
5281
5282 The general syntax is:
5283
5284 @example
5285 guix hash @var{option} @var{file}
5286 @end example
5287
5288 When @var{file} is @code{-} (a hyphen), @command{guix hash} computes the
5289 hash of data read from standard input. @command{guix hash} has the
5290 following options:
5291
5292 @table @code
5293
5294 @item --format=@var{fmt}
5295 @itemx -f @var{fmt}
5296 Write the hash in the format specified by @var{fmt}.
5297
5298 Supported formats: @code{nix-base32}, @code{base32}, @code{base16}
5299 (@code{hex} and @code{hexadecimal} can be used as well).
5300
5301 If the @option{--format} option is not specified, @command{guix hash}
5302 will output the hash in @code{nix-base32}. This representation is used
5303 in the definitions of packages.
5304
5305 @item --recursive
5306 @itemx -r
5307 Compute the hash on @var{file} recursively.
5308
5309 In this case, the hash is computed on an archive containing @var{file},
5310 including its children if it is a directory. Some of the metadata of
5311 @var{file} is part of the archive; for instance, when @var{file} is a
5312 regular file, the hash is different depending on whether @var{file} is
5313 executable or not. Metadata such as time stamps has no impact on the
5314 hash (@pxref{Invoking guix archive}).
5315 @c FIXME: Replace xref above with xref to an ``Archive'' section when
5316 @c it exists.
5317
5318 @item --exclude-vcs
5319 @itemx -x
5320 When combined with @option{--recursive}, exclude version control system
5321 directories (@file{.bzr}, @file{.git}, @file{.hg}, etc.)
5322
5323 @vindex git-fetch
5324 As an example, here is how you would compute the hash of a Git checkout,
5325 which is useful when using the @code{git-fetch} method (@pxref{origin
5326 Reference}):
5327
5328 @example
5329 $ git clone http://example.org/foo.git
5330 $ cd foo
5331 $ guix hash -rx .
5332 @end example
5333 @end table
5334
5335 @node Invoking guix import
5336 @section Invoking @command{guix import}
5337
5338 @cindex importing packages
5339 @cindex package import
5340 @cindex package conversion
5341 @cindex Invoking @command{guix import}
5342 The @command{guix import} command is useful for people who would like to
5343 add a package to the distribution with as little work as
5344 possible---a legitimate demand. The command knows of a few
5345 repositories from which it can ``import'' package metadata. The result
5346 is a package definition, or a template thereof, in the format we know
5347 (@pxref{Defining Packages}).
5348
5349 The general syntax is:
5350
5351 @example
5352 guix import @var{importer} @var{options}@dots{}
5353 @end example
5354
5355 @var{importer} specifies the source from which to import package
5356 metadata, and @var{options} specifies a package identifier and other
5357 options specific to @var{importer}. Currently, the available
5358 ``importers'' are:
5359
5360 @table @code
5361 @item gnu
5362 Import metadata for the given GNU package. This provides a template
5363 for the latest version of that GNU package, including the hash of its
5364 source tarball, and its canonical synopsis and description.
5365
5366 Additional information such as the package dependencies and its
5367 license needs to be figured out manually.
5368
5369 For example, the following command returns a package definition for
5370 GNU@tie{}Hello:
5371
5372 @example
5373 guix import gnu hello
5374 @end example
5375
5376 Specific command-line options are:
5377
5378 @table @code
5379 @item --key-download=@var{policy}
5380 As for @code{guix refresh}, specify the policy to handle missing OpenPGP
5381 keys when verifying the package signature. @xref{Invoking guix
5382 refresh, @code{--key-download}}.
5383 @end table
5384
5385 @item pypi
5386 @cindex pypi
5387 Import metadata from the @uref{https://pypi.python.org/, Python Package
5388 Index}@footnote{This functionality requires Guile-JSON to be installed.
5389 @xref{Requirements}.}. Information is taken from the JSON-formatted
5390 description available at @code{pypi.python.org} and usually includes all
5391 the relevant information, including package dependencies. For maximum
5392 efficiency, it is recommended to install the @command{unzip} utility, so
5393 that the importer can unzip Python wheels and gather data from them.
5394
5395 The command below imports metadata for the @code{itsdangerous} Python
5396 package:
5397
5398 @example
5399 guix import pypi itsdangerous
5400 @end example
5401
5402 @item gem
5403 @cindex gem
5404 Import metadata from @uref{https://rubygems.org/,
5405 RubyGems}@footnote{This functionality requires Guile-JSON to be
5406 installed. @xref{Requirements}.}. Information is taken from the
5407 JSON-formatted description available at @code{rubygems.org} and includes
5408 most relevant information, including runtime dependencies. There are
5409 some caveats, however. The metadata doesn't distinguish between
5410 synopses and descriptions, so the same string is used for both fields.
5411 Additionally, the details of non-Ruby dependencies required to build
5412 native extensions is unavailable and left as an exercise to the
5413 packager.
5414
5415 The command below imports metadata for the @code{rails} Ruby package:
5416
5417 @example
5418 guix import gem rails
5419 @end example
5420
5421 @item cpan
5422 @cindex CPAN
5423 Import metadata from @uref{https://www.metacpan.org/, MetaCPAN}@footnote{This
5424 functionality requires Guile-JSON to be installed.
5425 @xref{Requirements}.}.
5426 Information is taken from the JSON-formatted metadata provided through
5427 @uref{https://api.metacpan.org/, MetaCPAN's API} and includes most
5428 relevant information, such as module dependencies. License information
5429 should be checked closely. If Perl is available in the store, then the
5430 @code{corelist} utility will be used to filter core modules out of the
5431 list of dependencies.
5432
5433 The command command below imports metadata for the @code{Acme::Boolean}
5434 Perl module:
5435
5436 @example
5437 guix import cpan Acme::Boolean
5438 @end example
5439
5440 @item cran
5441 @cindex CRAN
5442 @cindex Bioconductor
5443 Import metadata from @uref{http://cran.r-project.org/, CRAN}, the
5444 central repository for the @uref{http://r-project.org, GNU@tie{}R
5445 statistical and graphical environment}.
5446
5447 Information is extracted from the @code{DESCRIPTION} file of the package.
5448
5449 The command command below imports metadata for the @code{Cairo}
5450 R package:
5451
5452 @example
5453 guix import cran Cairo
5454 @end example
5455
5456 When @code{--recursive} is added, the importer will traverse the
5457 dependency graph of the given upstream package recursively and generate
5458 package expressions for all those packages that are not yet in Guix.
5459
5460 When @code{--archive=bioconductor} is added, metadata is imported from
5461 @uref{http://www.bioconductor.org/, Bioconductor}, a repository of R
5462 packages for for the analysis and comprehension of high-throughput
5463 genomic data in bioinformatics.
5464
5465 Information is extracted from the @code{DESCRIPTION} file of a package
5466 published on the web interface of the Bioconductor SVN repository.
5467
5468 The command below imports metadata for the @code{GenomicRanges}
5469 R package:
5470
5471 @example
5472 guix import cran --archive=bioconductor GenomicRanges
5473 @end example
5474
5475 @item nix
5476 Import metadata from a local copy of the source of the
5477 @uref{http://nixos.org/nixpkgs/, Nixpkgs distribution}@footnote{This
5478 relies on the @command{nix-instantiate} command of
5479 @uref{http://nixos.org/nix/, Nix}.}. Package definitions in Nixpkgs are
5480 typically written in a mixture of Nix-language and Bash code. This
5481 command only imports the high-level package structure that is written in
5482 the Nix language. It normally includes all the basic fields of a
5483 package definition.
5484
5485 When importing a GNU package, the synopsis and descriptions are replaced
5486 by their canonical upstream variant.
5487
5488 Usually, you will first need to do:
5489
5490 @example
5491 export NIX_REMOTE=daemon
5492 @end example
5493
5494 @noindent
5495 so that @command{nix-instantiate} does not try to open the Nix database.
5496
5497 As an example, the command below imports the package definition of
5498 LibreOffice (more precisely, it imports the definition of the package
5499 bound to the @code{libreoffice} top-level attribute):
5500
5501 @example
5502 guix import nix ~/path/to/nixpkgs libreoffice
5503 @end example
5504
5505 @item hackage
5506 @cindex hackage
5507 Import metadata from the Haskell community's central package archive
5508 @uref{https://hackage.haskell.org/, Hackage}. Information is taken from
5509 Cabal files and includes all the relevant information, including package
5510 dependencies.
5511
5512 Specific command-line options are:
5513
5514 @table @code
5515 @item --stdin
5516 @itemx -s
5517 Read a Cabal file from standard input.
5518 @item --no-test-dependencies
5519 @itemx -t
5520 Do not include dependencies required only by the test suites.
5521 @item --cabal-environment=@var{alist}
5522 @itemx -e @var{alist}
5523 @var{alist} is a Scheme alist defining the environment in which the
5524 Cabal conditionals are evaluated. The accepted keys are: @code{os},
5525 @code{arch}, @code{impl} and a string representing the name of a flag.
5526 The value associated with a flag has to be either the symbol
5527 @code{true} or @code{false}. The value associated with other keys
5528 has to conform to the Cabal file format definition. The default value
5529 associated with the keys @code{os}, @code{arch} and @code{impl} is
5530 @samp{linux}, @samp{x86_64} and @samp{ghc}, respectively.
5531 @end table
5532
5533 The command below imports metadata for the latest version of the
5534 @code{HTTP} Haskell package without including test dependencies and
5535 specifying the value of the flag @samp{network-uri} as @code{false}:
5536
5537 @example
5538 guix import hackage -t -e "'((\"network-uri\" . false))" HTTP
5539 @end example
5540
5541 A specific package version may optionally be specified by following the
5542 package name by an at-sign and a version number as in the following example:
5543
5544 @example
5545 guix import hackage mtl@@2.1.3.1
5546 @end example
5547
5548 @item stackage
5549 @cindex stackage
5550 The @code{stackage} importer is a wrapper around the @code{hackage} one.
5551 It takes a package name, looks up the package version included in a
5552 long-term support (LTS) @uref{https://www.stackage.org, Stackage}
5553 release and uses the @code{hackage} importer to retrieve its metadata.
5554 Note that it is up to you to select an LTS release compatible with the
5555 GHC compiler used by Guix.
5556
5557 Specific command-line options are:
5558
5559 @table @code
5560 @item --no-test-dependencies
5561 @itemx -t
5562 Do not include dependencies required only by the test suites.
5563 @item --lts-version=@var{version}
5564 @itemx -r @var{version}
5565 @var{version} is the desired LTS release version. If omitted the latest
5566 release is used.
5567 @end table
5568
5569 The command below imports metadata for the @code{HTTP} Haskell package
5570 included in the LTS Stackage release version 7.18:
5571
5572 @example
5573 guix import stackage --lts-version=7.18 HTTP
5574 @end example
5575
5576 @item elpa
5577 @cindex elpa
5578 Import metadata from an Emacs Lisp Package Archive (ELPA) package
5579 repository (@pxref{Packages,,, emacs, The GNU Emacs Manual}).
5580
5581 Specific command-line options are:
5582
5583 @table @code
5584 @item --archive=@var{repo}
5585 @itemx -a @var{repo}
5586 @var{repo} identifies the archive repository from which to retrieve the
5587 information. Currently the supported repositories and their identifiers
5588 are:
5589 @itemize -
5590 @item
5591 @uref{http://elpa.gnu.org/packages, GNU}, selected by the @code{gnu}
5592 identifier. This is the default.
5593
5594 Packages from @code{elpa.gnu.org} are signed with one of the keys
5595 contained in the GnuPG keyring at
5596 @file{share/emacs/25.1/etc/package-keyring.gpg} (or similar) in the
5597 @code{emacs} package (@pxref{Package Installation, ELPA package
5598 signatures,, emacs, The GNU Emacs Manual}).
5599
5600 @item
5601 @uref{http://stable.melpa.org/packages, MELPA-Stable}, selected by the
5602 @code{melpa-stable} identifier.
5603
5604 @item
5605 @uref{http://melpa.org/packages, MELPA}, selected by the @code{melpa}
5606 identifier.
5607 @end itemize
5608 @end table
5609
5610 @item crate
5611 @cindex crate
5612 Import metadata from the crates.io Rust package repository
5613 @uref{https://crates.io, crates.io}.
5614 @end table
5615
5616 The structure of the @command{guix import} code is modular. It would be
5617 useful to have more importers for other package formats, and your help
5618 is welcome here (@pxref{Contributing}).
5619
5620 @node Invoking guix refresh
5621 @section Invoking @command{guix refresh}
5622
5623 @cindex @command {guix refresh}
5624 The primary audience of the @command{guix refresh} command is developers
5625 of the GNU software distribution. By default, it reports any packages
5626 provided by the distribution that are outdated compared to the latest
5627 upstream version, like this:
5628
5629 @example
5630 $ guix refresh
5631 gnu/packages/gettext.scm:29:13: gettext would be upgraded from 0.18.1.1 to 0.18.2.1
5632 gnu/packages/glib.scm:77:12: glib would be upgraded from 2.34.3 to 2.37.0
5633 @end example
5634
5635 Alternately, one can specify packages to consider, in which case a
5636 warning is emitted for packages that lack an updater:
5637
5638 @example
5639 $ guix refresh coreutils guile guile-ssh
5640 gnu/packages/ssh.scm:205:2: warning: no updater for guile-ssh
5641 gnu/packages/guile.scm:136:12: guile would be upgraded from 2.0.12 to 2.0.13
5642 @end example
5643
5644 @command{guix refresh} browses the upstream repository of each package and determines
5645 the highest version number of the releases therein. The command
5646 knows how to update specific types of packages: GNU packages, ELPA
5647 packages, etc.---see the documentation for @option{--type} below. There
5648 are many packages, though, for which it lacks a method to determine
5649 whether a new upstream release is available. However, the mechanism is
5650 extensible, so feel free to get in touch with us to add a new method!
5651
5652 When passed @code{--update}, it modifies distribution source files to
5653 update the version numbers and source tarball hashes of those package
5654 recipes (@pxref{Defining Packages}). This is achieved by downloading
5655 each package's latest source tarball and its associated OpenPGP
5656 signature, authenticating the downloaded tarball against its signature
5657 using @command{gpg}, and finally computing its hash. When the public
5658 key used to sign the tarball is missing from the user's keyring, an
5659 attempt is made to automatically retrieve it from a public key server;
5660 when this is successful, the key is added to the user's keyring; otherwise,
5661 @command{guix refresh} reports an error.
5662
5663 The following options are supported:
5664
5665 @table @code
5666
5667 @item --expression=@var{expr}
5668 @itemx -e @var{expr}
5669 Consider the package @var{expr} evaluates to.
5670
5671 This is useful to precisely refer to a package, as in this example:
5672
5673 @example
5674 guix refresh -l -e '(@@@@ (gnu packages commencement) glibc-final)'
5675 @end example
5676
5677 This command lists the dependents of the ``final'' libc (essentially all
5678 the packages.)
5679
5680 @item --update
5681 @itemx -u
5682 Update distribution source files (package recipes) in place. This is
5683 usually run from a checkout of the Guix source tree (@pxref{Running
5684 Guix Before It Is Installed}):
5685
5686 @example
5687 $ ./pre-inst-env guix refresh -s non-core -u
5688 @end example
5689
5690 @xref{Defining Packages}, for more information on package definitions.
5691
5692 @item --select=[@var{subset}]
5693 @itemx -s @var{subset}
5694 Select all the packages in @var{subset}, one of @code{core} or
5695 @code{non-core}.
5696
5697 The @code{core} subset refers to all the packages at the core of the
5698 distribution---i.e., packages that are used to build ``everything
5699 else''. This includes GCC, libc, Binutils, Bash, etc. Usually,
5700 changing one of these packages in the distribution entails a rebuild of
5701 all the others. Thus, such updates are an inconvenience to users in
5702 terms of build time or bandwidth used to achieve the upgrade.
5703
5704 The @code{non-core} subset refers to the remaining packages. It is
5705 typically useful in cases where an update of the core packages would be
5706 inconvenient.
5707
5708 @item --type=@var{updater}
5709 @itemx -t @var{updater}
5710 Select only packages handled by @var{updater} (may be a comma-separated
5711 list of updaters). Currently, @var{updater} may be one of:
5712
5713 @table @code
5714 @item gnu
5715 the updater for GNU packages;
5716 @item gnome
5717 the updater for GNOME packages;
5718 @item kde
5719 the updater for KDE packages;
5720 @item xorg
5721 the updater for X.org packages;
5722 @item kernel.org
5723 the updater for packages hosted on kernel.org;
5724 @item elpa
5725 the updater for @uref{http://elpa.gnu.org/, ELPA} packages;
5726 @item cran
5727 the updater for @uref{http://cran.r-project.org/, CRAN} packages;
5728 @item bioconductor
5729 the updater for @uref{http://www.bioconductor.org/, Bioconductor} R packages;
5730 @item cpan
5731 the updater for @uref{http://www.cpan.org/, CPAN} packages;
5732 @item pypi
5733 the updater for @uref{https://pypi.python.org, PyPI} packages.
5734 @item gem
5735 the updater for @uref{https://rubygems.org, RubyGems} packages.
5736 @item github
5737 the updater for @uref{https://github.com, GitHub} packages.
5738 @item hackage
5739 the updater for @uref{https://hackage.haskell.org, Hackage} packages.
5740 @item stackage
5741 the updater for @uref{https://www.stackage.org, Stackage} packages.
5742 @item crate
5743 the updater for @uref{https://crates.io, Crates} packages.
5744 @end table
5745
5746 For instance, the following command only checks for updates of Emacs
5747 packages hosted at @code{elpa.gnu.org} and for updates of CRAN packages:
5748
5749 @example
5750 $ guix refresh --type=elpa,cran
5751 gnu/packages/statistics.scm:819:13: r-testthat would be upgraded from 0.10.0 to 0.11.0
5752 gnu/packages/emacs.scm:856:13: emacs-auctex would be upgraded from 11.88.6 to 11.88.9
5753 @end example
5754
5755 @end table
5756
5757 In addition, @command{guix refresh} can be passed one or more package
5758 names, as in this example:
5759
5760 @example
5761 $ ./pre-inst-env guix refresh -u emacs idutils gcc@@4.8
5762 @end example
5763
5764 @noindent
5765 The command above specifically updates the @code{emacs} and
5766 @code{idutils} packages. The @code{--select} option would have no
5767 effect in this case.
5768
5769 When considering whether to upgrade a package, it is sometimes
5770 convenient to know which packages would be affected by the upgrade and
5771 should be checked for compatibility. For this the following option may
5772 be used when passing @command{guix refresh} one or more package names:
5773
5774 @table @code
5775
5776 @item --list-updaters
5777 @itemx -L
5778 List available updaters and exit (see @option{--type} above.)
5779
5780 For each updater, display the fraction of packages it covers; at the
5781 end, display the fraction of packages covered by all these updaters.
5782
5783 @item --list-dependent
5784 @itemx -l
5785 List top-level dependent packages that would need to be rebuilt as a
5786 result of upgrading one or more packages.
5787
5788 @xref{Invoking guix graph, the @code{reverse-package} type of
5789 @command{guix graph}}, for information on how to visualize the list of
5790 dependents of a package.
5791
5792 @end table
5793
5794 Be aware that the @code{--list-dependent} option only
5795 @emph{approximates} the rebuilds that would be required as a result of
5796 an upgrade. More rebuilds might be required under some circumstances.
5797
5798 @example
5799 $ guix refresh --list-dependent flex
5800 Building the following 120 packages would ensure 213 dependent packages are rebuilt:
5801 hop-2.4.0 geiser-0.4 notmuch-0.18 mu-0.9.9.5 cflow-1.4 idutils-4.6 @dots{}
5802 @end example
5803
5804 The command above lists a set of packages that could be built to check
5805 for compatibility with an upgraded @code{flex} package.
5806
5807 The following options can be used to customize GnuPG operation:
5808
5809 @table @code
5810
5811 @item --gpg=@var{command}
5812 Use @var{command} as the GnuPG 2.x command. @var{command} is searched
5813 for in @code{$PATH}.
5814
5815 @item --key-download=@var{policy}
5816 Handle missing OpenPGP keys according to @var{policy}, which may be one
5817 of:
5818
5819 @table @code
5820 @item always
5821 Always download missing OpenPGP keys from the key server, and add them
5822 to the user's GnuPG keyring.
5823
5824 @item never
5825 Never try to download missing OpenPGP keys. Instead just bail out.
5826
5827 @item interactive
5828 When a package signed with an unknown OpenPGP key is encountered, ask
5829 the user whether to download it or not. This is the default behavior.
5830 @end table
5831
5832 @item --key-server=@var{host}
5833 Use @var{host} as the OpenPGP key server when importing a public key.
5834
5835 @end table
5836
5837 The @code{github} updater uses the
5838 @uref{https://developer.github.com/v3/, GitHub API} to query for new
5839 releases. When used repeatedly e.g. when refreshing all packages,
5840 GitHub will eventually refuse to answer any further API requests. By
5841 default 60 API requests per hour are allowed, and a full refresh on all
5842 GitHub packages in Guix requires more than this. Authentication with
5843 GitHub through the use of an API token alleviates these limits. To use
5844 an API token, set the environment variable @code{GUIX_GITHUB_TOKEN} to a
5845 token procured from @uref{https://github.com/settings/tokens} or
5846 otherwise.
5847
5848
5849 @node Invoking guix lint
5850 @section Invoking @command{guix lint}
5851
5852 @cindex @command{guix lint}
5853 @cindex package, checking for errors
5854 The @command{guix lint} command is meant to help package developers avoid
5855 common errors and use a consistent style. It runs a number of checks on
5856 a given set of packages in order to find common mistakes in their
5857 definitions. Available @dfn{checkers} include (see
5858 @code{--list-checkers} for a complete list):
5859
5860 @table @code
5861 @item synopsis
5862 @itemx description
5863 Validate certain typographical and stylistic rules about package
5864 descriptions and synopses.
5865
5866 @item inputs-should-be-native
5867 Identify inputs that should most likely be native inputs.
5868
5869 @item source
5870 @itemx home-page
5871 @itemx mirror-url
5872 @itemx source-file-name
5873 Probe @code{home-page} and @code{source} URLs and report those that are
5874 invalid. Suggest a @code{mirror://} URL when applicable. Check that
5875 the source file name is meaningful, e.g. is not
5876 just a version number or ``git-checkout'', without a declared
5877 @code{file-name} (@pxref{origin Reference}).
5878
5879 @item cve
5880 @cindex security vulnerabilities
5881 @cindex CVE, Common Vulnerabilities and Exposures
5882 Report known vulnerabilities found in the Common Vulnerabilities and
5883 Exposures (CVE) databases of the current and past year
5884 @uref{https://nvd.nist.gov/download.cfm#CVE_FEED, published by the US
5885 NIST}.
5886
5887 To view information about a particular vulnerability, visit pages such as:
5888
5889 @itemize
5890 @item
5891 @indicateurl{https://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-YYYY-ABCD}
5892 @item
5893 @indicateurl{https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-YYYY-ABCD}
5894 @end itemize
5895
5896 @noindent
5897 where @code{CVE-YYYY-ABCD} is the CVE identifier---e.g.,
5898 @code{CVE-2015-7554}.
5899
5900 Package developers can specify in package recipes the
5901 @uref{https://nvd.nist.gov/cpe.cfm,Common Platform Enumeration (CPE)}
5902 name and version of the package when they differ from the name that Guix
5903 uses, as in this example:
5904
5905 @example
5906 (package
5907 (name "grub")
5908 ;; @dots{}
5909 ;; CPE calls this package "grub2".
5910 (properties '((cpe-name . "grub2"))))
5911 @end example
5912
5913 @item formatting
5914 Warn about obvious source code formatting issues: trailing white space,
5915 use of tabulations, etc.
5916 @end table
5917
5918 The general syntax is:
5919
5920 @example
5921 guix lint @var{options} @var{package}@dots{}
5922 @end example
5923
5924 If no package is given on the command line, then all packages are checked.
5925 The @var{options} may be zero or more of the following:
5926
5927 @table @code
5928 @item --list-checkers
5929 @itemx -l
5930 List and describe all the available checkers that will be run on packages
5931 and exit.
5932
5933 @item --checkers
5934 @itemx -c
5935 Only enable the checkers specified in a comma-separated list using the
5936 names returned by @code{--list-checkers}.
5937
5938 @end table
5939
5940 @node Invoking guix size
5941 @section Invoking @command{guix size}
5942
5943 @cindex size
5944 @cindex package size
5945 @cindex closure
5946 @cindex @command{guix size}
5947 The @command{guix size} command helps package developers profile the
5948 disk usage of packages. It is easy to overlook the impact of an
5949 additional dependency added to a package, or the impact of using a
5950 single output for a package that could easily be split (@pxref{Packages
5951 with Multiple Outputs}). Such are the typical issues that
5952 @command{guix size} can highlight.
5953
5954 The command can be passed a package specification such as @code{gcc@@4.8}
5955 or @code{guile:debug}, or a file name in the store. Consider this
5956 example:
5957
5958 @example
5959 $ guix size coreutils
5960 store item total self
5961 /gnu/store/@dots{}-coreutils-8.23 70.0 13.9 19.8%
5962 /gnu/store/@dots{}-gmp-6.0.0a 55.3 2.5 3.6%
5963 /gnu/store/@dots{}-acl-2.2.52 53.7 0.5 0.7%
5964 /gnu/store/@dots{}-attr-2.4.46 53.2 0.3 0.5%
5965 /gnu/store/@dots{}-gcc-4.8.4-lib 52.9 15.7 22.4%
5966 /gnu/store/@dots{}-glibc-2.21 37.2 37.2 53.1%
5967 @end example
5968
5969 @cindex closure
5970 The store items listed here constitute the @dfn{transitive closure} of
5971 Coreutils---i.e., Coreutils and all its dependencies, recursively---as
5972 would be returned by:
5973
5974 @example
5975 $ guix gc -R /gnu/store/@dots{}-coreutils-8.23
5976 @end example
5977
5978 Here the output shows three columns next to store items. The first column,
5979 labeled ``total'', shows the size in mebibytes (MiB) of the closure of
5980 the store item---that is, its own size plus the size of all its
5981 dependencies. The next column, labeled ``self'', shows the size of the
5982 item itself. The last column shows the ratio of the size of the item
5983 itself to the space occupied by all the items listed here.
5984
5985 In this example, we see that the closure of Coreutils weighs in at
5986 70@tie{}MiB, half of which is taken by libc. (That libc represents a
5987 large fraction of the closure is not a problem @i{per se} because it is
5988 always available on the system anyway.)
5989
5990 When the package passed to @command{guix size} is available in the
5991 store, @command{guix size} queries the daemon to determine its
5992 dependencies, and measures its size in the store, similar to @command{du
5993 -ms --apparent-size} (@pxref{du invocation,,, coreutils, GNU
5994 Coreutils}).
5995
5996 When the given package is @emph{not} in the store, @command{guix size}
5997 reports information based on the available substitutes
5998 (@pxref{Substitutes}). This makes it possible it to profile disk usage of
5999 store items that are not even on disk, only available remotely.
6000
6001 You can also specify several package names:
6002
6003 @example
6004 $ guix size coreutils grep sed bash
6005 store item total self
6006 /gnu/store/@dots{}-coreutils-8.24 77.8 13.8 13.4%
6007 /gnu/store/@dots{}-grep-2.22 73.1 0.8 0.8%
6008 /gnu/store/@dots{}-bash-4.3.42 72.3 4.7 4.6%
6009 /gnu/store/@dots{}-readline-6.3 67.6 1.2 1.2%
6010 @dots{}
6011 total: 102.3 MiB
6012 @end example
6013
6014 @noindent
6015 In this example we see that the combination of the four packages takes
6016 102.3@tie{}MiB in total, which is much less than the sum of each closure
6017 since they have a lot of dependencies in common.
6018
6019 The available options are:
6020
6021 @table @option
6022
6023 @item --substitute-urls=@var{urls}
6024 Use substitute information from @var{urls}.
6025 @xref{client-substitute-urls, the same option for @code{guix build}}.
6026
6027 @item --map-file=@var{file}
6028 Write a graphical map of disk usage in PNG format to @var{file}.
6029
6030 For the example above, the map looks like this:
6031
6032 @image{images/coreutils-size-map,5in,, map of Coreutils disk usage
6033 produced by @command{guix size}}
6034
6035 This option requires that
6036 @uref{http://wingolog.org/software/guile-charting/, Guile-Charting} be
6037 installed and visible in Guile's module search path. When that is not
6038 the case, @command{guix size} fails as it tries to load it.
6039
6040 @item --system=@var{system}
6041 @itemx -s @var{system}
6042 Consider packages for @var{system}---e.g., @code{x86_64-linux}.
6043
6044 @end table
6045
6046 @node Invoking guix graph
6047 @section Invoking @command{guix graph}
6048
6049 @cindex DAG
6050 @cindex @command{guix graph}
6051 @cindex package dependencies
6052 Packages and their dependencies form a @dfn{graph}, specifically a
6053 directed acyclic graph (DAG). It can quickly become difficult to have a
6054 mental model of the package DAG, so the @command{guix graph} command
6055 provides a visual representation of the DAG. By default,
6056 @command{guix graph} emits a DAG representation in the input format of
6057 @uref{http://www.graphviz.org/, Graphviz}, so its output can be passed
6058 directly to the @command{dot} command of Graphviz. It can also emit an
6059 HTML page with embedded JavaScript code to display a ``chord diagram''
6060 in a Web browser, using the @uref{https://d3js.org/, d3.js} library.
6061 The general syntax is:
6062
6063 @example
6064 guix graph @var{options} @var{package}@dots{}
6065 @end example
6066
6067 For example, the following command generates a PDF file representing the
6068 package DAG for the GNU@tie{}Core Utilities, showing its build-time
6069 dependencies:
6070
6071 @example
6072 guix graph coreutils | dot -Tpdf > dag.pdf
6073 @end example
6074
6075 The output looks like this:
6076
6077 @image{images/coreutils-graph,2in,,Dependency graph of the GNU Coreutils}
6078
6079 Nice little graph, no?
6080
6081 But there is more than one graph! The one above is concise: it is the
6082 graph of package objects, omitting implicit inputs such as GCC, libc,
6083 grep, etc. It is often useful to have such a concise graph, but
6084 sometimes one may want to see more details. @command{guix graph} supports
6085 several types of graphs, allowing you to choose the level of detail:
6086
6087 @table @code
6088 @item package
6089 This is the default type used in the example above. It shows the DAG of
6090 package objects, excluding implicit dependencies. It is concise, but
6091 filters out many details.
6092
6093 @item reverse-package
6094 This shows the @emph{reverse} DAG of packages. For example:
6095
6096 @example
6097 guix graph --type=reverse-package ocaml
6098 @end example
6099
6100 ... yields the graph of packages that depend on OCaml.
6101
6102 Note that for core packages this can yield huge graphs. If all you want
6103 is to know the number of packages that depend on a given package, use
6104 @command{guix refresh --list-dependent} (@pxref{Invoking guix refresh,
6105 @option{--list-dependent}}).
6106
6107 @item bag-emerged
6108 This is the package DAG, @emph{including} implicit inputs.
6109
6110 For instance, the following command:
6111
6112 @example
6113 guix graph --type=bag-emerged coreutils | dot -Tpdf > dag.pdf
6114 @end example
6115
6116 ... yields this bigger graph:
6117
6118 @image{images/coreutils-bag-graph,,5in,Detailed dependency graph of the GNU Coreutils}
6119
6120 At the bottom of the graph, we see all the implicit inputs of
6121 @var{gnu-build-system} (@pxref{Build Systems, @code{gnu-build-system}}).
6122
6123 Now, note that the dependencies of these implicit inputs---that is, the
6124 @dfn{bootstrap dependencies} (@pxref{Bootstrapping})---are not shown
6125 here, for conciseness.
6126
6127 @item bag
6128 Similar to @code{bag-emerged}, but this time including all the bootstrap
6129 dependencies.
6130
6131 @item bag-with-origins
6132 Similar to @code{bag}, but also showing origins and their dependencies.
6133
6134 @item derivations
6135 This is the most detailed representation: It shows the DAG of
6136 derivations (@pxref{Derivations}) and plain store items. Compared to
6137 the above representation, many additional nodes are visible, including
6138 build scripts, patches, Guile modules, etc.
6139
6140 For this type of graph, it is also possible to pass a @file{.drv} file
6141 name instead of a package name, as in:
6142
6143 @example
6144 guix graph -t derivation `guix system build -d my-config.scm`
6145 @end example
6146 @end table
6147
6148 All the types above correspond to @emph{build-time dependencies}. The
6149 following graph type represents the @emph{run-time dependencies}:
6150
6151 @table @code
6152 @item references
6153 This is the graph of @dfn{references} of a package output, as returned
6154 by @command{guix gc --references} (@pxref{Invoking guix gc}).
6155
6156 If the given package output is not available in the store, @command{guix
6157 graph} attempts to obtain dependency information from substitutes.
6158
6159 Here you can also pass a store file name instead of a package name. For
6160 example, the command below produces the reference graph of your profile
6161 (which can be big!):
6162
6163 @example
6164 guix graph -t references `readlink -f ~/.guix-profile`
6165 @end example
6166
6167 @item referrers
6168 This is the graph of the @dfn{referrers} of a store item, as returned by
6169 @command{guix gc --referrers} (@pxref{Invoking guix gc}).
6170
6171 This relies exclusively on local information from your store. For
6172 instance, let us suppose that the current Inkscape is available in 10
6173 profiles on your machine; @command{guix graph -t referrers inkscape}
6174 will show a graph rooted at Inkscape and with those 10 profiles linked
6175 to it.
6176
6177 It can help determine what is preventing a store item from being garbage
6178 collected.
6179
6180 @end table
6181
6182 The available options are the following:
6183
6184 @table @option
6185 @item --type=@var{type}
6186 @itemx -t @var{type}
6187 Produce a graph output of @var{type}, where @var{type} must be one of
6188 the values listed above.
6189
6190 @item --list-types
6191 List the supported graph types.
6192
6193 @item --backend=@var{backend}
6194 @itemx -b @var{backend}
6195 Produce a graph using the selected @var{backend}.
6196
6197 @item --list-backends
6198 List the supported graph backends.
6199
6200 Currently, the available backends are Graphviz and d3.js.
6201
6202 @item --expression=@var{expr}
6203 @itemx -e @var{expr}
6204 Consider the package @var{expr} evaluates to.
6205
6206 This is useful to precisely refer to a package, as in this example:
6207
6208 @example
6209 guix graph -e '(@@@@ (gnu packages commencement) gnu-make-final)'
6210 @end example
6211 @end table
6212
6213
6214 @node Invoking guix environment
6215 @section Invoking @command{guix environment}
6216
6217 @cindex reproducible build environments
6218 @cindex development environments
6219 @cindex @command{guix environment}
6220 @cindex environment, package build environment
6221 The purpose of @command{guix environment} is to assist hackers in
6222 creating reproducible development environments without polluting their
6223 package profile. The @command{guix environment} tool takes one or more
6224 packages, builds all of their inputs, and creates a shell
6225 environment to use them.
6226
6227 The general syntax is:
6228
6229 @example
6230 guix environment @var{options} @var{package}@dots{}
6231 @end example
6232
6233 The following example spawns a new shell set up for the development of
6234 GNU@tie{}Guile:
6235
6236 @example
6237 guix environment guile
6238 @end example
6239
6240 If the needed dependencies are not built yet, @command{guix environment}
6241 automatically builds them. The environment of the new shell is an augmented
6242 version of the environment that @command{guix environment} was run in.
6243 It contains the necessary search paths for building the given package
6244 added to the existing environment variables. To create a ``pure''
6245 environment, in which the original environment variables have been unset,
6246 use the @code{--pure} option@footnote{Users sometimes wrongfully augment
6247 environment variables such as @code{PATH} in their @file{~/.bashrc}
6248 file. As a consequence, when @code{guix environment} launches it, Bash
6249 may read @file{~/.bashrc}, thereby introducing ``impurities'' in these
6250 environment variables. It is an error to define such environment
6251 variables in @file{.bashrc}; instead, they should be defined in
6252 @file{.bash_profile}, which is sourced only by log-in shells.
6253 @xref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}, for
6254 details on Bash start-up files.}.
6255
6256 @vindex GUIX_ENVIRONMENT
6257 @command{guix environment} defines the @code{GUIX_ENVIRONMENT}
6258 variable in the shell it spawns; its value is the file name of the
6259 profile of this environment. This allows users to, say, define a
6260 specific prompt for development environments in their @file{.bashrc}
6261 (@pxref{Bash Startup Files,,, bash, The GNU Bash Reference Manual}):
6262
6263 @example
6264 if [ -n "$GUIX_ENVIRONMENT" ]
6265 then
6266 export PS1="\u@@\h \w [dev]\$ "
6267 fi
6268 @end example
6269
6270 @noindent
6271 ... or to browse the profile:
6272
6273 @example
6274 $ ls "$GUIX_ENVIRONMENT/bin"
6275 @end example
6276
6277 Additionally, more than one package may be specified, in which case the
6278 union of the inputs for the given packages are used. For example, the
6279 command below spawns a shell where all of the dependencies of both Guile
6280 and Emacs are available:
6281
6282 @example
6283 guix environment guile emacs
6284 @end example
6285
6286 Sometimes an interactive shell session is not desired. An arbitrary
6287 command may be invoked by placing the @code{--} token to separate the
6288 command from the rest of the arguments:
6289
6290 @example
6291 guix environment guile -- make -j4
6292 @end example
6293
6294 In other situations, it is more convenient to specify the list of
6295 packages needed in the environment. For example, the following command
6296 runs @command{python} from an environment containing Python@tie{}2.7 and
6297 NumPy:
6298
6299 @example
6300 guix environment --ad-hoc python2-numpy python-2.7 -- python
6301 @end example
6302
6303 Furthermore, one might want the dependencies of a package and also some
6304 additional packages that are not build-time or runtime dependencies, but
6305 are useful when developing nonetheless. Because of this, the
6306 @code{--ad-hoc} flag is positional. Packages appearing before
6307 @code{--ad-hoc} are interpreted as packages whose dependencies will be
6308 added to the environment. Packages appearing after are interpreted as
6309 packages that will be added to the environment directly. For example,
6310 the following command creates a Guix development environment that
6311 additionally includes Git and strace:
6312
6313 @example
6314 guix environment guix --ad-hoc git strace
6315 @end example
6316
6317 Sometimes it is desirable to isolate the environment as much as
6318 possible, for maximal purity and reproducibility. In particular, when
6319 using Guix on a host distro that is not GuixSD, it is desirable to
6320 prevent access to @file{/usr/bin} and other system-wide resources from
6321 the development environment. For example, the following command spawns
6322 a Guile REPL in a ``container'' where only the store and the current
6323 working directory are mounted:
6324
6325 @example
6326 guix environment --ad-hoc --container guile -- guile
6327 @end example
6328
6329 @quotation Note
6330 The @code{--container} option requires Linux-libre 3.19 or newer.
6331 @end quotation
6332
6333 The available options are summarized below.
6334
6335 @table @code
6336 @item --root=@var{file}
6337 @itemx -r @var{file}
6338 @cindex persistent environment
6339 @cindex garbage collector root, for environments
6340 Make @var{file} a symlink to the profile for this environment, and
6341 register it as a garbage collector root.
6342
6343 This is useful if you want to protect your environment from garbage
6344 collection, to make it ``persistent''.
6345
6346 When this option is omitted, the environment is protected from garbage
6347 collection only for the duration of the @command{guix environment}
6348 session. This means that next time you recreate the same environment,
6349 you could have to rebuild or re-download packages.
6350
6351 @item --expression=@var{expr}
6352 @itemx -e @var{expr}
6353 Create an environment for the package or list of packages that
6354 @var{expr} evaluates to.
6355
6356 For example, running:
6357
6358 @example
6359 guix environment -e '(@@ (gnu packages maths) petsc-openmpi)'
6360 @end example
6361
6362 starts a shell with the environment for this specific variant of the
6363 PETSc package.
6364
6365 Running:
6366
6367 @example
6368 guix environment --ad-hoc -e '(@@ (gnu) %base-packages)'
6369 @end example
6370
6371 starts a shell with all the GuixSD base packages available.
6372
6373 The above commands only use the default output of the given packages.
6374 To select other outputs, two element tuples can be specified:
6375
6376 @example
6377 guix environment --ad-hoc -e '(list (@ (gnu packages bash) bash) "include")'
6378 @end example
6379
6380 @item --load=@var{file}
6381 @itemx -l @var{file}
6382 Create an environment for the package or list of packages that the code
6383 within @var{file} evaluates to.
6384
6385 As an example, @var{file} might contain a definition like this
6386 (@pxref{Defining Packages}):
6387
6388 @example
6389 @verbatiminclude environment-gdb.scm
6390 @end example
6391
6392 @item --ad-hoc
6393 Include all specified packages in the resulting environment, as if an
6394 @i{ad hoc} package were defined with them as inputs. This option is
6395 useful for quickly creating an environment without having to write a
6396 package expression to contain the desired inputs.
6397
6398 For instance, the command:
6399
6400 @example
6401 guix environment --ad-hoc guile guile-sdl -- guile
6402 @end example
6403
6404 runs @command{guile} in an environment where Guile and Guile-SDL are
6405 available.
6406
6407 Note that this example implicitly asks for the default output of
6408 @code{guile} and @code{guile-sdl}, but it is possible to ask for a
6409 specific output---e.g., @code{glib:bin} asks for the @code{bin} output
6410 of @code{glib} (@pxref{Packages with Multiple Outputs}).
6411
6412 This option may be composed with the default behavior of @command{guix
6413 environment}. Packages appearing before @code{--ad-hoc} are interpreted
6414 as packages whose dependencies will be added to the environment, the
6415 default behavior. Packages appearing after are interpreted as packages
6416 that will be added to the environment directly.
6417
6418 @item --pure
6419 Unset existing environment variables when building the new environment.
6420 This has the effect of creating an environment in which search paths
6421 only contain package inputs.
6422
6423 @item --search-paths
6424 Display the environment variable definitions that make up the
6425 environment.
6426
6427 @item --system=@var{system}
6428 @itemx -s @var{system}
6429 Attempt to build for @var{system}---e.g., @code{i686-linux}.
6430
6431 @item --container
6432 @itemx -C
6433 @cindex container
6434 Run @var{command} within an isolated container. The current working
6435 directory outside the container is mapped inside the container.
6436 Additionally, a dummy home directory is created that matches the current
6437 user's home directory, and @file{/etc/passwd} is configured accordingly.
6438 The spawned process runs as the current user outside the container, but
6439 has root privileges in the context of the container.
6440
6441 @item --network
6442 @itemx -N
6443 For containers, share the network namespace with the host system.
6444 Containers created without this flag only have access to the loopback
6445 device.
6446
6447 @item --expose=@var{source}[=@var{target}]
6448 For containers, expose the file system @var{source} from the host system
6449 as the read-only file system @var{target} within the container. If
6450 @var{target} is not specified, @var{source} is used as the target mount
6451 point in the container.
6452
6453 The example below spawns a Guile REPL in a container in which the user's
6454 home directory is accessible read-only via the @file{/exchange}
6455 directory:
6456
6457 @example
6458 guix environment --container --expose=$HOME=/exchange --ad-hoc guile -- guile
6459 @end example
6460
6461 @item --share=@var{source}[=@var{target}]
6462 For containers, share the file system @var{source} from the host system
6463 as the writable file system @var{target} within the container. If
6464 @var{target} is not specified, @var{source} is used as the target mount
6465 point in the container.
6466
6467 The example below spawns a Guile REPL in a container in which the user's
6468 home directory is accessible for both reading and writing via the
6469 @file{/exchange} directory:
6470
6471 @example
6472 guix environment --container --share=$HOME=/exchange --ad-hoc guile -- guile
6473 @end example
6474 @end table
6475
6476 @command{guix environment}
6477 also supports all of the common build options that @command{guix
6478 build} supports (@pxref{Common Build Options}).
6479
6480
6481 @node Invoking guix publish
6482 @section Invoking @command{guix publish}
6483
6484 @cindex @command{guix publish}
6485 The purpose of @command{guix publish} is to enable users to easily share
6486 their store with others, who can then use it as a substitute server
6487 (@pxref{Substitutes}).
6488
6489 When @command{guix publish} runs, it spawns an HTTP server which allows
6490 anyone with network access to obtain substitutes from it. This means
6491 that any machine running Guix can also act as if it were a build farm,
6492 since the HTTP interface is compatible with Hydra, the software behind
6493 the @code{hydra.gnu.org} build farm.
6494
6495 For security, each substitute is signed, allowing recipients to check
6496 their authenticity and integrity (@pxref{Substitutes}). Because
6497 @command{guix publish} uses the signing key of the system, which is only
6498 readable by the system administrator, it must be started as root; the
6499 @code{--user} option makes it drop root privileges early on.
6500
6501 The signing key pair must be generated before @command{guix publish} is
6502 launched, using @command{guix archive --generate-key} (@pxref{Invoking
6503 guix archive}).
6504
6505 The general syntax is:
6506
6507 @example
6508 guix publish @var{options}@dots{}
6509 @end example
6510
6511 Running @command{guix publish} without any additional arguments will
6512 spawn an HTTP server on port 8080:
6513
6514 @example
6515 guix publish
6516 @end example
6517
6518 Once a publishing server has been authorized (@pxref{Invoking guix
6519 archive}), the daemon may download substitutes from it:
6520
6521 @example
6522 guix-daemon --substitute-urls=http://example.org:8080
6523 @end example
6524
6525 By default, @command{guix publish} compresses archives on the fly as it
6526 serves them. This ``on-the-fly'' mode is convenient in that it requires
6527 no setup and is immediately available. However, when serving lots of
6528 clients, we recommend using the @option{--cache} option, which enables
6529 caching of the archives before they are sent to clients---see below for
6530 details.
6531
6532 As a bonus, @command{guix publish} also serves as a content-addressed
6533 mirror for source files referenced in @code{origin} records
6534 (@pxref{origin Reference}). For instance, assuming @command{guix
6535 publish} is running on @code{example.org}, the following URL returns the
6536 raw @file{hello-2.10.tar.gz} file with the given SHA256 hash
6537 (represented in @code{nix-base32} format, @pxref{Invoking guix hash}):
6538
6539 @example
6540 http://example.org/file/hello-2.10.tar.gz/sha256/0ssi1@dots{}ndq1i
6541 @end example
6542
6543 Obviously, these URLs only work for files that are in the store; in
6544 other cases, they return 404 (``Not Found'').
6545
6546 The following options are available:
6547
6548 @table @code
6549 @item --port=@var{port}
6550 @itemx -p @var{port}
6551 Listen for HTTP requests on @var{port}.
6552
6553 @item --listen=@var{host}
6554 Listen on the network interface for @var{host}. The default is to
6555 accept connections from any interface.
6556
6557 @item --user=@var{user}
6558 @itemx -u @var{user}
6559 Change privileges to @var{user} as soon as possible---i.e., once the
6560 server socket is open and the signing key has been read.
6561
6562 @item --compression[=@var{level}]
6563 @itemx -C [@var{level}]
6564 Compress data using the given @var{level}. When @var{level} is zero,
6565 disable compression. The range 1 to 9 corresponds to different gzip
6566 compression levels: 1 is the fastest, and 9 is the best (CPU-intensive).
6567 The default is 3.
6568
6569 Unless @option{--cache} is used, compression occurs on the fly and
6570 the compressed streams are not
6571 cached. Thus, to reduce load on the machine that runs @command{guix
6572 publish}, it may be a good idea to choose a low compression level, to
6573 run @command{guix publish} behind a caching proxy, or to use
6574 @option{--cache}. Using @option{--cache} has the advantage that it
6575 allows @command{guix publish} to add @code{Content-Length} HTTP header
6576 to its responses.
6577
6578 @item --cache=@var{directory}
6579 @itemx -c @var{directory}
6580 Cache archives and meta-data (@code{.narinfo} URLs) to @var{directory}
6581 and only serve archives that are in cache.
6582
6583 When this option is omitted, archives and meta-data are created
6584 on-the-fly. This can reduce the available bandwidth, especially when
6585 compression is enabled, since this may become CPU-bound. Another
6586 drawback of the default mode is that the length of archives is not known
6587 in advance, so @command{guix publish} does not add a
6588 @code{Content-Length} HTTP header to its responses, which in turn
6589 prevents clients from knowing the amount of data being downloaded.
6590
6591 Conversely, when @option{--cache} is used, the first request for a store
6592 item (@i{via} a @code{.narinfo} URL) returns 404 and triggers a
6593 background process to @dfn{bake} the archive---computing its
6594 @code{.narinfo} and compressing the archive, if needed. Once the
6595 archive is cached in @var{directory}, subsequent requests succeed and
6596 are served directly from the cache, which guarantees that clients get
6597 the best possible bandwidth.
6598
6599 The ``baking'' process is performed by worker threads. By default, one
6600 thread per CPU core is created, but this can be customized. See
6601 @option{--workers} below.
6602
6603 When @option{--ttl} is used, cached entries are automatically deleted
6604 when they have expired.
6605
6606 @item --workers=@var{N}
6607 When @option{--cache} is used, request the allocation of @var{N} worker
6608 threads to ``bake'' archives.
6609
6610 @item --ttl=@var{ttl}
6611 Produce @code{Cache-Control} HTTP headers that advertise a time-to-live
6612 (TTL) of @var{ttl}. @var{ttl} must denote a duration: @code{5d} means 5
6613 days, @code{1m} means 1 month, and so on.
6614
6615 This allows the user's Guix to keep substitute information in cache for
6616 @var{ttl}. However, note that @code{guix publish} does not itself
6617 guarantee that the store items it provides will indeed remain available
6618 for as long as @var{ttl}.
6619
6620 Additionally, when @option{--cache} is used, cached entries that have
6621 not been accessed for @var{ttl} may be deleted.
6622
6623 @item --nar-path=@var{path}
6624 Use @var{path} as the prefix for the URLs of ``nar'' files
6625 (@pxref{Invoking guix archive, normalized archives}).
6626
6627 By default, nars are served at a URL such as
6628 @code{/nar/gzip/@dots{}-coreutils-8.25}. This option allows you to
6629 change the @code{/nar} part to @var{path}.
6630
6631 @item --public-key=@var{file}
6632 @itemx --private-key=@var{file}
6633 Use the specific @var{file}s as the public/private key pair used to sign
6634 the store items being published.
6635
6636 The files must correspond to the same key pair (the private key is used
6637 for signing and the public key is merely advertised in the signature
6638 metadata). They must contain keys in the canonical s-expression format
6639 as produced by @command{guix archive --generate-key} (@pxref{Invoking
6640 guix archive}). By default, @file{/etc/guix/signing-key.pub} and
6641 @file{/etc/guix/signing-key.sec} are used.
6642
6643 @item --repl[=@var{port}]
6644 @itemx -r [@var{port}]
6645 Spawn a Guile REPL server (@pxref{REPL Servers,,, guile, GNU Guile
6646 Reference Manual}) on @var{port} (37146 by default). This is used
6647 primarily for debugging a running @command{guix publish} server.
6648 @end table
6649
6650 Enabling @command{guix publish} on a GuixSD system is a one-liner: just
6651 instantiate a @code{guix-publish-service-type} service in the @code{services} field
6652 of the @code{operating-system} declaration (@pxref{guix-publish-service-type,
6653 @code{guix-publish-service-type}}).
6654
6655 If you are instead running Guix on a ``foreign distro'', follow these
6656 instructions:”
6657
6658 @itemize
6659 @item
6660 If your host distro uses the systemd init system:
6661
6662 @example
6663 # ln -s ~root/.guix-profile/lib/systemd/system/guix-publish.service \
6664 /etc/systemd/system/
6665 # systemctl start guix-publish && systemctl enable guix-publish
6666 @end example
6667
6668 @item
6669 If your host distro uses the Upstart init system:
6670
6671 @example
6672 # ln -s ~root/.guix-profile/lib/upstart/system/guix-publish.conf /etc/init/
6673 # start guix-publish
6674 @end example
6675
6676 @item
6677 Otherwise, proceed similarly with your distro's init system.
6678 @end itemize
6679
6680 @node Invoking guix challenge
6681 @section Invoking @command{guix challenge}
6682
6683 @cindex reproducible builds
6684 @cindex verifiable builds
6685 @cindex @command{guix challenge}
6686 @cindex challenge
6687 Do the binaries provided by this server really correspond to the source
6688 code it claims to build? Is a package build process deterministic?
6689 These are the questions the @command{guix challenge} command attempts to
6690 answer.
6691
6692 The former is obviously an important question: Before using a substitute
6693 server (@pxref{Substitutes}), one had better @emph{verify} that it
6694 provides the right binaries, and thus @emph{challenge} it. The latter
6695 is what enables the former: If package builds are deterministic, then
6696 independent builds of the package should yield the exact same result,
6697 bit for bit; if a server provides a binary different from the one
6698 obtained locally, it may be either corrupt or malicious.
6699
6700 We know that the hash that shows up in @file{/gnu/store} file names is
6701 the hash of all the inputs of the process that built the file or
6702 directory---compilers, libraries, build scripts,
6703 etc. (@pxref{Introduction}). Assuming deterministic build processes,
6704 one store file name should map to exactly one build output.
6705 @command{guix challenge} checks whether there is, indeed, a single
6706 mapping by comparing the build outputs of several independent builds of
6707 any given store item.
6708
6709 The command output looks like this:
6710
6711 @smallexample
6712 $ guix challenge --substitute-urls="https://hydra.gnu.org https://guix.example.org"
6713 updating list of substitutes from 'https://hydra.gnu.org'... 100.0%
6714 updating list of substitutes from 'https://guix.example.org'... 100.0%
6715 /gnu/store/@dots{}-openssl-1.0.2d contents differ:
6716 local hash: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
6717 https://hydra.gnu.org/nar/@dots{}-openssl-1.0.2d: 0725l22r5jnzazaacncwsvp9kgf42266ayyp814v7djxs7nk963q
6718 https://guix.example.org/nar/@dots{}-openssl-1.0.2d: 1zy4fmaaqcnjrzzajkdn3f5gmjk754b43qkq47llbyak9z0qjyim
6719 /gnu/store/@dots{}-git-2.5.0 contents differ:
6720 local hash: 00p3bmryhjxrhpn2gxs2fy0a15lnip05l97205pgbk5ra395hyha
6721 https://hydra.gnu.org/nar/@dots{}-git-2.5.0: 069nb85bv4d4a6slrwjdy8v1cn4cwspm3kdbmyb81d6zckj3nq9f
6722 https://guix.example.org/nar/@dots{}-git-2.5.0: 0mdqa9w1p6cmli6976v4wi0sw9r4p5prkj7lzfd1877wk11c9c73
6723 /gnu/store/@dots{}-pius-2.1.1 contents differ:
6724 local hash: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
6725 https://hydra.gnu.org/nar/@dots{}-pius-2.1.1: 0k4v3m9z1zp8xzzizb7d8kjj72f9172xv078sq4wl73vnq9ig3ax
6726 https://guix.example.org/nar/@dots{}-pius-2.1.1: 1cy25x1a4fzq5rk0pmvc8xhwyffnqz95h2bpvqsz2mpvlbccy0gs
6727 @end smallexample
6728
6729 @noindent
6730 In this example, @command{guix challenge} first scans the store to
6731 determine the set of locally-built derivations---as opposed to store
6732 items that were downloaded from a substitute server---and then queries
6733 all the substitute servers. It then reports those store items for which
6734 the servers obtained a result different from the local build.
6735
6736 @cindex non-determinism, in package builds
6737 As an example, @code{guix.example.org} always gets a different answer.
6738 Conversely, @code{hydra.gnu.org} agrees with local builds, except in the
6739 case of Git. This might indicate that the build process of Git is
6740 non-deterministic, meaning that its output varies as a function of
6741 various things that Guix does not fully control, in spite of building
6742 packages in isolated environments (@pxref{Features}). Most common
6743 sources of non-determinism include the addition of timestamps in build
6744 results, the inclusion of random numbers, and directory listings sorted
6745 by inode number. See @uref{https://reproducible-builds.org/docs/}, for
6746 more information.
6747
6748 To find out what is wrong with this Git binary, we can do something along
6749 these lines (@pxref{Invoking guix archive}):
6750
6751 @example
6752 $ wget -q -O - https://hydra.gnu.org/nar/@dots{}-git-2.5.0 \
6753 | guix archive -x /tmp/git
6754 $ diff -ur --no-dereference /gnu/store/@dots{}-git.2.5.0 /tmp/git
6755 @end example
6756
6757 This command shows the difference between the files resulting from the
6758 local build, and the files resulting from the build on
6759 @code{hydra.gnu.org} (@pxref{Overview, Comparing and Merging Files,,
6760 diffutils, Comparing and Merging Files}). The @command{diff} command
6761 works great for text files. When binary files differ, a better option
6762 is @uref{https://diffoscope.org/, Diffoscope}, a tool that helps
6763 visualize differences for all kinds of files.
6764
6765 Once you have done that work, you can tell whether the differences are due
6766 to a non-deterministic build process or to a malicious server. We try
6767 hard to remove sources of non-determinism in packages to make it easier
6768 to verify substitutes, but of course, this is a process that
6769 involves not just Guix, but a large part of the free software community.
6770 In the meantime, @command{guix challenge} is one tool to help address
6771 the problem.
6772
6773 If you are writing packages for Guix, you are encouraged to check
6774 whether @code{hydra.gnu.org} and other substitute servers obtain the
6775 same build result as you did with:
6776
6777 @example
6778 $ guix challenge @var{package}
6779 @end example
6780
6781 @noindent
6782 where @var{package} is a package specification such as
6783 @code{guile@@2.0} or @code{glibc:debug}.
6784
6785 The general syntax is:
6786
6787 @example
6788 guix challenge @var{options} [@var{packages}@dots{}]
6789 @end example
6790
6791 When a difference is found between the hash of a locally-built item and
6792 that of a server-provided substitute, or among substitutes provided by
6793 different servers, the command displays it as in the example above and
6794 its exit code is 2 (other non-zero exit codes denote other kinds of
6795 errors.)
6796
6797 The one option that matters is:
6798
6799 @table @code
6800
6801 @item --substitute-urls=@var{urls}
6802 Consider @var{urls} the whitespace-separated list of substitute source
6803 URLs to compare to.
6804
6805 @item --verbose
6806 @itemx -v
6807 Show details about matches (identical contents) in addition to
6808 information about mismatches.
6809
6810 @end table
6811
6812 @node Invoking guix copy
6813 @section Invoking @command{guix copy}
6814
6815 @cindex copy, of store items, over SSH
6816 @cindex SSH, copy of store items
6817 @cindex sharing store items across machines
6818 @cindex transferring store items across machines
6819 The @command{guix copy} command copies items from the store of one
6820 machine to that of another machine over a secure shell (SSH)
6821 connection@footnote{This command is available only when Guile-SSH was
6822 found. @xref{Requirements}, for details.}. For example, the following
6823 command copies the @code{coreutils} package, the user's profile, and all
6824 their dependencies over to @var{host}, logged in as @var{user}:
6825
6826 @example
6827 guix copy --to=@var{user}@@@var{host} \
6828 coreutils `readlink -f ~/.guix-profile`
6829 @end example
6830
6831 If some of the items to be copied are already present on @var{host},
6832 they are not actually sent.
6833
6834 The command below retrieves @code{libreoffice} and @code{gimp} from
6835 @var{host}, assuming they are available there:
6836
6837 @example
6838 guix copy --from=@var{host} libreoffice gimp
6839 @end example
6840
6841 The SSH connection is established using the Guile-SSH client, which is
6842 compatible with OpenSSH: it honors @file{~/.ssh/known_hosts} and
6843 @file{~/.ssh/config}, and uses the SSH agent for authentication.
6844
6845 The key used to sign items that are sent must be accepted by the remote
6846 machine. Likewise, the key used by the remote machine to sign items you
6847 are retrieving must be in @file{/etc/guix/acl} so it is accepted by your
6848 own daemon. @xref{Invoking guix archive}, for more information about
6849 store item authentication.
6850
6851 The general syntax is:
6852
6853 @example
6854 guix copy [--to=@var{spec}|--from=@var{spec}] @var{items}@dots{}
6855 @end example
6856
6857 You must always specify one of the following options:
6858
6859 @table @code
6860 @item --to=@var{spec}
6861 @itemx --from=@var{spec}
6862 Specify the host to send to or receive from. @var{spec} must be an SSH
6863 spec such as @code{example.org}, @code{charlie@@example.org}, or
6864 @code{charlie@@example.org:2222}.
6865 @end table
6866
6867 The @var{items} can be either package names, such as @code{gimp}, or
6868 store items, such as @file{/gnu/store/@dots{}-idutils-4.6}.
6869
6870 When specifying the name of a package to send, it is first built if
6871 needed, unless @option{--dry-run} was specified. Common build options
6872 are supported (@pxref{Common Build Options}).
6873
6874
6875 @node Invoking guix container
6876 @section Invoking @command{guix container}
6877 @cindex container
6878 @cindex @command{guix container}
6879 @quotation Note
6880 As of version @value{VERSION}, this tool is experimental. The interface
6881 is subject to radical change in the future.
6882 @end quotation
6883
6884 The purpose of @command{guix container} is to manipulate processes
6885 running within an isolated environment, commonly known as a
6886 ``container'', typically created by the @command{guix environment}
6887 (@pxref{Invoking guix environment}) and @command{guix system container}
6888 (@pxref{Invoking guix system}) commands.
6889
6890 The general syntax is:
6891
6892 @example
6893 guix container @var{action} @var{options}@dots{}
6894 @end example
6895
6896 @var{action} specifies the operation to perform with a container, and
6897 @var{options} specifies the context-specific arguments for the action.
6898
6899 The following actions are available:
6900
6901 @table @code
6902 @item exec
6903 Execute a command within the context of a running container.
6904
6905 The syntax is:
6906
6907 @example
6908 guix container exec @var{pid} @var{program} @var{arguments}@dots{}
6909 @end example
6910
6911 @var{pid} specifies the process ID of the running container.
6912 @var{program} specifies an executable file name within the root file
6913 system of the container. @var{arguments} are the additional options that
6914 will be passed to @var{program}.
6915
6916 The following command launches an interactive login shell inside a
6917 GuixSD container, started by @command{guix system container}, and whose
6918 process ID is 9001:
6919
6920 @example
6921 guix container exec 9001 /run/current-system/profile/bin/bash --login
6922 @end example
6923
6924 Note that the @var{pid} cannot be the parent process of a container. It
6925 must be PID 1 of the container or one of its child processes.
6926
6927 @end table
6928
6929 @c *********************************************************************
6930 @node GNU Distribution
6931 @chapter GNU Distribution
6932
6933 @cindex Guix System Distribution
6934 @cindex GuixSD
6935 Guix comes with a distribution of the GNU system consisting entirely of
6936 free software@footnote{The term ``free'' here refers to the
6937 @url{http://www.gnu.org/philosophy/free-sw.html,freedom provided to
6938 users of that software}.}. The
6939 distribution can be installed on its own (@pxref{System Installation}),
6940 but it is also possible to install Guix as a package manager on top of
6941 an installed GNU/Linux system (@pxref{Installation}). To distinguish
6942 between the two, we refer to the standalone distribution as the Guix
6943 System Distribution, or GuixSD.
6944
6945 The distribution provides core GNU packages such as GNU libc, GCC, and
6946 Binutils, as well as many GNU and non-GNU applications. The complete
6947 list of available packages can be browsed
6948 @url{http://www.gnu.org/software/guix/packages,on-line} or by
6949 running @command{guix package} (@pxref{Invoking guix package}):
6950
6951 @example
6952 guix package --list-available
6953 @end example
6954
6955 Our goal is to provide a practical 100% free software distribution of
6956 Linux-based and other variants of GNU, with a focus on the promotion and
6957 tight integration of GNU components, and an emphasis on programs and
6958 tools that help users exert that freedom.
6959
6960 Packages are currently available on the following platforms:
6961
6962 @table @code
6963
6964 @item x86_64-linux
6965 Intel/AMD @code{x86_64} architecture, Linux-Libre kernel;
6966
6967 @item i686-linux
6968 Intel 32-bit architecture (IA32), Linux-Libre kernel;
6969
6970 @item armhf-linux
6971 ARMv7-A architecture with hard float, Thumb-2 and NEON,
6972 using the EABI hard-float application binary interface (ABI),
6973 and Linux-Libre kernel.
6974
6975 @item aarch64-linux
6976 little-endian 64-bit ARMv8-A processors, Linux-Libre kernel. This is
6977 currently in an experimental stage, with limited support.
6978 @xref{Contributing}, for how to help!
6979
6980 @item mips64el-linux
6981 little-endian 64-bit MIPS processors, specifically the Loongson series,
6982 n32 ABI, and Linux-Libre kernel.
6983
6984 @end table
6985
6986 GuixSD itself is currently only available on @code{i686} and @code{x86_64}.
6987
6988 @noindent
6989 For information on porting to other architectures or kernels,
6990 @pxref{Porting}.
6991
6992 @menu
6993 * System Installation:: Installing the whole operating system.
6994 * System Configuration:: Configuring the operating system.
6995 * Documentation:: Browsing software user manuals.
6996 * Installing Debugging Files:: Feeding the debugger.
6997 * Security Updates:: Deploying security fixes quickly.
6998 * Package Modules:: Packages from the programmer's viewpoint.
6999 * Packaging Guidelines:: Growing the distribution.
7000 * Bootstrapping:: GNU/Linux built from scratch.
7001 * Porting:: Targeting another platform or kernel.
7002 @end menu
7003
7004 Building this distribution is a cooperative effort, and you are invited
7005 to join! @xref{Contributing}, for information about how you can help.
7006
7007 @node System Installation
7008 @section System Installation
7009
7010 @cindex installing GuixSD
7011 @cindex Guix System Distribution
7012 This section explains how to install the Guix System Distribution (GuixSD)
7013 on a machine. The Guix package manager can
7014 also be installed on top of a running GNU/Linux system,
7015 @pxref{Installation}.
7016
7017 @ifinfo
7018 @quotation Note
7019 @c This paragraph is for people reading this from tty2 of the
7020 @c installation image.
7021 You are reading this documentation with an Info reader. For details on
7022 how to use it, hit the @key{RET} key (``return'' or ``enter'') on the
7023 link that follows: @pxref{Top, Info reader,, info-stnd, Stand-alone GNU
7024 Info}. Hit @kbd{l} afterwards to come back here.
7025
7026 Alternately, run @command{info info} in another tty to keep the manual
7027 available.
7028 @end quotation
7029 @end ifinfo
7030
7031 @menu
7032 * Limitations:: What you can expect.
7033 * Hardware Considerations:: Supported hardware.
7034 * USB Stick Installation:: Preparing the installation medium.
7035 * Preparing for Installation:: Networking, partitioning, etc.
7036 * Proceeding with the Installation:: The real thing.
7037 * Installing GuixSD in a VM:: GuixSD playground.
7038 * Building the Installation Image:: How this comes to be.
7039 @end menu
7040
7041 @node Limitations
7042 @subsection Limitations
7043
7044 As of version @value{VERSION}, the Guix System Distribution (GuixSD) is
7045 not production-ready. It may contain bugs and lack important
7046 features. Thus, if you are looking for a stable production system that
7047 respects your freedom as a computer user, a good solution at this point
7048 is to consider @url{http://www.gnu.org/distros/free-distros.html, one of
7049 the more established GNU/Linux distributions}. We hope you can soon switch
7050 to the GuixSD without fear, of course. In the meantime, you can
7051 also keep using your distribution and try out the package manager on top
7052 of it (@pxref{Installation}).
7053
7054 Before you proceed with the installation, be aware of the following
7055 noteworthy limitations applicable to version @value{VERSION}:
7056
7057 @itemize
7058 @item
7059 The installation process does not include a graphical user interface and
7060 requires familiarity with GNU/Linux (see the following subsections to
7061 get a feel of what that means.)
7062
7063 @item
7064 Support for the Logical Volume Manager (LVM) is missing.
7065
7066 @item
7067 Few system services are currently supported out-of-the-box
7068 (@pxref{Services}).
7069
7070 @item
7071 More than 5,000 packages are available, but you may
7072 occasionally find that a useful package is missing.
7073
7074 @item
7075 GNOME, Xfce, and Enlightenment are available (@pxref{Desktop Services}),
7076 as well as a number of X11 window managers. However, some graphical
7077 applications may be missing, as well as KDE.
7078 @end itemize
7079
7080 You have been warned! But more than a disclaimer, this is an invitation
7081 to report issues (and success stories!), and to join us in improving it.
7082 @xref{Contributing}, for more info.
7083
7084
7085 @node Hardware Considerations
7086 @subsection Hardware Considerations
7087
7088 @cindex hardware support on GuixSD
7089 GNU@tie{}GuixSD focuses on respecting the user's computing freedom. It
7090 builds around the kernel Linux-libre, which means that only hardware for
7091 which free software drivers and firmware exist is supported. Nowadays,
7092 a wide range of off-the-shelf hardware is supported on
7093 GNU/Linux-libre---from keyboards to graphics cards to scanners and
7094 Ethernet controllers. Unfortunately, there are still areas where
7095 hardware vendors deny users control over their own computing, and such
7096 hardware is not supported on GuixSD.
7097
7098 @cindex WiFi, hardware support
7099 One of the main areas where free drivers or firmware are lacking is WiFi
7100 devices. WiFi devices known to work include those using Atheros chips
7101 (AR9271 and AR7010), which corresponds to the @code{ath9k} Linux-libre
7102 driver, and those using Broadcom/AirForce chips (BCM43xx with
7103 Wireless-Core Revision 5), which corresponds to the @code{b43-open}
7104 Linux-libre driver. Free firmware exists for both and is available
7105 out-of-the-box on GuixSD, as part of @var{%base-firmware}
7106 (@pxref{operating-system Reference, @code{firmware}}).
7107
7108 @cindex RYF, Respects Your Freedom
7109 The @uref{https://www.fsf.org/, Free Software Foundation} runs
7110 @uref{https://www.fsf.org/ryf, @dfn{Respects Your Freedom}} (RYF), a
7111 certification program for hardware products that respect your freedom
7112 and your privacy and ensure that you have control over your device. We
7113 encourage you to check the list of RYF-certified devices.
7114
7115 Another useful resource is the @uref{https://www.h-node.org/, H-Node}
7116 web site. It contains a catalog of hardware devices with information
7117 about their support in GNU/Linux.
7118
7119
7120 @node USB Stick Installation
7121 @subsection USB Stick Installation
7122
7123 An installation image for USB sticks can be downloaded from
7124 @indicateurl{ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@var{system}.xz},
7125 where @var{system} is one of:
7126
7127 @table @code
7128 @item x86_64-linux
7129 for a GNU/Linux system on Intel/AMD-compatible 64-bit CPUs;
7130
7131 @item i686-linux
7132 for a 32-bit GNU/Linux system on Intel-compatible CPUs.
7133 @end table
7134
7135 @c start duplication of authentication part from ``Binary Installation''
7136 Make sure to download the associated @file{.sig} file and to verify the
7137 authenticity of the image against it, along these lines:
7138
7139 @example
7140 $ wget ftp://alpha.gnu.org/gnu/guix/guixsd-usb-install-@value{VERSION}.@var{system}.xz.sig
7141 $ gpg --verify guixsd-usb-install-@value{VERSION}.@var{system}.xz.sig
7142 @end example
7143
7144 If that command fails because you do not have the required public key,
7145 then run this command to import it:
7146
7147 @example
7148 $ gpg --keyserver pgp.mit.edu --recv-keys @value{OPENPGP-SIGNING-KEY-ID}
7149 @end example
7150
7151 @noindent
7152 and rerun the @code{gpg --verify} command.
7153 @c end duplication
7154
7155 This image contains a single partition with the tools necessary for an
7156 installation. It is meant to be copied @emph{as is} to a large-enough
7157 USB stick.
7158
7159 To copy the image to a USB stick, follow these steps:
7160
7161 @enumerate
7162 @item
7163 Decompress the image using the @command{xz} command:
7164
7165 @example
7166 xz -d guixsd-usb-install-@value{VERSION}.@var{system}.xz
7167 @end example
7168
7169 @item
7170 Insert a USB stick of 1@tie{}GiB or more into your machine, and determine
7171 its device name. Assuming that the USB stick is known as @file{/dev/sdX},
7172 copy the image with:
7173
7174 @example
7175 dd if=guixsd-usb-install-@value{VERSION}.x86_64 of=/dev/sdX
7176 @end example
7177
7178 Access to @file{/dev/sdX} usually requires root privileges.
7179 @end enumerate
7180
7181 Once this is done, you should be able to reboot the system and boot from
7182 the USB stick. The latter usually requires you to get in the BIOS' boot
7183 menu, where you can choose to boot from the USB stick.
7184
7185 @xref{Installing GuixSD in a VM}, if, instead, you would like to install
7186 GuixSD in a virtual machine (VM).
7187
7188 @node Preparing for Installation
7189 @subsection Preparing for Installation
7190
7191 Once you have successfully booted the image on the USB stick, you should
7192 end up with a root prompt. Several console TTYs are configured and can
7193 be used to run commands as root. TTY2 shows this documentation,
7194 browsable using the Info reader commands (@pxref{Top,,, info-stnd,
7195 Stand-alone GNU Info}). The installation system runs the GPM mouse
7196 daemon, which allows you to select text with the left mouse button and
7197 to paste it with the middle button.
7198
7199 @quotation Note
7200 Installation requires access to the Internet so that any missing
7201 dependencies of your system configuration can be downloaded. See the
7202 ``Networking'' section below.
7203 @end quotation
7204
7205 The installation system includes many common tools needed for this task.
7206 But it is also a full-blown GuixSD system, which means that you can
7207 install additional packages, should you need it, using @command{guix
7208 package} (@pxref{Invoking guix package}).
7209
7210 @subsubsection Keyboard Layout
7211
7212 @cindex keyboard layout
7213 The installation image uses the US qwerty keyboard layout. If you want
7214 to change it, you can use the @command{loadkeys} command. For example,
7215 the following command selects the Dvorak keyboard layout:
7216
7217 @example
7218 loadkeys dvorak
7219 @end example
7220
7221 See the files under @file{/run/current-system/profile/share/keymaps} for
7222 a list of available keyboard layouts. Run @command{man loadkeys} for
7223 more information.
7224
7225 @subsubsection Networking
7226
7227 Run the following command see what your network interfaces are called:
7228
7229 @example
7230 ifconfig -a
7231 @end example
7232
7233 @noindent
7234 @dots{} or, using the GNU/Linux-specific @command{ip} command:
7235
7236 @example
7237 ip a
7238 @end example
7239
7240 @c http://cgit.freedesktop.org/systemd/systemd/tree/src/udev/udev-builtin-net_id.c#n20
7241 Wired interfaces have a name starting with @samp{e}; for example, the
7242 interface corresponding to the first on-board Ethernet controller is
7243 called @samp{eno1}. Wireless interfaces have a name starting with
7244 @samp{w}, like @samp{w1p2s0}.
7245
7246 @table @asis
7247 @item Wired connection
7248 To configure a wired network run the following command, substituting
7249 @var{interface} with the name of the wired interface you want to use.
7250
7251 @example
7252 ifconfig @var{interface} up
7253 @end example
7254
7255 @item Wireless connection
7256 @cindex wireless
7257 @cindex WiFi
7258 To configure wireless networking, you can create a configuration file
7259 for the @command{wpa_supplicant} configuration tool (its location is not
7260 important) using one of the available text editors such as
7261 @command{zile}:
7262
7263 @example
7264 zile wpa_supplicant.conf
7265 @end example
7266
7267 As an example, the following stanza can go to this file and will work
7268 for many wireless networks, provided you give the actual SSID and
7269 passphrase for the network you are connecting to:
7270
7271 @example
7272 network=@{
7273 ssid="@var{my-ssid}"
7274 key_mgmt=WPA-PSK
7275 psk="the network's secret passphrase"
7276 @}
7277 @end example
7278
7279 Start the wireless service and run it in the background with the
7280 following command (substitute @var{interface} with the name of the
7281 network interface you want to use):
7282
7283 @example
7284 wpa_supplicant -c wpa_supplicant.conf -i @var{interface} -B
7285 @end example
7286
7287 Run @command{man wpa_supplicant} for more information.
7288 @end table
7289
7290 @cindex DHCP
7291 At this point, you need to acquire an IP address. On a network where IP
7292 addresses are automatically assigned @i{via} DHCP, you can run:
7293
7294 @example
7295 dhclient -v @var{interface}
7296 @end example
7297
7298 Try to ping a server to see if networking is up and running:
7299
7300 @example
7301 ping -c 3 gnu.org
7302 @end example
7303
7304 Setting up network access is almost always a requirement because the
7305 image does not contain all the software and tools that may be needed.
7306
7307 @subsubsection Disk Partitioning
7308
7309 Unless this has already been done, the next step is to partition, and
7310 then format the target partition(s).
7311
7312 The installation image includes several partitioning tools, including
7313 Parted (@pxref{Overview,,, parted, GNU Parted User Manual}),
7314 @command{fdisk}, and @command{cfdisk}. Run it and set up your disk with
7315 the partition layout you want:
7316
7317 @example
7318 cfdisk
7319 @end example
7320
7321 If your disk uses the GUID Partition Table (GPT) format and you plan to
7322 install BIOS-based GRUB (which is the default), make sure a BIOS Boot
7323 Partition is available (@pxref{BIOS installation,,, grub, GNU GRUB
7324 manual}).
7325
7326 Once you are done partitioning the target hard disk drive, you have to
7327 create a file system on the relevant partition(s)@footnote{Currently
7328 GuixSD only supports ext4 and btrfs file systems. In particular, code
7329 that reads partition UUIDs and labels only works for these file system
7330 types.}.
7331
7332 Preferably, assign partitions a label so that you can easily and
7333 reliably refer to them in @code{file-system} declarations (@pxref{File
7334 Systems}). This is typically done using the @code{-L} option of
7335 @command{mkfs.ext4} and related commands. So, assuming the target root
7336 partition lives at @file{/dev/sda1}, a file system with the label
7337 @code{my-root} can be created with:
7338
7339 @example
7340 mkfs.ext4 -L my-root /dev/sda1
7341 @end example
7342
7343 @cindex encrypted disk
7344 If you are instead planning to encrypt the root partition, you can use
7345 the Cryptsetup/LUKS utilities to do that (see @inlinefmtifelse{html,
7346 @uref{https://linux.die.net/man/8/cryptsetup, @code{man cryptsetup}},
7347 @code{man cryptsetup}} for more information.) Assuming you want to
7348 store the root partition on @file{/dev/sda1}, the command sequence would
7349 be along these lines:
7350
7351 @example
7352 cryptsetup luksFormat /dev/sda1
7353 cryptsetup open --type luks /dev/sda1 my-partition
7354 mkfs.ext4 -L my-root /dev/mapper/my-partition
7355 @end example
7356
7357 Once that is done, mount the target root partition under @file{/mnt}
7358 with a command like (again, assuming @code{my-root} is the label of the
7359 root partition):
7360
7361 @example
7362 mount LABEL=my-root /mnt
7363 @end example
7364
7365 Finally, if you plan to use one or more swap partitions (@pxref{Memory
7366 Concepts, swap space,, libc, The GNU C Library Reference Manual}), make
7367 sure to initialize them with @command{mkswap}. Assuming you have one
7368 swap partition on @file{/dev/sda2}, you would run:
7369
7370 @example
7371 mkswap /dev/sda2
7372 swapon /dev/sda2
7373 @end example
7374
7375 Alternatively, you may use a swap file. For example, assuming that in
7376 the new system you want to use the file @file{/swapfile} as a swap file,
7377 you would run@footnote{This example will work for many types of file
7378 systems (e.g., ext4). However, for copy-on-write file systems (e.g.,
7379 btrfs), the required steps may be different. For details, see the
7380 manual pages for @command{mkswap} and @command{swapon}.}:
7381
7382 @example
7383 # This is 10 GiB of swap space. Adjust "count" to change the size.
7384 dd if=/dev/zero of=/mnt/swapfile bs=1MiB count=10240
7385 # For security, make the file readable and writable only by root.
7386 chmod 600 /mnt/swapfile
7387 mkswap /mnt/swapfile
7388 swapon /mnt/swapfile
7389 @end example
7390
7391 Note that if you have encrypted the root partition and created a swap
7392 file in its file system as described above, then the encryption also
7393 protects the swap file, just like any other file in that file system.
7394
7395 @node Proceeding with the Installation
7396 @subsection Proceeding with the Installation
7397
7398 With the target partitions ready and the target root mounted on
7399 @file{/mnt}, we're ready to go. First, run:
7400
7401 @example
7402 herd start cow-store /mnt
7403 @end example
7404
7405 This makes @file{/gnu/store} copy-on-write, such that packages added to it
7406 during the installation phase are written to the target disk on @file{/mnt}
7407 rather than kept in memory. This is necessary because the first phase of
7408 the @command{guix system init} command (see below) entails downloads or
7409 builds to @file{/gnu/store} which, initially, is an in-memory file system.
7410
7411 Next, you have to edit a file and
7412 provide the declaration of the operating system to be installed. To
7413 that end, the installation system comes with three text editors: GNU nano
7414 (@pxref{Top,,, nano, GNU nano Manual}), GNU Zile (an Emacs clone), and
7415 nvi (a clone of the original BSD @command{vi} editor).
7416 We strongly recommend storing that file on the target root file system, say,
7417 as @file{/mnt/etc/config.scm}. Failing to do that, you will have lost your
7418 configuration file once you have rebooted into the newly-installed system.
7419
7420 @xref{Using the Configuration System}, for an overview of the
7421 configuration file. The example configurations discussed in that
7422 section are available under @file{/etc/configuration} in the
7423 installation image. Thus, to get started with a system configuration
7424 providing a graphical display server (a ``desktop'' system), you can run
7425 something along these lines:
7426
7427 @example
7428 # mkdir /mnt/etc
7429 # cp /etc/configuration/desktop.scm /mnt/etc/config.scm
7430 # zile /mnt/etc/config.scm
7431 @end example
7432
7433 You should pay attention to what your configuration file contains, and
7434 in particular:
7435
7436 @itemize
7437 @item
7438 Make sure the @code{grub-configuration} form refers to the device you
7439 want to install GRUB on.
7440
7441 @item
7442 Be sure that your partition labels match the value of their respective
7443 @code{device} fields in your @code{file-system} configuration, assuming
7444 your @code{file-system} configuration sets the value of @code{title} to
7445 @code{'label}.
7446
7447 @item
7448 If there are encrypted or RAID partitions, make sure to add a
7449 @code{mapped-devices} field to describe them (@pxref{Mapped Devices}).
7450 @end itemize
7451
7452 Once you are done preparing the configuration file, the new system must
7453 be initialized (remember that the target root file system is mounted
7454 under @file{/mnt}):
7455
7456 @example
7457 guix system init /mnt/etc/config.scm /mnt
7458 @end example
7459
7460 @noindent
7461 This copies all the necessary files and installs GRUB on
7462 @file{/dev/sdX}, unless you pass the @option{--no-bootloader} option. For
7463 more information, @pxref{Invoking guix system}. This command may trigger
7464 downloads or builds of missing packages, which can take some time.
7465
7466 Once that command has completed---and hopefully succeeded!---you can run
7467 @command{reboot} and boot into the new system. The @code{root} password
7468 in the new system is initially empty; other users' passwords need to be
7469 initialized by running the @command{passwd} command as @code{root},
7470 unless your configuration specifies otherwise
7471 (@pxref{user-account-password, user account passwords}).
7472
7473 @cindex upgrading GuixSD
7474 From then on, you can update GuixSD whenever you want by running
7475 @command{guix pull} as @code{root} (@pxref{Invoking guix pull}), and
7476 then running @command{guix system reconfigure} to build a new system
7477 generation with the latest packages and services (@pxref{Invoking guix
7478 system}). We recommend doing that regularly so that your system
7479 includes the latest security updates (@pxref{Security Updates}).
7480
7481 Join us on @code{#guix} on the Freenode IRC network or on
7482 @file{guix-devel@@gnu.org} to share your experience---good or not so
7483 good.
7484
7485 @node Installing GuixSD in a VM
7486 @subsection Installing GuixSD in a Virtual Machine
7487
7488 @cindex virtual machine, GuixSD installation
7489 If you'd like to install GuixSD in a virtual machine (VM) rather than on
7490 your beloved machine, this section is for you.
7491
7492 To boot a @uref{http://qemu.org/,QEMU} VM for installing GuixSD in a
7493 disk image, follow these steps:
7494
7495 @enumerate
7496 @item
7497 First, retrieve and decompress the GuixSD installation image as
7498 described previously (@pxref{USB Stick Installation}).
7499
7500 @item
7501 Create a disk image that will hold the installed system. To make a
7502 qcow2-formatted disk image, use the @command{qemu-img} command:
7503
7504 @example
7505 qemu-img create -f qcow2 guixsd.img 5G
7506 @end example
7507
7508 This will create a 5GB file.
7509
7510 @item
7511 Boot the USB installation image in an VM:
7512
7513 @example
7514 qemu-system-x86_64 -m 1024 -smp 1 \
7515 -net user -net nic,model=virtio -boot menu=on \
7516 -drive file=guixsd.img \
7517 -drive file=guixsd-usb-install-@value{VERSION}.@var{system}
7518 @end example
7519
7520 In the VM console, quickly press the @kbd{F12} key to enter the boot
7521 menu. Then press the @kbd{2} key and the @kbd{RET} key to validate your
7522 selection.
7523
7524 @item
7525 You're now root in the VM, proceed with the installation process.
7526 @xref{Preparing for Installation}, and follow the instructions.
7527 @end enumerate
7528
7529 Once installation is complete, you can boot the system that's on your
7530 @file{guixsd.img} image. @xref{Running GuixSD in a VM}, for how to do
7531 that.
7532
7533 @node Building the Installation Image
7534 @subsection Building the Installation Image
7535
7536 @cindex installation image
7537 The installation image described above was built using the @command{guix
7538 system} command, specifically:
7539
7540 @c FIXME: 1G is too much; see <http://bugs.gnu.org/23077>.
7541 @example
7542 guix system disk-image --image-size=1G gnu/system/install.scm
7543 @end example
7544
7545 Have a look at @file{gnu/system/install.scm} in the source tree,
7546 and see also @ref{Invoking guix system} for more information
7547 about the installation image.
7548
7549 @node System Configuration
7550 @section System Configuration
7551
7552 @cindex system configuration
7553 The Guix System Distribution supports a consistent whole-system configuration
7554 mechanism. By that we mean that all aspects of the global system
7555 configuration---such as the available system services, timezone and
7556 locale settings, user accounts---are declared in a single place. Such
7557 a @dfn{system configuration} can be @dfn{instantiated}---i.e., effected.
7558
7559 One of the advantages of putting all the system configuration under the
7560 control of Guix is that it supports transactional system upgrades, and
7561 makes it possible to roll back to a previous system instantiation,
7562 should something go wrong with the new one (@pxref{Features}). Another
7563 advantage is that it makes it easy to replicate the exact same configuration
7564 across different machines, or at different points in time, without
7565 having to resort to additional administration tools layered on top of
7566 the own tools of the system.
7567 @c Yes, we're talking of Puppet, Chef, & co. here. ↑
7568
7569 This section describes this mechanism. First we focus on the system
7570 administrator's viewpoint---explaining how the system is configured and
7571 instantiated. Then we show how this mechanism can be extended, for
7572 instance to support new system services.
7573
7574 @menu
7575 * Using the Configuration System:: Customizing your GNU system.
7576 * operating-system Reference:: Detail of operating-system declarations.
7577 * File Systems:: Configuring file system mounts.
7578 * Mapped Devices:: Block device extra processing.
7579 * User Accounts:: Specifying user accounts.
7580 * Locales:: Language and cultural convention settings.
7581 * Services:: Specifying system services.
7582 * Setuid Programs:: Programs running with root privileges.
7583 * X.509 Certificates:: Authenticating HTTPS servers.
7584 * Name Service Switch:: Configuring libc's name service switch.
7585 * Initial RAM Disk:: Linux-Libre bootstrapping.
7586 * GRUB Configuration:: Configuring the boot loader.
7587 * Invoking guix system:: Instantiating a system configuration.
7588 * Running GuixSD in a VM:: How to run GuixSD in a virtual machine.
7589 * Defining Services:: Adding new service definitions.
7590 @end menu
7591
7592 @node Using the Configuration System
7593 @subsection Using the Configuration System
7594
7595 The operating system is configured by providing an
7596 @code{operating-system} declaration in a file that can then be passed to
7597 the @command{guix system} command (@pxref{Invoking guix system}). A
7598 simple setup, with the default system services, the default Linux-Libre
7599 kernel, initial RAM disk, and boot loader looks like this:
7600
7601 @findex operating-system
7602 @lisp
7603 @include os-config-bare-bones.texi
7604 @end lisp
7605
7606 This example should be self-describing. Some of the fields defined
7607 above, such as @code{host-name} and @code{bootloader}, are mandatory.
7608 Others, such as @code{packages} and @code{services}, can be omitted, in
7609 which case they get a default value.
7610
7611 Below we discuss the effect of some of the most important fields
7612 (@pxref{operating-system Reference}, for details about all the available
7613 fields), and how to @dfn{instantiate} the operating system using
7614 @command{guix system}.
7615
7616 @unnumberedsubsubsec Globally-Visible Packages
7617
7618 @vindex %base-packages
7619 The @code{packages} field lists packages that will be globally visible
7620 on the system, for all user accounts---i.e., in every user's @code{PATH}
7621 environment variable---in addition to the per-user profiles
7622 (@pxref{Invoking guix package}). The @var{%base-packages} variable
7623 provides all the tools one would expect for basic user and administrator
7624 tasks---including the GNU Core Utilities, the GNU Networking Utilities,
7625 the GNU Zile lightweight text editor, @command{find}, @command{grep},
7626 etc. The example above adds tcpdump to those, taken from the @code{(gnu
7627 packages admin)} module (@pxref{Package Modules}).
7628
7629 @findex specification->package
7630 Referring to packages by variable name, like @var{tcpdump} above, has
7631 the advantage of being unambiguous; it also allows typos and such to be
7632 diagnosed right away as ``unbound variables''. The downside is that one
7633 needs to know which module defines which package, and to augment the
7634 @code{use-package-modules} line accordingly. To avoid that, one can use
7635 the @code{specification->package} procedure of the @code{(gnu packages)}
7636 module, which returns the best package for a given name or name and
7637 version:
7638
7639 @lisp
7640 (use-modules (gnu packages))
7641
7642 (operating-system
7643 ;; ...
7644 (packages (append (map specification->package
7645 '("tcpdump" "htop" "gnupg@@2.0"))
7646 %base-packages)))
7647 @end lisp
7648
7649 @unnumberedsubsubsec System Services
7650
7651 @cindex services
7652 @vindex %base-services
7653 The @code{services} field lists @dfn{system services} to be made
7654 available when the system starts (@pxref{Services}).
7655 The @code{operating-system} declaration above specifies that, in
7656 addition to the basic services, we want the @command{lshd} secure shell
7657 daemon listening on port 2222 (@pxref{Networking Services,
7658 @code{lsh-service}}). Under the hood,
7659 @code{lsh-service} arranges so that @code{lshd} is started with the
7660 right command-line options, possibly with supporting configuration files
7661 generated as needed (@pxref{Defining Services}).
7662
7663 @cindex customization, of services
7664 @findex modify-services
7665 Occasionally, instead of using the base services as is, you will want to
7666 customize them. To do this, use @code{modify-services} (@pxref{Service
7667 Reference, @code{modify-services}}) to modify the list.
7668
7669 For example, suppose you want to modify @code{guix-daemon} and Mingetty
7670 (the console log-in) in the @var{%base-services} list (@pxref{Base
7671 Services, @code{%base-services}}). To do that, you can write the
7672 following in your operating system declaration:
7673
7674 @lisp
7675 (define %my-services
7676 ;; My very own list of services.
7677 (modify-services %base-services
7678 (guix-service-type config =>
7679 (guix-configuration
7680 (inherit config)
7681 (use-substitutes? #f)
7682 (extra-options '("--gc-keep-derivations"))))
7683 (mingetty-service-type config =>
7684 (mingetty-configuration
7685 (inherit config)))))
7686
7687 (operating-system
7688 ;; @dots{}
7689 (services %my-services))
7690 @end lisp
7691
7692 This changes the configuration---i.e., the service parameters---of the
7693 @code{guix-service-type} instance, and that of all the
7694 @code{mingetty-service-type} instances in the @var{%base-services} list.
7695 Observe how this is accomplished: first, we arrange for the original
7696 configuration to be bound to the identifier @code{config} in the
7697 @var{body}, and then we write the @var{body} so that it evaluates to the
7698 desired configuration. In particular, notice how we use @code{inherit}
7699 to create a new configuration which has the same values as the old
7700 configuration, but with a few modifications.
7701
7702 @cindex encrypted disk
7703 The configuration for a typical ``desktop'' usage, with an encrypted
7704 root partition, the X11 display
7705 server, GNOME and Xfce (users can choose which of these desktop
7706 environments to use at the log-in screen by pressing @kbd{F1}), network
7707 management, power management, and more, would look like this:
7708
7709 @lisp
7710 @include os-config-desktop.texi
7711 @end lisp
7712
7713 A graphical environment with a choice of lightweight window managers
7714 instead of full-blown desktop environments would look like this:
7715
7716 @lisp
7717 @include os-config-lightweight-desktop.texi
7718 @end lisp
7719
7720 @xref{Desktop Services}, for the exact list of services provided by
7721 @var{%desktop-services}. @xref{X.509 Certificates}, for background
7722 information about the @code{nss-certs} package that is used here.
7723
7724 Again, @var{%desktop-services} is just a list of service objects. If
7725 you want to remove services from there, you can do so using the
7726 procedures for list filtering (@pxref{SRFI-1 Filtering and
7727 Partitioning,,, guile, GNU Guile Reference Manual}). For instance, the
7728 following expression returns a list that contains all the services in
7729 @var{%desktop-services} minus the Avahi service:
7730
7731 @example
7732 (remove (lambda (service)
7733 (eq? (service-kind service) avahi-service-type))
7734 %desktop-services)
7735 @end example
7736
7737 @unnumberedsubsubsec Instantiating the System
7738
7739 Assuming the @code{operating-system} declaration
7740 is stored in the @file{my-system-config.scm}
7741 file, the @command{guix system reconfigure my-system-config.scm} command
7742 instantiates that configuration, and makes it the default GRUB boot
7743 entry (@pxref{Invoking guix system}).
7744
7745 The normal way to change the system configuration is by updating this
7746 file and re-running @command{guix system reconfigure}. One should never
7747 have to touch files in @file{/etc} or to run commands that modify the
7748 system state such as @command{useradd} or @command{grub-install}. In
7749 fact, you must avoid that since that would not only void your warranty
7750 but also prevent you from rolling back to previous versions of your
7751 system, should you ever need to.
7752
7753 @cindex roll-back, of the operating system
7754 Speaking of roll-back, each time you run @command{guix system
7755 reconfigure}, a new @dfn{generation} of the system is created---without
7756 modifying or deleting previous generations. Old system generations get
7757 an entry in the GRUB boot menu, allowing you to boot them in case
7758 something went wrong with the latest generation. Reassuring, no? The
7759 @command{guix system list-generations} command lists the system
7760 generations available on disk. It is also possible to roll back the
7761 system via the commands @command{guix system roll-back} and
7762 @command{guix system switch-generation}.
7763
7764 Although the command @command{guix system reconfigure} will not modify
7765 previous generations, must take care when the current generation is not
7766 the latest (e.g., after invoking @command{guix system roll-back}), since
7767 the operation might overwrite a later generation (@pxref{Invoking guix
7768 system}).
7769
7770 @unnumberedsubsubsec The Programming Interface
7771
7772 At the Scheme level, the bulk of an @code{operating-system} declaration
7773 is instantiated with the following monadic procedure (@pxref{The Store
7774 Monad}):
7775
7776 @deffn {Monadic Procedure} operating-system-derivation os
7777 Return a derivation that builds @var{os}, an @code{operating-system}
7778 object (@pxref{Derivations}).
7779
7780 The output of the derivation is a single directory that refers to all
7781 the packages, configuration files, and other supporting files needed to
7782 instantiate @var{os}.
7783 @end deffn
7784
7785 This procedure is provided by the @code{(gnu system)} module. Along
7786 with @code{(gnu services)} (@pxref{Services}), this module contains the
7787 guts of GuixSD. Make sure to visit it!
7788
7789
7790 @node operating-system Reference
7791 @subsection @code{operating-system} Reference
7792
7793 This section summarizes all the options available in
7794 @code{operating-system} declarations (@pxref{Using the Configuration
7795 System}).
7796
7797 @deftp {Data Type} operating-system
7798 This is the data type representing an operating system configuration.
7799 By that, we mean all the global system configuration, not per-user
7800 configuration (@pxref{Using the Configuration System}).
7801
7802 @table @asis
7803 @item @code{kernel} (default: @var{linux-libre})
7804 The package object of the operating system kernel to use@footnote{Currently
7805 only the Linux-libre kernel is supported. In the future, it will be
7806 possible to use the GNU@tie{}Hurd.}.
7807
7808 @item @code{kernel-arguments} (default: @code{'()})
7809 List of strings or gexps representing additional arguments to pass on
7810 the command-line of the kernel---e.g., @code{("console=ttyS0")}.
7811
7812 @item @code{bootloader}
7813 The system bootloader configuration object. @xref{GRUB Configuration}.
7814
7815 @item @code{initrd} (default: @code{base-initrd})
7816 @cindex initrd
7817 @cindex initial RAM disk
7818 A two-argument monadic procedure that returns an initial RAM disk for
7819 the Linux kernel. @xref{Initial RAM Disk}.
7820
7821 @item @code{firmware} (default: @var{%base-firmware})
7822 @cindex firmware
7823 List of firmware packages loadable by the operating system kernel.
7824
7825 The default includes firmware needed for Atheros- and Broadcom-based
7826 WiFi devices (Linux-libre modules @code{ath9k} and @code{b43-open},
7827 respectively). @xref{Hardware Considerations}, for more info on
7828 supported hardware.
7829
7830 @item @code{host-name}
7831 The host name.
7832
7833 @item @code{hosts-file}
7834 @cindex hosts file
7835 A file-like object (@pxref{G-Expressions, file-like objects}) for use as
7836 @file{/etc/hosts} (@pxref{Host Names,,, libc, The GNU C Library
7837 Reference Manual}). The default is a file with entries for
7838 @code{localhost} and @var{host-name}.
7839
7840 @item @code{mapped-devices} (default: @code{'()})
7841 A list of mapped devices. @xref{Mapped Devices}.
7842
7843 @item @code{file-systems}
7844 A list of file systems. @xref{File Systems}.
7845
7846 @item @code{swap-devices} (default: @code{'()})
7847 @cindex swap devices
7848 A list of strings identifying devices or files to be used for ``swap
7849 space'' (@pxref{Memory Concepts,,, libc, The GNU C Library Reference
7850 Manual}). For example, @code{'("/dev/sda3")} or @code{'("/swapfile")}.
7851 It is possible to specify a swap file in a file system on a mapped
7852 device, provided that the necessary device mapping and file system are
7853 also specified. @xref{Mapped Devices} and @ref{File Systems}.
7854
7855 @item @code{users} (default: @code{%base-user-accounts})
7856 @itemx @code{groups} (default: @var{%base-groups})
7857 List of user accounts and groups. @xref{User Accounts}.
7858
7859 @item @code{skeletons} (default: @code{(default-skeletons)})
7860 A list target file name/file-like object tuples (@pxref{G-Expressions,
7861 file-like objects}). These are the skeleton files that will be added to
7862 the home directory of newly-created user accounts.
7863
7864 For instance, a valid value may look like this:
7865
7866 @example
7867 `((".bashrc" ,(plain-file "bashrc" "echo Hello\n"))
7868 (".guile" ,(plain-file "guile"
7869 "(use-modules (ice-9 readline))
7870 (activate-readline)")))
7871 @end example
7872
7873 @item @code{issue} (default: @var{%default-issue})
7874 A string denoting the contents of the @file{/etc/issue} file, which is
7875 displayed when users log in on a text console.
7876
7877 @item @code{packages} (default: @var{%base-packages})
7878 The set of packages installed in the global profile, which is accessible
7879 at @file{/run/current-system/profile}.
7880
7881 The default set includes core utilities and it is good practice to
7882 install non-core utilities in user profiles (@pxref{Invoking guix
7883 package}).
7884
7885 @item @code{timezone}
7886 A timezone identifying string---e.g., @code{"Europe/Paris"}.
7887
7888 You can run the @command{tzselect} command to find out which timezone
7889 string corresponds to your region. Choosing an invalid timezone name
7890 causes @command{guix system} to fail.
7891
7892 @item @code{locale} (default: @code{"en_US.utf8"})
7893 The name of the default locale (@pxref{Locale Names,,, libc, The GNU C
7894 Library Reference Manual}). @xref{Locales}, for more information.
7895
7896 @item @code{locale-definitions} (default: @var{%default-locale-definitions})
7897 The list of locale definitions to be compiled and that may be used at
7898 run time. @xref{Locales}.
7899
7900 @item @code{locale-libcs} (default: @code{(list @var{glibc})})
7901 The list of GNU@tie{}libc packages whose locale data and tools are used
7902 to build the locale definitions. @xref{Locales}, for compatibility
7903 considerations that justify this option.
7904
7905 @item @code{name-service-switch} (default: @var{%default-nss})
7906 Configuration of the libc name service switch (NSS)---a
7907 @code{<name-service-switch>} object. @xref{Name Service Switch}, for
7908 details.
7909
7910 @item @code{services} (default: @var{%base-services})
7911 A list of service objects denoting system services. @xref{Services}.
7912
7913 @item @code{pam-services} (default: @code{(base-pam-services)})
7914 @cindex PAM
7915 @cindex pluggable authentication modules
7916 Linux @dfn{pluggable authentication module} (PAM) services.
7917 @c FIXME: Add xref to PAM services section.
7918
7919 @item @code{setuid-programs} (default: @var{%setuid-programs})
7920 List of string-valued G-expressions denoting setuid programs.
7921 @xref{Setuid Programs}.
7922
7923 @item @code{sudoers-file} (default: @var{%sudoers-specification})
7924 @cindex sudoers file
7925 The contents of the @file{/etc/sudoers} file as a file-like object
7926 (@pxref{G-Expressions, @code{local-file} and @code{plain-file}}).
7927
7928 This file specifies which users can use the @command{sudo} command, what
7929 they are allowed to do, and what privileges they may gain. The default
7930 is that only @code{root} and members of the @code{wheel} group may use
7931 @code{sudo}.
7932
7933 @end table
7934 @end deftp
7935
7936 @node File Systems
7937 @subsection File Systems
7938
7939 The list of file systems to be mounted is specified in the
7940 @code{file-systems} field of the operating system declaration
7941 (@pxref{Using the Configuration System}). Each file system is declared
7942 using the @code{file-system} form, like this:
7943
7944 @example
7945 (file-system
7946 (mount-point "/home")
7947 (device "/dev/sda3")
7948 (type "ext4"))
7949 @end example
7950
7951 As usual, some of the fields are mandatory---those shown in the example
7952 above---while others can be omitted. These are described below.
7953
7954 @deftp {Data Type} file-system
7955 Objects of this type represent file systems to be mounted. They
7956 contain the following members:
7957
7958 @table @asis
7959 @item @code{type}
7960 This is a string specifying the type of the file system---e.g.,
7961 @code{"ext4"}.
7962
7963 @item @code{mount-point}
7964 This designates the place where the file system is to be mounted.
7965
7966 @item @code{device}
7967 This names the ``source'' of the file system. By default it is the name
7968 of a node under @file{/dev}, but its meaning depends on the @code{title}
7969 field described below.
7970
7971 @item @code{title} (default: @code{'device})
7972 This is a symbol that specifies how the @code{device} field is to be
7973 interpreted.
7974
7975 When it is the symbol @code{device}, then the @code{device} field is
7976 interpreted as a file name; when it is @code{label}, then @code{device}
7977 is interpreted as a partition label name; when it is @code{uuid},
7978 @code{device} is interpreted as a partition unique identifier (UUID).
7979
7980 UUIDs may be converted from their string representation (as shown by the
7981 @command{tune2fs -l} command) using the @code{uuid} form@footnote{The
7982 @code{uuid} form expects 16-byte UUIDs as defined in
7983 @uref{https://tools.ietf.org/html/rfc4122, RFC@tie{}4122}. This is the
7984 form of UUID used by the ext2 family of file systems and others, but it
7985 is different from ``UUIDs'' found in FAT file systems, for instance.},
7986 like this:
7987
7988 @example
7989 (file-system
7990 (mount-point "/home")
7991 (type "ext4")
7992 (title 'uuid)
7993 (device (uuid "4dab5feb-d176-45de-b287-9b0a6e4c01cb")))
7994 @end example
7995
7996 The @code{label} and @code{uuid} options offer a way to refer to disk
7997 partitions without having to hard-code their actual device
7998 name@footnote{Note that, while it is tempting to use
7999 @file{/dev/disk/by-uuid} and similar device names to achieve the same
8000 result, this is not recommended: These special device nodes are created
8001 by the udev daemon and may be unavailable at the time the device is
8002 mounted.}.
8003
8004 However, when the source of a file system is a mapped device (@pxref{Mapped
8005 Devices}), its @code{device} field @emph{must} refer to the mapped
8006 device name---e.g., @file{/dev/mapper/root-partition}---and consequently
8007 @code{title} must be set to @code{'device}. This is required so that
8008 the system knows that mounting the file system depends on having the
8009 corresponding device mapping established.
8010
8011 @item @code{flags} (default: @code{'()})
8012 This is a list of symbols denoting mount flags. Recognized flags
8013 include @code{read-only}, @code{bind-mount}, @code{no-dev} (disallow
8014 access to special files), @code{no-suid} (ignore setuid and setgid
8015 bits), and @code{no-exec} (disallow program execution.)
8016
8017 @item @code{options} (default: @code{#f})
8018 This is either @code{#f}, or a string denoting mount options.
8019
8020 @item @code{mount?} (default: @code{#t})
8021 This value indicates whether to automatically mount the file system when
8022 the system is brought up. When set to @code{#f}, the file system gets
8023 an entry in @file{/etc/fstab} (read by the @command{mount} command) but
8024 is not automatically mounted.
8025
8026 @item @code{needed-for-boot?} (default: @code{#f})
8027 This Boolean value indicates whether the file system is needed when
8028 booting. If that is true, then the file system is mounted when the
8029 initial RAM disk (initrd) is loaded. This is always the case, for
8030 instance, for the root file system.
8031
8032 @item @code{check?} (default: @code{#t})
8033 This Boolean indicates whether the file system needs to be checked for
8034 errors before being mounted.
8035
8036 @item @code{create-mount-point?} (default: @code{#f})
8037 When true, the mount point is created if it does not exist yet.
8038
8039 @item @code{dependencies} (default: @code{'()})
8040 This is a list of @code{<file-system>} or @code{<mapped-device>} objects
8041 representing file systems that must be mounted or mapped devices that
8042 must be opened before (and unmounted or closed after) this one.
8043
8044 As an example, consider a hierarchy of mounts: @file{/sys/fs/cgroup} is
8045 a dependency of @file{/sys/fs/cgroup/cpu} and
8046 @file{/sys/fs/cgroup/memory}.
8047
8048 Another example is a file system that depends on a mapped device, for
8049 example for an encrypted partition (@pxref{Mapped Devices}).
8050 @end table
8051 @end deftp
8052
8053 The @code{(gnu system file-systems)} exports the following useful
8054 variables.
8055
8056 @defvr {Scheme Variable} %base-file-systems
8057 These are essential file systems that are required on normal systems,
8058 such as @var{%pseudo-terminal-file-system} and @var{%immutable-store} (see
8059 below.) Operating system declarations should always contain at least
8060 these.
8061 @end defvr
8062
8063 @defvr {Scheme Variable} %pseudo-terminal-file-system
8064 This is the file system to be mounted as @file{/dev/pts}. It supports
8065 @dfn{pseudo-terminals} created @i{via} @code{openpty} and similar
8066 functions (@pxref{Pseudo-Terminals,,, libc, The GNU C Library Reference
8067 Manual}). Pseudo-terminals are used by terminal emulators such as
8068 @command{xterm}.
8069 @end defvr
8070
8071 @defvr {Scheme Variable} %shared-memory-file-system
8072 This file system is mounted as @file{/dev/shm} and is used to support
8073 memory sharing across processes (@pxref{Memory-mapped I/O,
8074 @code{shm_open},, libc, The GNU C Library Reference Manual}).
8075 @end defvr
8076
8077 @defvr {Scheme Variable} %immutable-store
8078 This file system performs a read-only ``bind mount'' of
8079 @file{/gnu/store}, making it read-only for all the users including
8080 @code{root}. This prevents against accidental modification by software
8081 running as @code{root} or by system administrators.
8082
8083 The daemon itself is still able to write to the store: it remounts it
8084 read-write in its own ``name space.''
8085 @end defvr
8086
8087 @defvr {Scheme Variable} %binary-format-file-system
8088 The @code{binfmt_misc} file system, which allows handling of arbitrary
8089 executable file types to be delegated to user space. This requires the
8090 @code{binfmt.ko} kernel module to be loaded.
8091 @end defvr
8092
8093 @defvr {Scheme Variable} %fuse-control-file-system
8094 The @code{fusectl} file system, which allows unprivileged users to mount
8095 and unmount user-space FUSE file systems. This requires the
8096 @code{fuse.ko} kernel module to be loaded.
8097 @end defvr
8098
8099 @node Mapped Devices
8100 @subsection Mapped Devices
8101
8102 @cindex device mapping
8103 @cindex mapped devices
8104 The Linux kernel has a notion of @dfn{device mapping}: a block device,
8105 such as a hard disk partition, can be @dfn{mapped} into another device,
8106 usually in @code{/dev/mapper/},
8107 with additional processing over the data that flows through
8108 it@footnote{Note that the GNU@tie{}Hurd makes no difference between the
8109 concept of a ``mapped device'' and that of a file system: both boil down
8110 to @emph{translating} input/output operations made on a file to
8111 operations on its backing store. Thus, the Hurd implements mapped
8112 devices, like file systems, using the generic @dfn{translator} mechanism
8113 (@pxref{Translators,,, hurd, The GNU Hurd Reference Manual}).}. A
8114 typical example is encryption device mapping: all writes to the mapped
8115 device are encrypted, and all reads are deciphered, transparently.
8116 Guix extends this notion by considering any device or set of devices that
8117 are @dfn{transformed} in some way to create a new device; for instance,
8118 RAID devices are obtained by @dfn{assembling} several other devices, such
8119 as hard disks or partitions, into a new one that behaves as one partition.
8120 Other examples, not yet implemented, are LVM logical volumes.
8121
8122 Mapped devices are declared using the @code{mapped-device} form,
8123 defined as follows; for examples, see below.
8124
8125 @deftp {Data Type} mapped-device
8126 Objects of this type represent device mappings that will be made when
8127 the system boots up.
8128
8129 @table @code
8130 @item source
8131 This is either a string specifying the name of the block device to be mapped,
8132 such as @code{"/dev/sda3"}, or a list of such strings when several devices
8133 need to be assembled for creating a new one.
8134
8135 @item target
8136 This string specifies the name of the resulting mapped device. For
8137 kernel mappers such as encrypted devices of type @code{luks-device-mapping},
8138 specifying @code{"my-partition"} leads to the creation of
8139 the @code{"/dev/mapper/my-partition"} device.
8140 For RAID devices of type @code{raid-device-mapping}, the full device name
8141 such as @code{"/dev/md0"} needs to be given.
8142
8143 @item type
8144 This must be a @code{mapped-device-kind} object, which specifies how
8145 @var{source} is mapped to @var{target}.
8146 @end table
8147 @end deftp
8148
8149 @defvr {Scheme Variable} luks-device-mapping
8150 This defines LUKS block device encryption using the @command{cryptsetup}
8151 command from the package with the same name. It relies on the
8152 @code{dm-crypt} Linux kernel module.
8153 @end defvr
8154
8155 @defvr {Scheme Variable} raid-device-mapping
8156 This defines a RAID device, which is assembled using the @code{mdadm}
8157 command from the package with the same name. It requires a Linux kernel
8158 module for the appropriate RAID level to be loaded, such as @code{raid456}
8159 for RAID-4, RAID-5 or RAID-6, or @code{raid10} for RAID-10.
8160 @end defvr
8161
8162 @cindex disk encryption
8163 @cindex LUKS
8164 The following example specifies a mapping from @file{/dev/sda3} to
8165 @file{/dev/mapper/home} using LUKS---the
8166 @url{https://gitlab.com/cryptsetup/cryptsetup,Linux Unified Key Setup}, a
8167 standard mechanism for disk encryption.
8168 The @file{/dev/mapper/home}
8169 device can then be used as the @code{device} of a @code{file-system}
8170 declaration (@pxref{File Systems}).
8171
8172 @example
8173 (mapped-device
8174 (source "/dev/sda3")
8175 (target "home")
8176 (type luks-device-mapping))
8177 @end example
8178
8179 Alternatively, to become independent of device numbering, one may obtain
8180 the LUKS UUID (@dfn{unique identifier}) of the source device by a
8181 command like:
8182
8183 @example
8184 cryptsetup luksUUID /dev/sda3
8185 @end example
8186
8187 and use it as follows:
8188
8189 @example
8190 (mapped-device
8191 (source (uuid "cb67fc72-0d54-4c88-9d4b-b225f30b0f44"))
8192 (target "home")
8193 (type luks-device-mapping))
8194 @end example
8195
8196 @cindex swap encryption
8197 It is also desirable to encrypt swap space, since swap space may contain
8198 sensitive data. One way to accomplish that is to use a swap file in a
8199 file system on a device mapped via LUKS encryption. In this way, the
8200 swap file is encrypted because the entire device is encrypted.
8201 @xref{Preparing for Installation,,Disk Partitioning}, for an example.
8202
8203 A RAID device formed of the partitions @file{/dev/sda1} and @file{/dev/sdb1}
8204 may be declared as follows:
8205
8206 @example
8207 (mapped-device
8208 (source (list "/dev/sda1" "/dev/sdb1"))
8209 (target "/dev/md0")
8210 (type raid-device-mapping))
8211 @end example
8212
8213 The @file{/dev/md0} device can then be used as the @code{device} of a
8214 @code{file-system} declaration (@pxref{File Systems}).
8215 Note that the RAID level need not be given; it is chosen during the
8216 initial creation and formatting of the RAID device and is determined
8217 automatically later.
8218
8219
8220 @node User Accounts
8221 @subsection User Accounts
8222
8223 @cindex users
8224 @cindex accounts
8225 @cindex user accounts
8226 User accounts and groups are entirely managed through the
8227 @code{operating-system} declaration. They are specified with the
8228 @code{user-account} and @code{user-group} forms:
8229
8230 @example
8231 (user-account
8232 (name "alice")
8233 (group "users")
8234 (supplementary-groups '("wheel" ;allow use of sudo, etc.
8235 "audio" ;sound card
8236 "video" ;video devices such as webcams
8237 "cdrom")) ;the good ol' CD-ROM
8238 (comment "Bob's sister")
8239 (home-directory "/home/alice"))
8240 @end example
8241
8242 When booting or upon completion of @command{guix system reconfigure},
8243 the system ensures that only the user accounts and groups specified in
8244 the @code{operating-system} declaration exist, and with the specified
8245 properties. Thus, account or group creations or modifications made by
8246 directly invoking commands such as @command{useradd} are lost upon
8247 reconfiguration or reboot. This ensures that the system remains exactly
8248 as declared.
8249
8250 @deftp {Data Type} user-account
8251 Objects of this type represent user accounts. The following members may
8252 be specified:
8253
8254 @table @asis
8255 @item @code{name}
8256 The name of the user account.
8257
8258 @item @code{group}
8259 @cindex groups
8260 This is the name (a string) or identifier (a number) of the user group
8261 this account belongs to.
8262
8263 @item @code{supplementary-groups} (default: @code{'()})
8264 Optionally, this can be defined as a list of group names that this
8265 account belongs to.
8266
8267 @item @code{uid} (default: @code{#f})
8268 This is the user ID for this account (a number), or @code{#f}. In the
8269 latter case, a number is automatically chosen by the system when the
8270 account is created.
8271
8272 @item @code{comment} (default: @code{""})
8273 A comment about the account, such as the account owner's full name.
8274
8275 @item @code{home-directory}
8276 This is the name of the home directory for the account.
8277
8278 @item @code{create-home-directory?} (default: @code{#t})
8279 Indicates whether the home directory of this account should be created
8280 if it does not exist yet.
8281
8282 @item @code{shell} (default: Bash)
8283 This is a G-expression denoting the file name of a program to be used as
8284 the shell (@pxref{G-Expressions}).
8285
8286 @item @code{system?} (default: @code{#f})
8287 This Boolean value indicates whether the account is a ``system''
8288 account. System accounts are sometimes treated specially; for instance,
8289 graphical login managers do not list them.
8290
8291 @anchor{user-account-password}
8292 @item @code{password} (default: @code{#f})
8293 You would normally leave this field to @code{#f}, initialize user
8294 passwords as @code{root} with the @command{passwd} command, and then let
8295 users change it with @command{passwd}. Passwords set with
8296 @command{passwd} are of course preserved across reboot and
8297 reconfiguration.
8298
8299 If you @emph{do} want to have a preset password for an account, then
8300 this field must contain the encrypted password, as a string.
8301 @xref{crypt,,, libc, The GNU C Library Reference Manual}, for more information
8302 on password encryption, and @ref{Encryption,,, guile, GNU Guile Reference
8303 Manual}, for information on Guile's @code{crypt} procedure.
8304
8305 @end table
8306 @end deftp
8307
8308 @cindex groups
8309 User group declarations are even simpler:
8310
8311 @example
8312 (user-group (name "students"))
8313 @end example
8314
8315 @deftp {Data Type} user-group
8316 This type is for, well, user groups. There are just a few fields:
8317
8318 @table @asis
8319 @item @code{name}
8320 The name of the group.
8321
8322 @item @code{id} (default: @code{#f})
8323 The group identifier (a number). If @code{#f}, a new number is
8324 automatically allocated when the group is created.
8325
8326 @item @code{system?} (default: @code{#f})
8327 This Boolean value indicates whether the group is a ``system'' group.
8328 System groups have low numerical IDs.
8329
8330 @item @code{password} (default: @code{#f})
8331 What, user groups can have a password? Well, apparently yes. Unless
8332 @code{#f}, this field specifies the password of the group.
8333
8334 @end table
8335 @end deftp
8336
8337 For convenience, a variable lists all the basic user groups one may
8338 expect:
8339
8340 @defvr {Scheme Variable} %base-groups
8341 This is the list of basic user groups that users and/or packages expect
8342 to be present on the system. This includes groups such as ``root'',
8343 ``wheel'', and ``users'', as well as groups used to control access to
8344 specific devices such as ``audio'', ``disk'', and ``cdrom''.
8345 @end defvr
8346
8347 @defvr {Scheme Variable} %base-user-accounts
8348 This is the list of basic system accounts that programs may expect to
8349 find on a GNU/Linux system, such as the ``nobody'' account.
8350
8351 Note that the ``root'' account is not included here. It is a
8352 special-case and is automatically added whether or not it is specified.
8353 @end defvr
8354
8355 @node Locales
8356 @subsection Locales
8357
8358 @cindex locale
8359 A @dfn{locale} defines cultural conventions for a particular language
8360 and region of the world (@pxref{Locales,,, libc, The GNU C Library
8361 Reference Manual}). Each locale has a name that typically has the form
8362 @code{@var{language}_@var{territory}.@var{codeset}}---e.g.,
8363 @code{fr_LU.utf8} designates the locale for the French language, with
8364 cultural conventions from Luxembourg, and using the UTF-8 encoding.
8365
8366 @cindex locale definition
8367 Usually, you will want to specify the default locale for the machine
8368 using the @code{locale} field of the @code{operating-system} declaration
8369 (@pxref{operating-system Reference, @code{locale}}).
8370
8371 The selected locale is automatically added to the @dfn{locale
8372 definitions} known to the system if needed, with its codeset inferred
8373 from its name---e.g., @code{bo_CN.utf8} will be assumed to use the
8374 @code{UTF-8} codeset. Additional locale definitions can be specified in
8375 the @code{locale-definitions} slot of @code{operating-system}---this is
8376 useful, for instance, if the codeset could not be inferred from the
8377 locale name. The default set of locale definitions includes some widely
8378 used locales, but not all the available locales, in order to save space.
8379
8380 For instance, to add the North Frisian locale for Germany, the value of
8381 that field may be:
8382
8383 @example
8384 (cons (locale-definition
8385 (name "fy_DE.utf8") (source "fy_DE"))
8386 %default-locale-definitions)
8387 @end example
8388
8389 Likewise, to save space, one might want @code{locale-definitions} to
8390 list only the locales that are actually used, as in:
8391
8392 @example
8393 (list (locale-definition
8394 (name "ja_JP.eucjp") (source "ja_JP")
8395 (charset "EUC-JP")))
8396 @end example
8397
8398 @vindex LOCPATH
8399 The compiled locale definitions are available at
8400 @file{/run/current-system/locale/X.Y}, where @code{X.Y} is the libc
8401 version, which is the default location where the GNU@tie{}libc provided
8402 by Guix looks for locale data. This can be overridden using the
8403 @code{LOCPATH} environment variable (@pxref{locales-and-locpath,
8404 @code{LOCPATH} and locale packages}).
8405
8406 The @code{locale-definition} form is provided by the @code{(gnu system
8407 locale)} module. Details are given below.
8408
8409 @deftp {Data Type} locale-definition
8410 This is the data type of a locale definition.
8411
8412 @table @asis
8413
8414 @item @code{name}
8415 The name of the locale. @xref{Locale Names,,, libc, The GNU C Library
8416 Reference Manual}, for more information on locale names.
8417
8418 @item @code{source}
8419 The name of the source for that locale. This is typically the
8420 @code{@var{language}_@var{territory}} part of the locale name.
8421
8422 @item @code{charset} (default: @code{"UTF-8"})
8423 The ``character set'' or ``code set'' for that locale,
8424 @uref{http://www.iana.org/assignments/character-sets, as defined by
8425 IANA}.
8426
8427 @end table
8428 @end deftp
8429
8430 @defvr {Scheme Variable} %default-locale-definitions
8431 A list of commonly used UTF-8 locales, used as the default
8432 value of the @code{locale-definitions} field of @code{operating-system}
8433 declarations.
8434
8435 @cindex locale name
8436 @cindex normalized codeset in locale names
8437 These locale definitions use the @dfn{normalized codeset} for the part
8438 that follows the dot in the name (@pxref{Using gettextized software,
8439 normalized codeset,, libc, The GNU C Library Reference Manual}). So for
8440 instance it has @code{uk_UA.utf8} but @emph{not}, say,
8441 @code{uk_UA.UTF-8}.
8442 @end defvr
8443
8444 @subsubsection Locale Data Compatibility Considerations
8445
8446 @cindex incompatibility, of locale data
8447 @code{operating-system} declarations provide a @code{locale-libcs} field
8448 to specify the GNU@tie{}libc packages that are used to compile locale
8449 declarations (@pxref{operating-system Reference}). ``Why would I
8450 care?'', you may ask. Well, it turns out that the binary format of
8451 locale data is occasionally incompatible from one libc version to
8452 another.
8453
8454 @c See <https://sourceware.org/ml/libc-alpha/2015-09/msg00575.html>
8455 @c and <https://lists.gnu.org/archive/html/guix-devel/2015-08/msg00737.html>.
8456 For instance, a program linked against libc version 2.21 is unable to
8457 read locale data produced with libc 2.22; worse, that program
8458 @emph{aborts} instead of simply ignoring the incompatible locale
8459 data@footnote{Versions 2.23 and later of GNU@tie{}libc will simply skip
8460 the incompatible locale data, which is already an improvement.}.
8461 Similarly, a program linked against libc 2.22 can read most, but not
8462 all, of the locale data from libc 2.21 (specifically, @code{LC_COLLATE}
8463 data is incompatible); thus calls to @code{setlocale} may fail, but
8464 programs will not abort.
8465
8466 The ``problem'' in GuixSD is that users have a lot of freedom: They can
8467 choose whether and when to upgrade software in their profiles, and might
8468 be using a libc version different from the one the system administrator
8469 used to build the system-wide locale data.
8470
8471 Fortunately, unprivileged users can also install their own locale data
8472 and define @var{GUIX_LOCPATH} accordingly (@pxref{locales-and-locpath,
8473 @code{GUIX_LOCPATH} and locale packages}).
8474
8475 Still, it is best if the system-wide locale data at
8476 @file{/run/current-system/locale} is built for all the libc versions
8477 actually in use on the system, so that all the programs can access
8478 it---this is especially crucial on a multi-user system. To do that, the
8479 administrator can specify several libc packages in the
8480 @code{locale-libcs} field of @code{operating-system}:
8481
8482 @example
8483 (use-package-modules base)
8484
8485 (operating-system
8486 ;; @dots{}
8487 (locale-libcs (list glibc-2.21 (canonical-package glibc))))
8488 @end example
8489
8490 This example would lead to a system containing locale definitions for
8491 both libc 2.21 and the current version of libc in
8492 @file{/run/current-system/locale}.
8493
8494
8495 @node Services
8496 @subsection Services
8497
8498 @cindex system services
8499 An important part of preparing an @code{operating-system} declaration is
8500 listing @dfn{system services} and their configuration (@pxref{Using the
8501 Configuration System}). System services are typically daemons launched
8502 when the system boots, or other actions needed at that time---e.g.,
8503 configuring network access.
8504
8505 GuixSD has a broad definition of ``service'' (@pxref{Service
8506 Composition}), but many services are managed by the GNU@tie{}Shepherd
8507 (@pxref{Shepherd Services}). On a running system, the @command{herd}
8508 command allows you to list the available services, show their status,
8509 start and stop them, or do other specific operations (@pxref{Jump
8510 Start,,, shepherd, The GNU Shepherd Manual}). For example:
8511
8512 @example
8513 # herd status
8514 @end example
8515
8516 The above command, run as @code{root}, lists the currently defined
8517 services. The @command{herd doc} command shows a synopsis of the given
8518 service:
8519
8520 @example
8521 # herd doc nscd
8522 Run libc's name service cache daemon (nscd).
8523 @end example
8524
8525 The @command{start}, @command{stop}, and @command{restart} sub-commands
8526 have the effect you would expect. For instance, the commands below stop
8527 the nscd service and restart the Xorg display server:
8528
8529 @example
8530 # herd stop nscd
8531 Service nscd has been stopped.
8532 # herd restart xorg-server
8533 Service xorg-server has been stopped.
8534 Service xorg-server has been started.
8535 @end example
8536
8537 The following sections document the available services, starting with
8538 the core services, that may be used in an @code{operating-system}
8539 declaration.
8540
8541 @menu
8542 * Base Services:: Essential system services.
8543 * Scheduled Job Execution:: The mcron service.
8544 * Log Rotation:: The rottlog service.
8545 * Networking Services:: Network setup, SSH daemon, etc.
8546 * X Window:: Graphical display.
8547 * Printing Services:: Local and remote printer support.
8548 * Desktop Services:: D-Bus and desktop services.
8549 * Database Services:: SQL databases.
8550 * Mail Services:: IMAP, POP3, SMTP, and all that.
8551 * Messaging Services:: Messaging services.
8552 * Kerberos Services:: Kerberos services.
8553 * Web Services:: Web servers.
8554 * VPN Services:: VPN daemons.
8555 * Network File System:: NFS related services.
8556 * Continuous Integration:: The Cuirass service.
8557 * Power management Services:: The TLP tool.
8558 * Miscellaneous Services:: Other services.
8559 @end menu
8560
8561 @node Base Services
8562 @subsubsection Base Services
8563
8564 The @code{(gnu services base)} module provides definitions for the basic
8565 services that one expects from the system. The services exported by
8566 this module are listed below.
8567
8568 @defvr {Scheme Variable} %base-services
8569 This variable contains a list of basic services (@pxref{Service Types
8570 and Services}, for more information on service objects) one would
8571 expect from the system: a login service (mingetty) on each tty, syslogd,
8572 the libc name service cache daemon (nscd), the udev device manager, and
8573 more.
8574
8575 This is the default value of the @code{services} field of
8576 @code{operating-system} declarations. Usually, when customizing a
8577 system, you will want to append services to @var{%base-services}, like
8578 this:
8579
8580 @example
8581 (cons* (avahi-service) (lsh-service) %base-services)
8582 @end example
8583 @end defvr
8584
8585 @defvr {Scheme Variable} special-files-service-type
8586 This is the service that sets up ``special files'' such as
8587 @file{/bin/sh}; an instance of it is part of @code{%base-services}.
8588
8589 The value associated with @code{special-files-service-type} services
8590 must be a list of tuples where the first element is the ``special file''
8591 and the second element is its target. By default it is:
8592
8593 @cindex @file{/bin/sh}
8594 @cindex @file{sh}, in @file{/bin}
8595 @example
8596 `(("/bin/sh" ,(file-append @var{bash} "/bin/sh")))
8597 @end example
8598
8599 @cindex @file{/usr/bin/env}
8600 @cindex @file{env}, in @file{/usr/bin}
8601 If you want to add, say, @code{/usr/bin/env} to your system, you can
8602 change it to:
8603
8604 @example
8605 `(("/bin/sh" ,(file-append @var{bash} "/bin/sh"))
8606 ("/usr/bin/env" ,(file-append @var{coreutils} "/bin/env")))
8607 @end example
8608
8609 Since this is part of @code{%base-services}, you can use
8610 @code{modify-services} to customize the set of special files
8611 (@pxref{Service Reference, @code{modify-services}}). But the simple way
8612 to add a special file is @i{via} the @code{extra-special-file} procedure
8613 (see below.)
8614 @end defvr
8615
8616 @deffn {Scheme Procedure} extra-special-file @var{file} @var{target}
8617 Use @var{target} as the ``special file'' @var{file}.
8618
8619 For example, adding the following lines to the @code{services} field of
8620 your operating system declaration leads to a @file{/usr/bin/env}
8621 symlink:
8622
8623 @example
8624 (extra-special-file "/usr/bin/env"
8625 (file-append coreutils "/bin/env"))
8626 @end example
8627 @end deffn
8628
8629 @deffn {Scheme Procedure} host-name-service @var{name}
8630 Return a service that sets the host name to @var{name}.
8631 @end deffn
8632
8633 @deffn {Scheme Procedure} login-service @var{config}
8634 Return a service to run login according to @var{config}, a
8635 @code{<login-configuration>} object, which specifies the message of the day,
8636 among other things.
8637 @end deffn
8638
8639 @deftp {Data Type} login-configuration
8640 This is the data type representing the configuration of login.
8641
8642 @table @asis
8643
8644 @item @code{motd}
8645 @cindex message of the day
8646 A file-like object containing the ``message of the day''.
8647
8648 @item @code{allow-empty-passwords?} (default: @code{#t})
8649 Allow empty passwords by default so that first-time users can log in when
8650 the 'root' account has just been created.
8651
8652 @end table
8653 @end deftp
8654
8655 @deffn {Scheme Procedure} mingetty-service @var{config}
8656 Return a service to run mingetty according to @var{config}, a
8657 @code{<mingetty-configuration>} object, which specifies the tty to run, among
8658 other things.
8659 @end deffn
8660
8661 @deftp {Data Type} mingetty-configuration
8662 This is the data type representing the configuration of Mingetty, which
8663 provides the default implementation of virtual console log-in.
8664
8665 @table @asis
8666
8667 @item @code{tty}
8668 The name of the console this Mingetty runs on---e.g., @code{"tty1"}.
8669
8670 @item @code{auto-login} (default: @code{#f})
8671 When true, this field must be a string denoting the user name under
8672 which the system automatically logs in. When it is @code{#f}, a
8673 user name and password must be entered to log in.
8674
8675 @item @code{login-program} (default: @code{#f})
8676 This must be either @code{#f}, in which case the default log-in program
8677 is used (@command{login} from the Shadow tool suite), or a gexp denoting
8678 the name of the log-in program.
8679
8680 @item @code{login-pause?} (default: @code{#f})
8681 When set to @code{#t} in conjunction with @var{auto-login}, the user
8682 will have to press a key before the log-in shell is launched.
8683
8684 @item @code{mingetty} (default: @var{mingetty})
8685 The Mingetty package to use.
8686
8687 @end table
8688 @end deftp
8689
8690 @deffn {Scheme Procedure} agetty-service @var{config}
8691 Return a service to run agetty according to @var{config}, an
8692 @code{<agetty-configuration>} object, which specifies the tty to run,
8693 among other things.
8694 @end deffn
8695
8696 @deftp {Data Type} agetty-configuration
8697 This is the data type representing the configuration of agetty, which
8698 implements virtual and serial console log-in. See the @code{agetty(8)}
8699 man page for more information.
8700
8701 @table @asis
8702
8703 @item @code{tty}
8704 The name of the console this agetty runs on, as a string---e.g.,
8705 @code{"ttyS0"}. This argument is mandatory.
8706
8707 @item @code{baud-rate} (default: @code{#f})
8708 A string containing a comma-separated list of one or more baud rates, in
8709 descending order.
8710
8711 @item @code{term} (default: @code{#f})
8712 A string containing the value used for the @code{TERM} environment
8713 variable.
8714
8715 @item @code{eight-bits?} (default: @code{#f})
8716 When @code{#t}, the tty is assumed to be 8-bit clean, and parity detection is
8717 disabled.
8718
8719 @item @code{auto-login} (default: @code{#f})
8720 When passed a login name, as a string, the specified user will be logged
8721 in automatically without prompting for their login name or password.
8722
8723 @item @code{no-reset?} (default: @code{#f})
8724 When @code{#t}, don't reset terminal cflags (control modes).
8725
8726 @item @code{host} (default: @code{#f})
8727 This accepts a string containing the "login_host", which will be written
8728 into the @file{/var/run/utmpx} file.
8729
8730 @item @code{remote?} (default: @code{#f})
8731 When set to @code{#t} in conjunction with @var{host}, this will add an
8732 @code{-r} fakehost option to the command line of the login program
8733 specified in @var{login-program}.
8734
8735 @item @code{flow-control?} (default: @code{#f})
8736 When set to @code{#t}, enable hardware (RTS/CTS) flow control.
8737
8738 @item @code{no-issue?} (default: @code{#f})
8739 When set to @code{#t}, the contents of the @file{/etc/issue} file will
8740 not be displayed before presenting the login prompt.
8741
8742 @item @code{init-string} (default: @code{#f})
8743 This accepts a string that will be sent to the tty or modem before
8744 sending anything else. It can be used to initialize a modem.
8745
8746 @item @code{no-clear?} (default: @code{#f})
8747 When set to @code{#t}, agetty will not clear the screen before showing
8748 the login prompt.
8749
8750 @item @code{login-program} (default: (file-append shadow "/bin/login"))
8751 This must be either a gexp denoting the name of a log-in program, or
8752 unset, in which case the default value is the @command{login} from the
8753 Shadow tool suite.
8754
8755 @item @code{local-line} (default: @code{#f})
8756 Control the CLOCAL line flag. This accepts one of three symbols as
8757 arguments, @code{'auto}, @code{'always}, or @code{'never}. If @code{#f},
8758 the default value chosen by agetty is @code{'auto}.
8759
8760 @item @code{extract-baud?} (default: @code{#f})
8761 When set to @code{#t}, instruct agetty to try to extract the baud rate
8762 from the status messages produced by certain types of modems.
8763
8764 @item @code{skip-login?} (default: @code{#f})
8765 When set to @code{#t}, do not prompt the user for a login name. This
8766 can be used with @var{login-program} field to use non-standard login
8767 systems.
8768
8769 @item @code{no-newline?} (default: @code{#f})
8770 When set to @code{#t}, do not print a newline before printing the
8771 @file{/etc/issue} file.
8772
8773 @c Is this dangerous only when used with login-program, or always?
8774 @item @code{login-options} (default: @code{#f})
8775 This option accepts a string containing options that are passed to the
8776 login program. When used with the @var{login-program}, be aware that a
8777 malicious user could try to enter a login name containing embedded
8778 options that could be parsed by the login program.
8779
8780 @item @code{login-pause} (default: @code{#f})
8781 When set to @code{#t}, wait for any key before showing the login prompt.
8782 This can be used in conjunction with @var{auto-login} to save memory by
8783 lazily spawning shells.
8784
8785 @item @code{chroot} (default: @code{#f})
8786 Change root to the specified directory. This option accepts a directory
8787 path as a string.
8788
8789 @item @code{hangup?} (default: @code{#f})
8790 Use the Linux system call @code{vhangup} to do a virtual hangup of the
8791 specified terminal.
8792
8793 @item @code{keep-baud?} (default: @code{#f})
8794 When set to @code{#t}, try to keep the existing baud rate. The baud
8795 rates from @var{baud-rate} are used when agetty receives a @key{BREAK}
8796 character.
8797
8798 @item @code{timeout} (default: @code{#f})
8799 When set to an integer value, terminate if no user name could be read
8800 within @var{timeout} seconds.
8801
8802 @item @code{detect-case?} (default: @code{#f})
8803 When set to @code{#t}, turn on support for detecting an uppercase-only
8804 terminal. This setting will detect a login name containing only
8805 uppercase letters as indicating an uppercase-only terminal and turn on
8806 some upper-to-lower case conversions. Note that this will not support
8807 Unicode characters.
8808
8809 @item @code{wait-cr?} (default: @code{#f})
8810 When set to @code{#t}, wait for the user or modem to send a
8811 carriage-return or linefeed character before displaying
8812 @file{/etc/issue} or login prompt. This is typically used with the
8813 @var{init-string} option.
8814
8815 @item @code{no-hints?} (default: @code{#f})
8816 When set to @code{#t}, do not print hints about Num, Caps, and Scroll
8817 locks.
8818
8819 @item @code{no-hostname?} (default: @code{#f})
8820 By default, the hostname is printed. When this option is set to
8821 @code{#t}, no hostname will be shown at all.
8822
8823 @item @code{long-hostname?} (default: @code{#f})
8824 By default, the hostname is only printed until the first dot. When this
8825 option is set to @code{#t}, the fully qualified hostname by
8826 @code{gethostname} or @code{getaddrinfo} is shown.
8827
8828 @item @code{erase-characters} (default: @code{#f})
8829 This option accepts a string of additional characters that should be
8830 interpreted as backspace when the user types their login name.
8831
8832 @item @code{kill-characters} (default: @code{#f})
8833 This option accepts a string that should be interpreted to mean "ignore
8834 all previous characters" (also called a "kill" character) when the types
8835 their login name.
8836
8837 @item @code{chdir} (default: @code{#f})
8838 This option accepts, as a string, a directory path that will be changed
8839 to before login.
8840
8841 @item @code{delay} (default: @code{#f})
8842 This options accepts, as an integer, the number of seconds to sleep
8843 before opening the tty and displaying the login prompt.
8844
8845 @item @code{nice} (default: @code{#f})
8846 This option accepts, as an integer, the nice value with which to run the
8847 @command{login} program.
8848
8849 @item @code{extra-options} (default: @code{'()})
8850 This option provides an "escape hatch" for the user to provide arbitrary
8851 command-line arguments to @command{agetty} as a list of strings.
8852
8853 @end table
8854 @end deftp
8855
8856 @deffn {Scheme Procedure} kmscon-service-type @var{config}
8857 Return a service to run @uref{https://www.freedesktop.org/wiki/Software/kmscon,kmscon}
8858 according to @var{config}, a @code{<kmscon-configuration>} object, which
8859 specifies the tty to run, among other things.
8860 @end deffn
8861
8862 @deftp {Data Type} kmscon-configuration
8863 This is the data type representing the configuration of Kmscon, which
8864 implements virtual console log-in.
8865
8866 @table @asis
8867
8868 @item @code{virtual-terminal}
8869 The name of the console this Kmscon runs on---e.g., @code{"tty1"}.
8870
8871 @item @code{login-program} (default: @code{#~(string-append #$shadow "/bin/login")})
8872 A gexp denoting the name of the log-in program. The default log-in program is
8873 @command{login} from the Shadow tool suite.
8874
8875 @item @code{login-arguments} (default: @code{'("-p")})
8876 A list of arguments to pass to @command{login}.
8877
8878 @item @code{hardware-acceleration?} (default: #f)
8879 Whether to use hardware acceleration.
8880
8881 @item @code{kmscon} (default: @var{kmscon})
8882 The Kmscon package to use.
8883
8884 @end table
8885 @end deftp
8886
8887 @cindex name service cache daemon
8888 @cindex nscd
8889 @deffn {Scheme Procedure} nscd-service [@var{config}] [#:glibc glibc] @
8890 [#:name-services '()]
8891 Return a service that runs the libc name service cache daemon (nscd) with the
8892 given @var{config}---an @code{<nscd-configuration>} object. @xref{Name
8893 Service Switch}, for an example.
8894 @end deffn
8895
8896 @defvr {Scheme Variable} %nscd-default-configuration
8897 This is the default @code{<nscd-configuration>} value (see below) used
8898 by @code{nscd-service}. It uses the caches defined by
8899 @var{%nscd-default-caches}; see below.
8900 @end defvr
8901
8902 @deftp {Data Type} nscd-configuration
8903 This is the data type representing the name service cache daemon (nscd)
8904 configuration.
8905
8906 @table @asis
8907
8908 @item @code{name-services} (default: @code{'()})
8909 List of packages denoting @dfn{name services} that must be visible to
8910 the nscd---e.g., @code{(list @var{nss-mdns})}.
8911
8912 @item @code{glibc} (default: @var{glibc})
8913 Package object denoting the GNU C Library providing the @command{nscd}
8914 command.
8915
8916 @item @code{log-file} (default: @code{"/var/log/nscd.log"})
8917 Name of the nscd log file. This is where debugging output goes when
8918 @code{debug-level} is strictly positive.
8919
8920 @item @code{debug-level} (default: @code{0})
8921 Integer denoting the debugging levels. Higher numbers mean that more
8922 debugging output is logged.
8923
8924 @item @code{caches} (default: @var{%nscd-default-caches})
8925 List of @code{<nscd-cache>} objects denoting things to be cached; see
8926 below.
8927
8928 @end table
8929 @end deftp
8930
8931 @deftp {Data Type} nscd-cache
8932 Data type representing a cache database of nscd and its parameters.
8933
8934 @table @asis
8935
8936 @item @code{database}
8937 This is a symbol representing the name of the database to be cached.
8938 Valid values are @code{passwd}, @code{group}, @code{hosts}, and
8939 @code{services}, which designate the corresponding NSS database
8940 (@pxref{NSS Basics,,, libc, The GNU C Library Reference Manual}).
8941
8942 @item @code{positive-time-to-live}
8943 @itemx @code{negative-time-to-live} (default: @code{20})
8944 A number representing the number of seconds during which a positive or
8945 negative lookup result remains in cache.
8946
8947 @item @code{check-files?} (default: @code{#t})
8948 Whether to check for updates of the files corresponding to
8949 @var{database}.
8950
8951 For instance, when @var{database} is @code{hosts}, setting this flag
8952 instructs nscd to check for updates in @file{/etc/hosts} and to take
8953 them into account.
8954
8955 @item @code{persistent?} (default: @code{#t})
8956 Whether the cache should be stored persistently on disk.
8957
8958 @item @code{shared?} (default: @code{#t})
8959 Whether the cache should be shared among users.
8960
8961 @item @code{max-database-size} (default: 32@tie{}MiB)
8962 Maximum size in bytes of the database cache.
8963
8964 @c XXX: 'suggested-size' and 'auto-propagate?' seem to be expert
8965 @c settings, so leave them out.
8966
8967 @end table
8968 @end deftp
8969
8970 @defvr {Scheme Variable} %nscd-default-caches
8971 List of @code{<nscd-cache>} objects used by default by
8972 @code{nscd-configuration} (see above).
8973
8974 It enables persistent and aggressive caching of service and host name
8975 lookups. The latter provides better host name lookup performance,
8976 resilience in the face of unreliable name servers, and also better
8977 privacy---often the result of host name lookups is in local cache, so
8978 external name servers do not even need to be queried.
8979 @end defvr
8980
8981 @anchor{syslog-configuration-type}
8982 @cindex syslog
8983 @cindex logging
8984 @deftp {Data Type} syslog-configuration
8985 This data type represents the configuration of the syslog daemon.
8986
8987 @table @asis
8988 @item @code{syslogd} (default: @code{#~(string-append #$inetutils "/libexec/syslogd")})
8989 The syslog daemon to use.
8990
8991 @item @code{config-file} (default: @code{%default-syslog.conf})
8992 The syslog configuration file to use.
8993
8994 @end table
8995 @end deftp
8996
8997 @anchor{syslog-service}
8998 @cindex syslog
8999 @deffn {Scheme Procedure} syslog-service @var{config}
9000 Return a service that runs a syslog daemon according to @var{config}.
9001
9002 @xref{syslogd invocation,,, inetutils, GNU Inetutils}, for more
9003 information on the configuration file syntax.
9004 @end deffn
9005
9006 @anchor{guix-configuration-type}
9007 @deftp {Data Type} guix-configuration
9008 This data type represents the configuration of the Guix build daemon.
9009 @xref{Invoking guix-daemon}, for more information.
9010
9011 @table @asis
9012 @item @code{guix} (default: @var{guix})
9013 The Guix package to use.
9014
9015 @item @code{build-group} (default: @code{"guixbuild"})
9016 Name of the group for build user accounts.
9017
9018 @item @code{build-accounts} (default: @code{10})
9019 Number of build user accounts to create.
9020
9021 @item @code{authorize-key?} (default: @code{#t})
9022 @cindex substitutes, authorization thereof
9023 Whether to authorize the substitute keys listed in
9024 @code{authorized-keys}---by default that of @code{hydra.gnu.org}
9025 (@pxref{Substitutes}).
9026
9027 @vindex %default-authorized-guix-keys
9028 @item @code{authorized-keys} (default: @var{%default-authorized-guix-keys})
9029 The list of authorized key files for archive imports, as a list of
9030 string-valued gexps (@pxref{Invoking guix archive}). By default, it
9031 contains that of @code{hydra.gnu.org} (@pxref{Substitutes}).
9032
9033 @item @code{use-substitutes?} (default: @code{#t})
9034 Whether to use substitutes.
9035
9036 @item @code{substitute-urls} (default: @var{%default-substitute-urls})
9037 The list of URLs where to look for substitutes by default.
9038
9039 @item @code{extra-options} (default: @code{'()})
9040 List of extra command-line options for @command{guix-daemon}.
9041
9042 @item @code{log-file} (default: @code{"/var/log/guix-daemon.log"})
9043 File where @command{guix-daemon}'s standard output and standard error
9044 are written.
9045
9046 @item @code{lsof} (default: @var{lsof})
9047 The lsof package to use.
9048
9049 @item @code{http-proxy} (default: @code{#f})
9050 The HTTP proxy used for downloading fixed-output derivations and
9051 substitutes.
9052
9053 @item @code{tmpdir} (default: @code{#f})
9054 A directory path where the @command{guix-daemon} will perform builds.
9055
9056 @end table
9057 @end deftp
9058
9059 @deffn {Scheme Procedure} guix-service @var{config}
9060 Return a service that runs the Guix build daemon according to
9061 @var{config}.
9062 @end deffn
9063
9064 @deffn {Scheme Procedure} udev-service [#:udev udev]
9065 Run @var{udev}, which populates the @file{/dev} directory dynamically.
9066 @end deffn
9067
9068 @deffn {Scheme Procedure} urandom-seed-service @var{#f}
9069 Save some entropy in @var{%random-seed-file} to seed @file{/dev/urandom}
9070 when rebooting.
9071 @end deffn
9072
9073 @defvr {Scheme Variable} %random-seed-file
9074 This is the name of the file where some random bytes are saved by
9075 @var{urandom-seed-service} to seed @file{/dev/urandom} when rebooting.
9076 It defaults to @file{/var/lib/random-seed}.
9077 @end defvr
9078
9079 @cindex keymap
9080 @cindex keyboard
9081 @deffn {Scheme Procedure} console-keymap-service @var{files} ...
9082 @cindex keyboard layout
9083 Return a service to load console keymaps from @var{files} using
9084 @command{loadkeys} command. Most likely, you want to load some default
9085 keymap, which can be done like this:
9086
9087 @example
9088 (console-keymap-service "dvorak")
9089 @end example
9090
9091 Or, for example, for a Swedish keyboard, you may need to combine
9092 the following keymaps:
9093 @example
9094 (console-keymap-service "se-lat6" "se-fi-lat6")
9095 @end example
9096
9097 Also you can specify a full file name (or file names) of your keymap(s).
9098 See @code{man loadkeys} for details.
9099
9100 @end deffn
9101
9102 @cindex mouse
9103 @cindex gpm
9104 @deffn {Scheme Procedure} gpm-service [#:gpm @var{gpm}] @
9105 [#:options]
9106 Run @var{gpm}, the general-purpose mouse daemon, with the given
9107 command-line @var{options}. GPM allows users to use the mouse in the console,
9108 notably to select, copy, and paste text. The default value of @var{options}
9109 uses the @code{ps2} protocol, which works for both USB and PS/2 mice.
9110
9111 This service is not part of @var{%base-services}.
9112 @end deffn
9113
9114 @anchor{guix-publish-service-type}
9115 @deffn {Scheme Variable} guix-publish-service-type
9116 This is the service type for @command{guix publish} (@pxref{Invoking
9117 guix publish}). Its value must be a @code{guix-configuration}
9118 object, as described below.
9119
9120 This assumes that @file{/etc/guix} already contains a signing key pair as
9121 created by @command{guix archive --generate-key} (@pxref{Invoking guix
9122 archive}). If that is not the case, the service will fail to start.
9123 @end deffn
9124
9125 @deftp {Data Type} guix-publish-configuration
9126 Data type representing the configuration of the @code{guix publish}
9127 service.
9128
9129 @table @asis
9130 @item @code{guix} (default: @code{guix})
9131 The Guix package to use.
9132
9133 @item @code{port} (default: @code{80})
9134 The TCP port to listen for connections.
9135
9136 @item @code{host} (default: @code{"localhost"})
9137 The host (and thus, network interface) to listen to. Use
9138 @code{"0.0.0.0"} to listen on all the network interfaces.
9139
9140 @item @code{compression-level} (default: @code{3})
9141 The gzip compression level at which substitutes are compressed. Use
9142 @code{0} to disable compression altogether, and @code{9} to get the best
9143 compression ratio at the expense of increased CPU usage.
9144
9145 @item @code{nar-path} (default: @code{"nar"})
9146 The URL path at which ``nars'' can be fetched. @xref{Invoking guix
9147 publish, @code{--nar-path}}, for details.
9148 @end table
9149 @end deftp
9150
9151 @anchor{rngd-service}
9152 @deffn {Scheme Procedure} rngd-service [#:rng-tools @var{rng-tools}] @
9153 [#:device "/dev/hwrng"]
9154 Return a service that runs the @command{rngd} program from @var{rng-tools}
9155 to add @var{device} to the kernel's entropy pool. The service will fail if
9156 @var{device} does not exist.
9157 @end deffn
9158
9159 @anchor{pam-limits-service}
9160 @cindex session limits
9161 @cindex ulimit
9162 @cindex priority
9163 @deffn {Scheme Procedure} pam-limits-service [#:limits @var{limits}]
9164
9165 Return a service that installs a configuration file for the
9166 @uref{http://linux-pam.org/Linux-PAM-html/sag-pam_limits.html,
9167 @code{pam_limits} module}. The procedure optionally takes a list of
9168 @code{pam-limits-entry} values, which can be used to specify
9169 @code{ulimit} limits and nice priority limits to user sessions.
9170
9171 The following limits definition sets two hard and soft limits for all
9172 login sessions of users in the @code{realtime} group:
9173
9174 @example
9175 (pam-limits-service
9176 (list
9177 (pam-limits-entry "@@realtime" 'both 'rtprio 99)
9178 (pam-limits-entry "@@realtime" 'both 'memlock 'unlimited)))
9179 @end example
9180
9181 The first entry increases the maximum realtime priority for
9182 non-privileged processes; the second entry lifts any restriction of the
9183 maximum address space that can be locked in memory. These settings are
9184 commonly used for real-time audio systems.
9185 @end deffn
9186
9187 @node Scheduled Job Execution
9188 @subsubsection Scheduled Job Execution
9189
9190 @cindex cron
9191 @cindex mcron
9192 @cindex scheduling jobs
9193 The @code{(gnu services mcron)} module provides an interface to
9194 GNU@tie{}mcron, a daemon to run jobs at scheduled times (@pxref{Top,,,
9195 mcron, GNU@tie{}mcron}). GNU@tie{}mcron is similar to the traditional
9196 Unix @command{cron} daemon; the main difference is that it is
9197 implemented in Guile Scheme, which provides a lot of flexibility when
9198 specifying the scheduling of jobs and their actions.
9199
9200 The example below defines an operating system that runs the
9201 @command{updatedb} (@pxref{Invoking updatedb,,, find, Finding Files})
9202 and the @command{guix gc} commands (@pxref{Invoking guix gc}) daily, as
9203 well as the @command{mkid} command on behalf of an unprivileged user
9204 (@pxref{mkid invocation,,, idutils, ID Database Utilities}). It uses
9205 gexps to introduce job definitions that are passed to mcron
9206 (@pxref{G-Expressions}).
9207
9208 @lisp
9209 (use-modules (guix) (gnu) (gnu services mcron))
9210 (use-package-modules base idutils)
9211
9212 (define updatedb-job
9213 ;; Run 'updatedb' at 3AM every day. Here we write the
9214 ;; job's action as a Scheme procedure.
9215 #~(job '(next-hour '(3))
9216 (lambda ()
9217 (execl (string-append #$findutils "/bin/updatedb")
9218 "updatedb"
9219 "--prunepaths=/tmp /var/tmp /gnu/store"))))
9220
9221 (define garbage-collector-job
9222 ;; Collect garbage 5 minutes after midnight every day.
9223 ;; The job's action is a shell command.
9224 #~(job "5 0 * * *" ;Vixie cron syntax
9225 "guix gc -F 1G"))
9226
9227 (define idutils-job
9228 ;; Update the index database as user "charlie" at 12:15PM
9229 ;; and 19:15PM. This runs from the user's home directory.
9230 #~(job '(next-minute-from (next-hour '(12 19)) '(15))
9231 (string-append #$idutils "/bin/mkid src")
9232 #:user "charlie"))
9233
9234 (operating-system
9235 ;; @dots{}
9236 (services (cons (mcron-service (list garbage-collector-job
9237 updatedb-job
9238 idutils-job))
9239 %base-services)))
9240 @end lisp
9241
9242 @xref{Guile Syntax, mcron job specifications,, mcron, GNU@tie{}mcron},
9243 for more information on mcron job specifications. Below is the
9244 reference of the mcron service.
9245
9246 @deffn {Scheme Procedure} mcron-service @var{jobs} [#:mcron @var{mcron2}]
9247 Return an mcron service running @var{mcron} that schedules @var{jobs}, a
9248 list of gexps denoting mcron job specifications.
9249
9250 This is a shorthand for:
9251 @example
9252 (service mcron-service-type
9253 (mcron-configuration (mcron mcron) (jobs jobs)))
9254 @end example
9255 @end deffn
9256
9257 @defvr {Scheme Variable} mcron-service-type
9258 This is the type of the @code{mcron} service, whose value is an
9259 @code{mcron-configuration} object.
9260
9261 This service type can be the target of a service extension that provides
9262 it additional job specifications (@pxref{Service Composition}). In
9263 other words, it is possible to define services that provide additional
9264 mcron jobs to run.
9265 @end defvr
9266
9267 @deftp {Data Type} mcron-configuration
9268 Data type representing the configuration of mcron.
9269
9270 @table @asis
9271 @item @code{mcron} (default: @var{mcron2})
9272 The mcron package to use.
9273
9274 @item @code{jobs}
9275 This is a list of gexps (@pxref{G-Expressions}), where each gexp
9276 corresponds to an mcron job specification (@pxref{Syntax, mcron job
9277 specifications,, mcron, GNU@tie{}mcron}).
9278 @end table
9279 @end deftp
9280
9281
9282 @node Log Rotation
9283 @subsubsection Log Rotation
9284
9285 @cindex rottlog
9286 @cindex log rotation
9287 @cindex logging
9288 Log files such as those found in @file{/var/log} tend to grow endlessly,
9289 so it's a good idea to @dfn{rotate} them once in a while---i.e., archive
9290 their contents in separate files, possibly compressed. The @code{(gnu
9291 services admin)} module provides an interface to GNU@tie{}Rot[t]log, a
9292 log rotation tool (@pxref{Top,,, rottlog, GNU Rot[t]log Manual}).
9293
9294 The example below defines an operating system that provides log rotation
9295 with the default settings.
9296
9297 @lisp
9298 (use-modules (guix) (gnu))
9299 (use-service-modules admin mcron)
9300 (use-package-modules base idutils)
9301
9302 (operating-system
9303 ;; @dots{}
9304 (services (cons* (mcron-service)
9305 (service rottlog-service-type)
9306 %base-services)))
9307 @end lisp
9308
9309 @defvr {Scheme Variable} rottlog-service-type
9310 This is the type of the Rottlog service, whose value is a
9311 @code{rottlog-configuration} object.
9312
9313 This service type can define mcron jobs (@pxref{Scheduled Job
9314 Execution}) to run the rottlog service.
9315 @end defvr
9316
9317 @deftp {Data Type} rottlog-configuration
9318 Data type representing the configuration of rottlog.
9319
9320 @table @asis
9321 @item @code{rottlog} (default: @code{rottlog})
9322 The Rottlog package to use.
9323
9324 @item @code{rc-file} (default: @code{(file-append rottlog "/etc/rc")})
9325 The Rottlog configuration file to use (@pxref{Mandatory RC Variables,,,
9326 rottlog, GNU Rot[t]log Manual}).
9327
9328 @item @code{periodic-rotations} (default: @code{`(("weekly" %default-rotations))})
9329 A list of Rottlog period-name/period-config tuples.
9330
9331 For example, taking an example from the Rottlog manual (@pxref{Period
9332 Related File Examples,,, rottlog, GNU Rot[t]log Manual}), a valid tuple
9333 might be:
9334
9335 @example
9336 ("daily" ,(plain-file "daily"
9337 "\
9338 /var/log/apache/* @{
9339 storedir apache-archives
9340 rotate 6
9341 notifempty
9342 nocompress
9343 @}"))
9344 @end example
9345
9346 @item @code{jobs}
9347 This is a list of gexps where each gexp corresponds to an mcron job
9348 specification (@pxref{Scheduled Job Execution}).
9349 @end table
9350 @end deftp
9351
9352 @defvr {Scheme Variable} %default-rotations
9353 Specifies weekly rotation of @var{%rotated-files} and
9354 @code{"/var/log/shepherd.log"}.
9355 @end defvr
9356
9357 @defvr {Scheme Variable} %rotated-files
9358 The list of syslog-controlled files to be rotated. By default it is:
9359 @code{'("/var/log/messages" "/var/log/secure")}.
9360 @end defvr
9361
9362 @node Networking Services
9363 @subsubsection Networking Services
9364
9365 The @code{(gnu services networking)} module provides services to configure
9366 the network interface.
9367
9368 @cindex DHCP, networking service
9369 @deffn {Scheme Procedure} dhcp-client-service [#:dhcp @var{isc-dhcp}]
9370 Return a service that runs @var{dhcp}, a Dynamic Host Configuration
9371 Protocol (DHCP) client, on all the non-loopback network interfaces.
9372 @end deffn
9373
9374 @defvr {Scheme Variable} static-networking-service-type
9375 This is the type for statically-configured network interfaces.
9376 @c TODO Document <static-networking> data structures.
9377 @end defvr
9378
9379 @deffn {Scheme Procedure} static-networking-service @var{interface} @var{ip} @
9380 [#:netmask #f] [#:gateway #f] [#:name-servers @code{'()}]
9381 Return a service that starts @var{interface} with address @var{ip}. If
9382 @var{netmask} is true, use it as the network mask. If @var{gateway} is true,
9383 it must be a string specifying the default network gateway.
9384
9385 This procedure can be called several times, one for each network
9386 interface of interest. Behind the scenes what it does is extend
9387 @code{static-networking-service-type} with additional network interfaces
9388 to handle.
9389 @end deffn
9390
9391 @cindex wicd
9392 @cindex wireless
9393 @cindex WiFi
9394 @cindex network management
9395 @deffn {Scheme Procedure} wicd-service [#:wicd @var{wicd}]
9396 Return a service that runs @url{https://launchpad.net/wicd,Wicd}, a network
9397 management daemon that aims to simplify wired and wireless networking.
9398
9399 This service adds the @var{wicd} package to the global profile, providing
9400 several commands to interact with the daemon and configure networking:
9401 @command{wicd-client}, a graphical user interface, and the @command{wicd-cli}
9402 and @command{wicd-curses} user interfaces.
9403 @end deffn
9404
9405 @cindex NetworkManager
9406
9407 @defvr {Scheme Variable} network-manager-service-type
9408 This is the service type for the
9409 @uref{https://wiki.gnome.org/Projects/NetworkManager, NetworkManager}
9410 service. The value for this service type is a
9411 @code{network-manager-configuration} record.
9412 @end defvr
9413
9414 @deftp {Data Type} network-manager-configuration
9415 Data type representing the configuration of NetworkManager.
9416
9417 @table @asis
9418 @item @code{network-manager} (default: @code{network-manager})
9419 The NetworkManager package to use.
9420
9421 @item @code{dns} (default: @code{"default"})
9422 Processing mode for DNS, which affects how NetworkManager uses the
9423 @code{resolv.conf} configuration file.
9424
9425 @table @samp
9426 @item default
9427 NetworkManager will update @code{resolv.conf} to reflect the nameservers
9428 provided by currently active connections.
9429
9430 @item dnsmasq
9431 NetworkManager will run @code{dnsmasq} as a local caching nameserver,
9432 using a "split DNS" configuration if you are connected to a VPN, and
9433 then update @code{resolv.conf} to point to the local nameserver.
9434
9435 @item none
9436 NetworkManager will not modify @code{resolv.conf}.
9437 @end table
9438
9439 @end table
9440 @end deftp
9441
9442 @cindex Connman
9443 @deffn {Scheme Variable} connman-service-type
9444 This is the service type to run @url{https://01.org/connman,Connman},
9445 a network connection manager.
9446
9447 Its value must be an
9448 @code{connman-configuration} record as in this example:
9449
9450 @example
9451 (service connman-service-type
9452 (connman-configuration
9453 (disable-vpn? #t)))
9454 @end example
9455
9456 See below for details about @code{connman-configuration}.
9457 @end deffn
9458
9459 @deftp {Data Type} connman-configuration
9460 Data Type representing the configuration of connman.
9461
9462 @table @asis
9463 @item @code{connman} (default: @var{connman})
9464 The connman package to use.
9465
9466 @item @code{disable-vpn?} (default: @code{#f})
9467 When true, enable connman's vpn plugin.
9468 @end table
9469 @end deftp
9470
9471 @cindex WPA Supplicant
9472 @defvr {Scheme Variable} wpa-supplicant-service-type
9473 This is the service type to run @url{https://w1.fi/wpa_supplicant/,WPA
9474 supplicant}, an authentication daemon required to authenticate against
9475 encrypted WiFi or ethernet networks. It is configured to listen for
9476 requests on D-Bus.
9477
9478 The value of this service is the @code{wpa-supplicant} package to use.
9479 Thus, it can be instantiated like this:
9480
9481 @lisp
9482 (use-modules (gnu services networking))
9483
9484 (service wpa-supplicant-service-type)
9485 @end lisp
9486 @end defvr
9487
9488 @cindex NTP
9489 @cindex real time clock
9490 @deffn {Scheme Procedure} ntp-service [#:ntp @var{ntp}] @
9491 [#:servers @var{%ntp-servers}] @
9492 [#:allow-large-adjustment? #f]
9493 Return a service that runs the daemon from @var{ntp}, the
9494 @uref{http://www.ntp.org, Network Time Protocol package}. The daemon will
9495 keep the system clock synchronized with that of @var{servers}.
9496 @var{allow-large-adjustment?} determines whether @command{ntpd} is allowed to
9497 make an initial adjustment of more than 1,000 seconds.
9498 @end deffn
9499
9500 @defvr {Scheme Variable} %ntp-servers
9501 List of host names used as the default NTP servers.
9502 @end defvr
9503
9504 @cindex inetd
9505 @deffn {Scheme variable} inetd-service-type
9506 This service runs the @command{inetd} (@pxref{inetd invocation,,,
9507 inetutils, GNU Inetutils}) daemon. @command{inetd} listens for
9508 connections on internet sockets, and lazily starts the specified server
9509 program when a connection is made on one of these sockets.
9510
9511 The value of this service is an @code{inetd-configuration} object. The
9512 following example configures the @command{inetd} daemon to provide the
9513 built-in @command{echo} service, as well as an smtp service which
9514 forwards smtp traffic over ssh to a server @code{smtp-server} behind a
9515 gateway @code{hostname}:
9516
9517 @example
9518 (service
9519 inetd-service-type
9520 (inetd-configuration
9521 (entries (list
9522 (inetd-entry
9523 (name "echo")
9524 (socket-type 'stream)
9525 (protocol "tcp")
9526 (wait? #f)
9527 (user "root"))
9528 (inetd-entry
9529 (node "127.0.0.1")
9530 (name "smtp")
9531 (socket-type 'stream)
9532 (protocol "tcp")
9533 (wait? #f)
9534 (user "root")
9535 (program (file-append openssh "/bin/ssh"))
9536 (arguments
9537 '("ssh" "-qT" "-i" "/path/to/ssh_key"
9538 "-W" "smtp-server:25" "user@@hostname")))))
9539 @end example
9540
9541 See below for more details about @code{inetd-configuration}.
9542 @end deffn
9543
9544 @deftp {Data Type} inetd-configuration
9545 Data type representing the configuration of @command{inetd}.
9546
9547 @table @asis
9548 @item @code{program} (default: @code{(file-append inetutils "/libexec/inetd")})
9549 The @command{inetd} executable to use.
9550
9551 @item @code{entries} (default: @code{'()})
9552 A list of @command{inetd} service entries. Each entry should be created
9553 by the @code{inetd-entry} constructor.
9554 @end table
9555 @end deftp
9556
9557 @deftp {Data Type} inetd-entry
9558 Data type representing an entry in the @command{inetd} configuration.
9559 Each entry corresponds to a socket where @command{inetd} will listen for
9560 requests.
9561
9562 @table @asis
9563 @item @code{node} (default: @code{#f})
9564 Optional string, a comma-separated list of local addresses
9565 @command{inetd} should use when listening for this service.
9566 @xref{Configuration file,,, inetutils, GNU Inetutils} for a complete
9567 description of all options.
9568 @item @code{name}
9569 A string, the name must correspond to an entry in @code{/etc/services}.
9570 @item @code{socket-type}
9571 One of @code{'stream}, @code{'dgram}, @code{'raw}, @code{'rdm} or
9572 @code{'seqpacket}.
9573 @item @code{protocol}
9574 A string, must correspond to an entry in @code{/etc/protocols}.
9575 @item @code{wait?} (default: @code{#t})
9576 Whether @command{inetd} should wait for the server to exit before
9577 listening to new service requests.
9578 @item @code{user}
9579 A string containing the user (and, optionally, group) name of the user
9580 as whom the server should run. The group name can be specified in a
9581 suffix, separated by a colon or period, i.e. @code{"user"},
9582 @code{"user:group"} or @code{"user.group"}.
9583 @item @code{program} (default: @code{"internal"})
9584 The server program which will serve the requests, or @code{"internal"}
9585 if @command{inetd} should use a built-in service.
9586 @item @code{arguments} (default: @code{'()})
9587 A list strings or file-like objects, which are the server program's
9588 arguments, starting with the zeroth argument, i.e. the name of the
9589 program itself. For @command{inetd}'s internal services, this entry
9590 must be @code{'()} or @code{'("internal")}.
9591 @end table
9592
9593 @xref{Configuration file,,, inetutils, GNU Inetutils} for a more
9594 detailed discussion of each configuration field.
9595 @end deftp
9596
9597 @cindex Tor
9598 @deffn {Scheme Procedure} tor-service [@var{config-file}] [#:tor @var{tor}]
9599 Return a service to run the @uref{https://torproject.org, Tor} anonymous
9600 networking daemon.
9601
9602 The daemon runs as the @code{tor} unprivileged user. It is passed
9603 @var{config-file}, a file-like object, with an additional @code{User tor} line
9604 and lines for hidden services added via @code{tor-hidden-service}. Run
9605 @command{man tor} for information about the configuration file.
9606 @end deffn
9607
9608 @cindex hidden service
9609 @deffn {Scheme Procedure} tor-hidden-service @var{name} @var{mapping}
9610 Define a new Tor @dfn{hidden service} called @var{name} and implementing
9611 @var{mapping}. @var{mapping} is a list of port/host tuples, such as:
9612
9613 @example
9614 '((22 "127.0.0.1:22")
9615 (80 "127.0.0.1:8080"))
9616 @end example
9617
9618 In this example, port 22 of the hidden service is mapped to local port 22, and
9619 port 80 is mapped to local port 8080.
9620
9621 This creates a @file{/var/lib/tor/hidden-services/@var{name}} directory, where
9622 the @file{hostname} file contains the @code{.onion} host name for the hidden
9623 service.
9624
9625 See @uref{https://www.torproject.org/docs/tor-hidden-service.html.en, the Tor
9626 project's documentation} for more information.
9627 @end deffn
9628
9629 @deffn {Scheme Procedure} bitlbee-service [#:bitlbee bitlbee] @
9630 [#:interface "127.0.0.1"] [#:port 6667] @
9631 [#:extra-settings ""]
9632 Return a service that runs @url{http://bitlbee.org,BitlBee}, a daemon that
9633 acts as a gateway between IRC and chat networks.
9634
9635 The daemon will listen to the interface corresponding to the IP address
9636 specified in @var{interface}, on @var{port}. @code{127.0.0.1} means that only
9637 local clients can connect, whereas @code{0.0.0.0} means that connections can
9638 come from any networking interface.
9639
9640 In addition, @var{extra-settings} specifies a string to append to the
9641 configuration file.
9642 @end deffn
9643
9644 Furthermore, @code{(gnu services ssh)} provides the following services.
9645 @cindex SSH
9646 @cindex SSH server
9647
9648 @deffn {Scheme Procedure} lsh-service [#:host-key "/etc/lsh/host-key"] @
9649 [#:daemonic? #t] [#:interfaces '()] [#:port-number 22] @
9650 [#:allow-empty-passwords? #f] [#:root-login? #f] @
9651 [#:syslog-output? #t] [#:x11-forwarding? #t] @
9652 [#:tcp/ip-forwarding? #t] [#:password-authentication? #t] @
9653 [#:public-key-authentication? #t] [#:initialize? #t]
9654 Run the @command{lshd} program from @var{lsh} to listen on port @var{port-number}.
9655 @var{host-key} must designate a file containing the host key, and readable
9656 only by root.
9657
9658 When @var{daemonic?} is true, @command{lshd} will detach from the
9659 controlling terminal and log its output to syslogd, unless one sets
9660 @var{syslog-output?} to false. Obviously, it also makes lsh-service
9661 depend on existence of syslogd service. When @var{pid-file?} is true,
9662 @command{lshd} writes its PID to the file called @var{pid-file}.
9663
9664 When @var{initialize?} is true, automatically create the seed and host key
9665 upon service activation if they do not exist yet. This may take long and
9666 require interaction.
9667
9668 When @var{initialize?} is false, it is up to the user to initialize the
9669 randomness generator (@pxref{lsh-make-seed,,, lsh, LSH Manual}), and to create
9670 a key pair with the private key stored in file @var{host-key} (@pxref{lshd
9671 basics,,, lsh, LSH Manual}).
9672
9673 When @var{interfaces} is empty, lshd listens for connections on all the
9674 network interfaces; otherwise, @var{interfaces} must be a list of host names
9675 or addresses.
9676
9677 @var{allow-empty-passwords?} specifies whether to accept log-ins with empty
9678 passwords, and @var{root-login?} specifies whether to accept log-ins as
9679 root.
9680
9681 The other options should be self-descriptive.
9682 @end deffn
9683
9684 @cindex SSH
9685 @cindex SSH server
9686 @deffn {Scheme Variable} openssh-service-type
9687 This is the type for the @uref{http://www.openssh.org, OpenSSH} secure
9688 shell daemon, @command{sshd}. Its value must be an
9689 @code{openssh-configuration} record as in this example:
9690
9691 @example
9692 (service openssh-service-type
9693 (openssh-configuration
9694 (x11-forwarding? #t)
9695 (permit-root-login 'without-password)))
9696 @end example
9697
9698 See below for details about @code{openssh-configuration}.
9699 @end deffn
9700
9701 @deftp {Data Type} openssh-configuration
9702 This is the configuration record for OpenSSH's @command{sshd}.
9703
9704 @table @asis
9705 @item @code{pid-file} (default: @code{"/var/run/sshd.pid"})
9706 Name of the file where @command{sshd} writes its PID.
9707
9708 @item @code{port-number} (default: @code{22})
9709 TCP port on which @command{sshd} listens for incoming connections.
9710
9711 @item @code{permit-root-login} (default: @code{#f})
9712 This field determines whether and when to allow logins as root. If
9713 @code{#f}, root logins are disallowed; if @code{#t}, they are allowed.
9714 If it's the symbol @code{'without-password}, then root logins are
9715 permitted but not with password-based authentication.
9716
9717 @item @code{allow-empty-passwords?} (default: @code{#f})
9718 When true, users with empty passwords may log in. When false, they may
9719 not.
9720
9721 @item @code{password-authentication?} (default: @code{#t})
9722 When true, users may log in with their password. When false, they have
9723 other authentication methods.
9724
9725 @item @code{public-key-authentication?} (default: @code{#t})
9726 When true, users may log in using public key authentication. When
9727 false, users have to use other authentication method.
9728
9729 Authorized public keys are stored in @file{~/.ssh/authorized_keys}.
9730 This is used only by protocol version 2.
9731
9732 @item @code{x11-forwarding?} (default: @code{#f})
9733 When true, forwarding of X11 graphical client connections is
9734 enabled---in other words, @command{ssh} options @option{-X} and
9735 @option{-Y} will work.
9736
9737 @item @code{challenge-response-authentication?} (default: @code{#f})
9738 Specifies whether challenge response authentication is allowed (e.g. via
9739 PAM).
9740
9741 @item @code{use-pam?} (default: @code{#t})
9742 Enables the Pluggable Authentication Module interface. If set to
9743 @code{#t}, this will enable PAM authentication using
9744 @code{challenge-response-authentication?} and
9745 @code{password-authentication?}, in addition to PAM account and session
9746 module processing for all authentication types.
9747
9748 Because PAM challenge response authentication usually serves an
9749 equivalent role to password authentication, you should disable either
9750 @code{challenge-response-authentication?} or
9751 @code{password-authentication?}.
9752
9753 @item @code{print-last-log?} (default: @code{#t})
9754 Specifies whether @command{sshd} should print the date and time of the
9755 last user login when a user logs in interactively.
9756
9757 @item @code{subsystems} (default: @code{'(("sftp" "internal-sftp"))})
9758 Configures external subsystems (e.g. file transfer daemon).
9759
9760 This is a list of two-element lists, each of which containing the
9761 subsystem name and a command (with optional arguments) to execute upon
9762 subsystem request.
9763
9764 The command @command{internal-sftp} implements an in-process SFTP
9765 server. Alternately, one can specify the @command{sftp-server} command:
9766 @example
9767 (service openssh-service-type
9768 (openssh-configuration
9769 (subsystems
9770 '(("sftp" ,(file-append openssh "/libexec/sftp-server"))))))
9771 @end example
9772 @end table
9773 @end deftp
9774
9775 @deffn {Scheme Procedure} dropbear-service [@var{config}]
9776 Run the @uref{https://matt.ucc.asn.au/dropbear/dropbear.html,Dropbear SSH
9777 daemon} with the given @var{config}, a @code{<dropbear-configuration>}
9778 object.
9779
9780 For example, to specify a Dropbear service listening on port 1234, add
9781 this call to the operating system's @code{services} field:
9782
9783 @example
9784 (dropbear-service (dropbear-configuration
9785 (port-number 1234)))
9786 @end example
9787 @end deffn
9788
9789 @deftp {Data Type} dropbear-configuration
9790 This data type represents the configuration of a Dropbear SSH daemon.
9791
9792 @table @asis
9793 @item @code{dropbear} (default: @var{dropbear})
9794 The Dropbear package to use.
9795
9796 @item @code{port-number} (default: 22)
9797 The TCP port where the daemon waits for incoming connections.
9798
9799 @item @code{syslog-output?} (default: @code{#t})
9800 Whether to enable syslog output.
9801
9802 @item @code{pid-file} (default: @code{"/var/run/dropbear.pid"})
9803 File name of the daemon's PID file.
9804
9805 @item @code{root-login?} (default: @code{#f})
9806 Whether to allow @code{root} logins.
9807
9808 @item @code{allow-empty-passwords?} (default: @code{#f})
9809 Whether to allow empty passwords.
9810
9811 @item @code{password-authentication?} (default: @code{#t})
9812 Whether to enable password-based authentication.
9813 @end table
9814 @end deftp
9815
9816 @defvr {Scheme Variable} %facebook-host-aliases
9817 This variable contains a string for use in @file{/etc/hosts}
9818 (@pxref{Host Names,,, libc, The GNU C Library Reference Manual}). Each
9819 line contains a entry that maps a known server name of the Facebook
9820 on-line service---e.g., @code{www.facebook.com}---to the local
9821 host---@code{127.0.0.1} or its IPv6 equivalent, @code{::1}.
9822
9823 This variable is typically used in the @code{hosts-file} field of an
9824 @code{operating-system} declaration (@pxref{operating-system Reference,
9825 @file{/etc/hosts}}):
9826
9827 @example
9828 (use-modules (gnu) (guix))
9829
9830 (operating-system
9831 (host-name "mymachine")
9832 ;; ...
9833 (hosts-file
9834 ;; Create a /etc/hosts file with aliases for "localhost"
9835 ;; and "mymachine", as well as for Facebook servers.
9836 (plain-file "hosts"
9837 (string-append (local-host-aliases host-name)
9838 %facebook-host-aliases))))
9839 @end example
9840
9841 This mechanism can prevent programs running locally, such as Web
9842 browsers, from accessing Facebook.
9843 @end defvr
9844
9845 The @code{(gnu services avahi)} provides the following definition.
9846
9847 @deffn {Scheme Procedure} avahi-service [#:avahi @var{avahi}] @
9848 [#:host-name #f] [#:publish? #t] [#:ipv4? #t] @
9849 [#:ipv6? #t] [#:wide-area? #f] @
9850 [#:domains-to-browse '()] [#:debug? #f]
9851 Return a service that runs @command{avahi-daemon}, a system-wide
9852 mDNS/DNS-SD responder that allows for service discovery and
9853 "zero-configuration" host name lookups (see @uref{http://avahi.org/}), and
9854 extends the name service cache daemon (nscd) so that it can resolve
9855 @code{.local} host names using
9856 @uref{http://0pointer.de/lennart/projects/nss-mdns/, nss-mdns}. Additionally,
9857 add the @var{avahi} package to the system profile so that commands such as
9858 @command{avahi-browse} are directly usable.
9859
9860 If @var{host-name} is different from @code{#f}, use that as the host name to
9861 publish for this machine; otherwise, use the machine's actual host name.
9862
9863 When @var{publish?} is true, publishing of host names and services is allowed;
9864 in particular, avahi-daemon will publish the machine's host name and IP
9865 address via mDNS on the local network.
9866
9867 When @var{wide-area?} is true, DNS-SD over unicast DNS is enabled.
9868
9869 Boolean values @var{ipv4?} and @var{ipv6?} determine whether to use IPv4/IPv6
9870 sockets.
9871 @end deffn
9872
9873 @deffn {Scheme Variable} openvswitch-service-type
9874 This is the type of the @uref{http://www.openvswitch.org, Open vSwitch}
9875 service, whose value should be an @code{openvswitch-configuration}
9876 object.
9877 @end deffn
9878
9879 @deftp {Data Type} openvswitch-configuration
9880 Data type representing the configuration of Open vSwitch, a multilayer
9881 virtual switch which is designed to enable massive network automation
9882 through programmatic extension.
9883
9884 @table @asis
9885 @item @code{package} (default: @var{openvswitch})
9886 Package object of the Open vSwitch.
9887
9888 @end table
9889 @end deftp
9890
9891 @node X Window
9892 @subsubsection X Window
9893
9894 @cindex X11
9895 @cindex X Window System
9896 Support for the X Window graphical display system---specifically
9897 Xorg---is provided by the @code{(gnu services xorg)} module. Note that
9898 there is no @code{xorg-service} procedure. Instead, the X server is
9899 started by the @dfn{login manager}, currently SLiM.
9900
9901 @deftp {Data Type} sddm-configuration
9902 This is the data type representing the sddm service configuration.
9903
9904 @table @asis
9905 @item @code{display-server} (default: "x11")
9906 Select display server to use for the greeter. Valid values are "x11"
9907 or "wayland".
9908
9909 @item @code{numlock} (default: "on")
9910 Valid values are "on", "off" or "none".
9911
9912 @item @code{halt-command} (default @code{#~(string-apppend #$shepherd "/sbin/halt")})
9913 Command to run when halting.
9914
9915 @item @code{reboot-command} (default @code{#~(string-append #$shepherd "/sbin/reboot")})
9916 Command to run when rebooting.
9917
9918 @item @code{theme} (default "maldives")
9919 Theme to use. Default themes provided by SDDM are "elarun" or "maldives".
9920
9921 @item @code{themes-directory} (default "/run/current-system/profile/share/sddm/themes")
9922 Directory to look for themes.
9923
9924 @item @code{faces-directory} (default "/run/current-system/profile/share/sddm/faces")
9925 Directory to look for faces.
9926
9927 @item @code{default-path} (default "/run/current-system/profile/bin")
9928 Default PATH to use.
9929
9930 @item @code{minimum-uid} (default 1000)
9931 Minimum UID to display in SDDM.
9932
9933 @item @code{maximum-uid} (default 2000)
9934 Maximum UID to display in SDDM
9935
9936 @item @code{remember-last-user?} (default #t)
9937 Remember last user.
9938
9939 @item @code{remember-last-session?} (default #t)
9940 Remember last session.
9941
9942 @item @code{hide-users} (default "")
9943 Usernames to hide from SDDM greeter.
9944
9945 @item @code{hide-shells} (default @code{#~(string-append #$shadow "/sbin/nologin")})
9946 Users with shells listed will be hidden from the SDDM greeter.
9947
9948 @item @code{session-command} (default @code{#~(string-append #$sddm "/share/sddm/scripts/wayland-session")})
9949 Script to run before starting a wayland session.
9950
9951 @item @code{sessions-directory} (default "/run/current-system/profile/share/wayland-sessions")
9952 Directory to look for desktop files starting wayland sessions.
9953
9954 @item @code{xorg-server-path} (default @code{xorg-start-command})
9955 Path to xorg-server.
9956
9957 @item @code{xauth-path} (default @code{#~(string-append #$xauth "/bin/xauth")})
9958 Path to xauth.
9959
9960 @item @code{xephyr-path} (default @code{#~(string-append #$xorg-server "/bin/Xephyr")})
9961 Path to Xephyr.
9962
9963 @item @code{xdisplay-start} (default @code{#~(string-append #$sddm "/share/sddm/scripts/Xsetup")})
9964 Script to run after starting xorg-server.
9965
9966 @item @code{xdisplay-stop} (default @code{#~(string-append #$sddm "/share/sddm/scripts/Xstop")})
9967 Script to run before stopping xorg-server.
9968
9969 @item @code{xsession-command} (default: @code{xinitr })
9970 Script to run before starting a X session.
9971
9972 @item @code{xsessions-directory} (default: "/run/current-system/profile/share/xsessions")
9973 Directory to look for desktop files starting X sessions.
9974
9975 @item @code{minimum-vt} (default: 7)
9976 Minimum VT to use.
9977
9978 @item @code{xserver-arguments} (default "-nolisten tcp")
9979 Arguments to pass to xorg-server.
9980
9981 @item @code{auto-login-user} (default "")
9982 User to use for auto-login.
9983
9984 @item @code{auto-login-session} (default "")
9985 Desktop file to use for auto-login.
9986
9987 @item @code{relogin?} (default #f)
9988 Relogin after logout.
9989
9990 @end table
9991 @end deftp
9992
9993 @cindex login manager
9994 @deffn {Scheme Procedure} sddm-service config
9995 Return a service that spawns the SDDM graphical login manager for config of
9996 type @code{<sddm-configuration>}.
9997
9998 @example
9999 (sddm-service (sddm-configuration
10000 (auto-login-user "Alice")
10001 (auto-login-session "xfce.desktop")))
10002 @end example
10003 @end deffn
10004
10005 @deffn {Scheme Procedure} slim-service [#:allow-empty-passwords? #f] @
10006 [#:auto-login? #f] [#:default-user ""] [#:startx] @
10007 [#:theme @var{%default-slim-theme}] @
10008 [#:theme-name @var{%default-slim-theme-name}]
10009 Return a service that spawns the SLiM graphical login manager, which in
10010 turn starts the X display server with @var{startx}, a command as returned by
10011 @code{xorg-start-command}.
10012
10013 @cindex X session
10014
10015 SLiM automatically looks for session types described by the @file{.desktop}
10016 files in @file{/run/current-system/profile/share/xsessions} and allows users
10017 to choose a session from the log-in screen using @kbd{F1}. Packages such as
10018 @var{xfce}, @var{sawfish}, and @var{ratpoison} provide @file{.desktop} files;
10019 adding them to the system-wide set of packages automatically makes them
10020 available at the log-in screen.
10021
10022 In addition, @file{~/.xsession} files are honored. When available,
10023 @file{~/.xsession} must be an executable that starts a window manager
10024 and/or other X clients.
10025
10026 When @var{allow-empty-passwords?} is true, allow logins with an empty
10027 password. When @var{auto-login?} is true, log in automatically as
10028 @var{default-user}.
10029
10030 If @var{theme} is @code{#f}, use the default log-in theme; otherwise
10031 @var{theme} must be a gexp denoting the name of a directory containing the
10032 theme to use. In that case, @var{theme-name} specifies the name of the
10033 theme.
10034 @end deffn
10035
10036 @defvr {Scheme Variable} %default-theme
10037 @defvrx {Scheme Variable} %default-theme-name
10038 The G-Expression denoting the default SLiM theme and its name.
10039 @end defvr
10040
10041 @deffn {Scheme Procedure} xorg-start-command [#:guile] @
10042 [#:configuration-file #f] [#:xorg-server @var{xorg-server}]
10043 Return a derivation that builds a @var{guile} script to start the X server
10044 from @var{xorg-server}. @var{configuration-file} is the server configuration
10045 file or a derivation that builds it; when omitted, the result of
10046 @code{xorg-configuration-file} is used.
10047
10048 Usually the X server is started by a login manager.
10049 @end deffn
10050
10051 @deffn {Scheme Procedure} xorg-configuration-file @
10052 [#:drivers '()] [#:resolutions '()] [#:extra-config '()]
10053 Return a configuration file for the Xorg server containing search paths for
10054 all the common drivers.
10055
10056 @var{drivers} must be either the empty list, in which case Xorg chooses a
10057 graphics driver automatically, or a list of driver names that will be tried in
10058 this order---e.g., @code{(\"modesetting\" \"vesa\")}.
10059
10060 Likewise, when @var{resolutions} is the empty list, Xorg chooses an
10061 appropriate screen resolution; otherwise, it must be a list of
10062 resolutions---e.g., @code{((1024 768) (640 480))}.
10063
10064 Last, @var{extra-config} is a list of strings or objects appended to the
10065 @code{text-file*} argument list. It is used to pass extra text to be added
10066 verbatim to the configuration file.
10067 @end deffn
10068
10069 @deffn {Scheme Procedure} screen-locker-service @var{package} [@var{name}]
10070 Add @var{package}, a package for a screen-locker or screen-saver whose
10071 command is @var{program}, to the set of setuid programs and add a PAM entry
10072 for it. For example:
10073
10074 @lisp
10075 (screen-locker-service xlockmore "xlock")
10076 @end lisp
10077
10078 makes the good ol' XlockMore usable.
10079 @end deffn
10080
10081
10082 @node Printing Services
10083 @subsubsection Printing Services
10084
10085 @cindex printer support with CUPS
10086 The @code{(gnu services cups)} module provides a Guix service definition
10087 for the CUPS printing service. To add printer support to a GuixSD
10088 system, add a @code{cups-service} to the operating system definition:
10089
10090 @deffn {Scheme Variable} cups-service-type
10091 The service type for the CUPS print server. Its value should be a valid
10092 CUPS configuration (see below). To use the default settings, simply
10093 write:
10094 @example
10095 (service cups-service-type)
10096 @end example
10097 @end deffn
10098
10099 The CUPS configuration controls the basic things about your CUPS
10100 installation: what interfaces it listens on, what to do if a print job
10101 fails, how much logging to do, and so on. To actually add a printer,
10102 you have to visit the @url{http://localhost:631} URL, or use a tool such
10103 as GNOME's printer configuration services. By default, configuring a
10104 CUPS service will generate a self-signed certificate if needed, for
10105 secure connections to the print server.
10106
10107 Suppose you want to enable the Web interface of CUPS and also add
10108 support for HP printers @i{via} the @code{hplip} package. You can do
10109 that directly, like this (you need to use the @code{(gnu packages cups)}
10110 module):
10111
10112 @example
10113 (service cups-service-type
10114 (cups-configuration
10115 (web-interface? #t)
10116 (extensions
10117 (list cups-filters hplip))))
10118 @end example
10119
10120 The available configuration parameters follow. Each parameter
10121 definition is preceded by its type; for example, @samp{string-list foo}
10122 indicates that the @code{foo} parameter should be specified as a list of
10123 strings. There is also a way to specify the configuration as a string,
10124 if you have an old @code{cupsd.conf} file that you want to port over
10125 from some other system; see the end for more details.
10126
10127 @c The following documentation was initially generated by
10128 @c (generate-documentation) in (gnu services cups). Manually maintained
10129 @c documentation is better, so we shouldn't hesitate to edit below as
10130 @c needed. However if the change you want to make to this documentation
10131 @c can be done in an automated way, it's probably easier to change
10132 @c (generate-documentation) than to make it below and have to deal with
10133 @c the churn as CUPS updates.
10134
10135
10136 Available @code{cups-configuration} fields are:
10137
10138 @deftypevr {@code{cups-configuration} parameter} package cups
10139 The CUPS package.
10140 @end deftypevr
10141
10142 @deftypevr {@code{cups-configuration} parameter} package-list extensions
10143 Drivers and other extensions to the CUPS package.
10144 @end deftypevr
10145
10146 @deftypevr {@code{cups-configuration} parameter} files-configuration files-configuration
10147 Configuration of where to write logs, what directories to use for print
10148 spools, and related privileged configuration parameters.
10149
10150 Available @code{files-configuration} fields are:
10151
10152 @deftypevr {@code{files-configuration} parameter} log-location access-log
10153 Defines the access log filename. Specifying a blank filename disables
10154 access log generation. The value @code{stderr} causes log entries to be
10155 sent to the standard error file when the scheduler is running in the
10156 foreground, or to the system log daemon when run in the background. The
10157 value @code{syslog} causes log entries to be sent to the system log
10158 daemon. The server name may be included in filenames using the string
10159 @code{%s}, as in @code{/var/log/cups/%s-access_log}.
10160
10161 Defaults to @samp{"/var/log/cups/access_log"}.
10162 @end deftypevr
10163
10164 @deftypevr {@code{files-configuration} parameter} file-name cache-dir
10165 Where CUPS should cache data.
10166
10167 Defaults to @samp{"/var/cache/cups"}.
10168 @end deftypevr
10169
10170 @deftypevr {@code{files-configuration} parameter} string config-file-perm
10171 Specifies the permissions for all configuration files that the scheduler
10172 writes.
10173
10174 Note that the permissions for the printers.conf file are currently
10175 masked to only allow access from the scheduler user (typically root).
10176 This is done because printer device URIs sometimes contain sensitive
10177 authentication information that should not be generally known on the
10178 system. There is no way to disable this security feature.
10179
10180 Defaults to @samp{"0640"}.
10181 @end deftypevr
10182
10183 @deftypevr {@code{files-configuration} parameter} log-location error-log
10184 Defines the error log filename. Specifying a blank filename disables
10185 access log generation. The value @code{stderr} causes log entries to be
10186 sent to the standard error file when the scheduler is running in the
10187 foreground, or to the system log daemon when run in the background. The
10188 value @code{syslog} causes log entries to be sent to the system log
10189 daemon. The server name may be included in filenames using the string
10190 @code{%s}, as in @code{/var/log/cups/%s-error_log}.
10191
10192 Defaults to @samp{"/var/log/cups/error_log"}.
10193 @end deftypevr
10194
10195 @deftypevr {@code{files-configuration} parameter} string fatal-errors
10196 Specifies which errors are fatal, causing the scheduler to exit. The
10197 kind strings are:
10198
10199 @table @code
10200 @item none
10201 No errors are fatal.
10202
10203 @item all
10204 All of the errors below are fatal.
10205
10206 @item browse
10207 Browsing initialization errors are fatal, for example failed connections
10208 to the DNS-SD daemon.
10209
10210 @item config
10211 Configuration file syntax errors are fatal.
10212
10213 @item listen
10214 Listen or Port errors are fatal, except for IPv6 failures on the
10215 loopback or @code{any} addresses.
10216
10217 @item log
10218 Log file creation or write errors are fatal.
10219
10220 @item permissions
10221 Bad startup file permissions are fatal, for example shared TLS
10222 certificate and key files with world-read permissions.
10223 @end table
10224
10225 Defaults to @samp{"all -browse"}.
10226 @end deftypevr
10227
10228 @deftypevr {@code{files-configuration} parameter} boolean file-device?
10229 Specifies whether the file pseudo-device can be used for new printer
10230 queues. The URI @uref{file:///dev/null} is always allowed.
10231
10232 Defaults to @samp{#f}.
10233 @end deftypevr
10234
10235 @deftypevr {@code{files-configuration} parameter} string group
10236 Specifies the group name or ID that will be used when executing external
10237 programs.
10238
10239 Defaults to @samp{"lp"}.
10240 @end deftypevr
10241
10242 @deftypevr {@code{files-configuration} parameter} string log-file-perm
10243 Specifies the permissions for all log files that the scheduler writes.
10244
10245 Defaults to @samp{"0644"}.
10246 @end deftypevr
10247
10248 @deftypevr {@code{files-configuration} parameter} log-location page-log
10249 Defines the page log filename. Specifying a blank filename disables
10250 access log generation. The value @code{stderr} causes log entries to be
10251 sent to the standard error file when the scheduler is running in the
10252 foreground, or to the system log daemon when run in the background. The
10253 value @code{syslog} causes log entries to be sent to the system log
10254 daemon. The server name may be included in filenames using the string
10255 @code{%s}, as in @code{/var/log/cups/%s-page_log}.
10256
10257 Defaults to @samp{"/var/log/cups/page_log"}.
10258 @end deftypevr
10259
10260 @deftypevr {@code{files-configuration} parameter} string remote-root
10261 Specifies the username that is associated with unauthenticated accesses
10262 by clients claiming to be the root user. The default is @code{remroot}.
10263
10264 Defaults to @samp{"remroot"}.
10265 @end deftypevr
10266
10267 @deftypevr {@code{files-configuration} parameter} file-name request-root
10268 Specifies the directory that contains print jobs and other HTTP request
10269 data.
10270
10271 Defaults to @samp{"/var/spool/cups"}.
10272 @end deftypevr
10273
10274 @deftypevr {@code{files-configuration} parameter} sandboxing sandboxing
10275 Specifies the level of security sandboxing that is applied to print
10276 filters, backends, and other child processes of the scheduler; either
10277 @code{relaxed} or @code{strict}. This directive is currently only
10278 used/supported on macOS.
10279
10280 Defaults to @samp{strict}.
10281 @end deftypevr
10282
10283 @deftypevr {@code{files-configuration} parameter} file-name server-keychain
10284 Specifies the location of TLS certificates and private keys. CUPS will
10285 look for public and private keys in this directory: a @code{.crt} files
10286 for PEM-encoded certificates and corresponding @code{.key} files for
10287 PEM-encoded private keys.
10288
10289 Defaults to @samp{"/etc/cups/ssl"}.
10290 @end deftypevr
10291
10292 @deftypevr {@code{files-configuration} parameter} file-name server-root
10293 Specifies the directory containing the server configuration files.
10294
10295 Defaults to @samp{"/etc/cups"}.
10296 @end deftypevr
10297
10298 @deftypevr {@code{files-configuration} parameter} boolean sync-on-close?
10299 Specifies whether the scheduler calls fsync(2) after writing
10300 configuration or state files.
10301
10302 Defaults to @samp{#f}.
10303 @end deftypevr
10304
10305 @deftypevr {@code{files-configuration} parameter} space-separated-string-list system-group
10306 Specifies the group(s) to use for @code{@@SYSTEM} group authentication.
10307 @end deftypevr
10308
10309 @deftypevr {@code{files-configuration} parameter} file-name temp-dir
10310 Specifies the directory where temporary files are stored.
10311
10312 Defaults to @samp{"/var/spool/cups/tmp"}.
10313 @end deftypevr
10314
10315 @deftypevr {@code{files-configuration} parameter} string user
10316 Specifies the user name or ID that is used when running external
10317 programs.
10318
10319 Defaults to @samp{"lp"}.
10320 @end deftypevr
10321 @end deftypevr
10322
10323 @deftypevr {@code{cups-configuration} parameter} access-log-level access-log-level
10324 Specifies the logging level for the AccessLog file. The @code{config}
10325 level logs when printers and classes are added, deleted, or modified and
10326 when configuration files are accessed or updated. The @code{actions}
10327 level logs when print jobs are submitted, held, released, modified, or
10328 canceled, and any of the conditions for @code{config}. The @code{all}
10329 level logs all requests.
10330
10331 Defaults to @samp{actions}.
10332 @end deftypevr
10333
10334 @deftypevr {@code{cups-configuration} parameter} boolean auto-purge-jobs?
10335 Specifies whether to purge job history data automatically when it is no
10336 longer required for quotas.
10337
10338 Defaults to @samp{#f}.
10339 @end deftypevr
10340
10341 @deftypevr {@code{cups-configuration} parameter} browse-local-protocols browse-local-protocols
10342 Specifies which protocols to use for local printer sharing.
10343
10344 Defaults to @samp{dnssd}.
10345 @end deftypevr
10346
10347 @deftypevr {@code{cups-configuration} parameter} boolean browse-web-if?
10348 Specifies whether the CUPS web interface is advertised.
10349
10350 Defaults to @samp{#f}.
10351 @end deftypevr
10352
10353 @deftypevr {@code{cups-configuration} parameter} boolean browsing?
10354 Specifies whether shared printers are advertised.
10355
10356 Defaults to @samp{#f}.
10357 @end deftypevr
10358
10359 @deftypevr {@code{cups-configuration} parameter} string classification
10360 Specifies the security classification of the server. Any valid banner
10361 name can be used, including "classified", "confidential", "secret",
10362 "topsecret", and "unclassified", or the banner can be omitted to disable
10363 secure printing functions.
10364
10365 Defaults to @samp{""}.
10366 @end deftypevr
10367
10368 @deftypevr {@code{cups-configuration} parameter} boolean classify-override?
10369 Specifies whether users may override the classification (cover page) of
10370 individual print jobs using the @code{job-sheets} option.
10371
10372 Defaults to @samp{#f}.
10373 @end deftypevr
10374
10375 @deftypevr {@code{cups-configuration} parameter} default-auth-type default-auth-type
10376 Specifies the default type of authentication to use.
10377
10378 Defaults to @samp{Basic}.
10379 @end deftypevr
10380
10381 @deftypevr {@code{cups-configuration} parameter} default-encryption default-encryption
10382 Specifies whether encryption will be used for authenticated requests.
10383
10384 Defaults to @samp{Required}.
10385 @end deftypevr
10386
10387 @deftypevr {@code{cups-configuration} parameter} string default-language
10388 Specifies the default language to use for text and web content.
10389
10390 Defaults to @samp{"en"}.
10391 @end deftypevr
10392
10393 @deftypevr {@code{cups-configuration} parameter} string default-paper-size
10394 Specifies the default paper size for new print queues. @samp{"Auto"}
10395 uses a locale-specific default, while @samp{"None"} specifies there is
10396 no default paper size. Specific size names are typically
10397 @samp{"Letter"} or @samp{"A4"}.
10398
10399 Defaults to @samp{"Auto"}.
10400 @end deftypevr
10401
10402 @deftypevr {@code{cups-configuration} parameter} string default-policy
10403 Specifies the default access policy to use.
10404
10405 Defaults to @samp{"default"}.
10406 @end deftypevr
10407
10408 @deftypevr {@code{cups-configuration} parameter} boolean default-shared?
10409 Specifies whether local printers are shared by default.
10410
10411 Defaults to @samp{#t}.
10412 @end deftypevr
10413
10414 @deftypevr {@code{cups-configuration} parameter} non-negative-integer dirty-clean-interval
10415 Specifies the delay for updating of configuration and state files, in
10416 seconds. A value of 0 causes the update to happen as soon as possible,
10417 typically within a few milliseconds.
10418
10419 Defaults to @samp{30}.
10420 @end deftypevr
10421
10422 @deftypevr {@code{cups-configuration} parameter} error-policy error-policy
10423 Specifies what to do when an error occurs. Possible values are
10424 @code{abort-job}, which will discard the failed print job;
10425 @code{retry-job}, which will retry the job at a later time;
10426 @code{retry-this-job}, which retries the failed job immediately; and
10427 @code{stop-printer}, which stops the printer.
10428
10429 Defaults to @samp{stop-printer}.
10430 @end deftypevr
10431
10432 @deftypevr {@code{cups-configuration} parameter} non-negative-integer filter-limit
10433 Specifies the maximum cost of filters that are run concurrently, which
10434 can be used to minimize disk, memory, and CPU resource problems. A
10435 limit of 0 disables filter limiting. An average print to a
10436 non-PostScript printer needs a filter limit of about 200. A PostScript
10437 printer needs about half that (100). Setting the limit below these
10438 thresholds will effectively limit the scheduler to printing a single job
10439 at any time.
10440
10441 Defaults to @samp{0}.
10442 @end deftypevr
10443
10444 @deftypevr {@code{cups-configuration} parameter} non-negative-integer filter-nice
10445 Specifies the scheduling priority of filters that are run to print a
10446 job. The nice value ranges from 0, the highest priority, to 19, the
10447 lowest priority.
10448
10449 Defaults to @samp{0}.
10450 @end deftypevr
10451
10452 @deftypevr {@code{cups-configuration} parameter} host-name-lookups host-name-lookups
10453 Specifies whether to do reverse lookups on connecting clients. The
10454 @code{double} setting causes @code{cupsd} to verify that the hostname
10455 resolved from the address matches one of the addresses returned for that
10456 hostname. Double lookups also prevent clients with unregistered
10457 addresses from connecting to your server. Only set this option to
10458 @code{#t} or @code{double} if absolutely required.
10459
10460 Defaults to @samp{#f}.
10461 @end deftypevr
10462
10463 @deftypevr {@code{cups-configuration} parameter} non-negative-integer job-kill-delay
10464 Specifies the number of seconds to wait before killing the filters and
10465 backend associated with a canceled or held job.
10466
10467 Defaults to @samp{30}.
10468 @end deftypevr
10469
10470 @deftypevr {@code{cups-configuration} parameter} non-negative-integer job-retry-interval
10471 Specifies the interval between retries of jobs in seconds. This is
10472 typically used for fax queues but can also be used with normal print
10473 queues whose error policy is @code{retry-job} or
10474 @code{retry-current-job}.
10475
10476 Defaults to @samp{30}.
10477 @end deftypevr
10478
10479 @deftypevr {@code{cups-configuration} parameter} non-negative-integer job-retry-limit
10480 Specifies the number of retries that are done for jobs. This is
10481 typically used for fax queues but can also be used with normal print
10482 queues whose error policy is @code{retry-job} or
10483 @code{retry-current-job}.
10484
10485 Defaults to @samp{5}.
10486 @end deftypevr
10487
10488 @deftypevr {@code{cups-configuration} parameter} boolean keep-alive?
10489 Specifies whether to support HTTP keep-alive connections.
10490
10491 Defaults to @samp{#t}.
10492 @end deftypevr
10493
10494 @deftypevr {@code{cups-configuration} parameter} non-negative-integer keep-alive-timeout
10495 Specifies how long an idle client connection remains open, in seconds.
10496
10497 Defaults to @samp{30}.
10498 @end deftypevr
10499
10500 @deftypevr {@code{cups-configuration} parameter} non-negative-integer limit-request-body
10501 Specifies the maximum size of print files, IPP requests, and HTML form
10502 data. A limit of 0 disables the limit check.
10503
10504 Defaults to @samp{0}.
10505 @end deftypevr
10506
10507 @deftypevr {@code{cups-configuration} parameter} multiline-string-list listen
10508 Listens on the specified interfaces for connections. Valid values are
10509 of the form @var{address}:@var{port}, where @var{address} is either an
10510 IPv6 address enclosed in brackets, an IPv4 address, or @code{*} to
10511 indicate all addresses. Values can also be file names of local UNIX
10512 domain sockets. The Listen directive is similar to the Port directive
10513 but allows you to restrict access to specific interfaces or networks.
10514 @end deftypevr
10515
10516 @deftypevr {@code{cups-configuration} parameter} non-negative-integer listen-back-log
10517 Specifies the number of pending connections that will be allowed. This
10518 normally only affects very busy servers that have reached the MaxClients
10519 limit, but can also be triggered by large numbers of simultaneous
10520 connections. When the limit is reached, the operating system will
10521 refuse additional connections until the scheduler can accept the pending
10522 ones.
10523
10524 Defaults to @samp{128}.
10525 @end deftypevr
10526
10527 @deftypevr {@code{cups-configuration} parameter} location-access-control-list location-access-controls
10528 Specifies a set of additional access controls.
10529
10530 Available @code{location-access-controls} fields are:
10531
10532 @deftypevr {@code{location-access-controls} parameter} file-name path
10533 Specifies the URI path to which the access control applies.
10534 @end deftypevr
10535
10536 @deftypevr {@code{location-access-controls} parameter} access-control-list access-controls
10537 Access controls for all access to this path, in the same format as the
10538 @code{access-controls} of @code{operation-access-control}.
10539
10540 Defaults to @samp{()}.
10541 @end deftypevr
10542
10543 @deftypevr {@code{location-access-controls} parameter} method-access-control-list method-access-controls
10544 Access controls for method-specific access to this path.
10545
10546 Defaults to @samp{()}.
10547
10548 Available @code{method-access-controls} fields are:
10549
10550 @deftypevr {@code{method-access-controls} parameter} boolean reverse?
10551 If @code{#t}, apply access controls to all methods except the listed
10552 methods. Otherwise apply to only the listed methods.
10553
10554 Defaults to @samp{#f}.
10555 @end deftypevr
10556
10557 @deftypevr {@code{method-access-controls} parameter} method-list methods
10558 Methods to which this access control applies.
10559
10560 Defaults to @samp{()}.
10561 @end deftypevr
10562
10563 @deftypevr {@code{method-access-controls} parameter} access-control-list access-controls
10564 Access control directives, as a list of strings. Each string should be
10565 one directive, such as "Order allow,deny".
10566
10567 Defaults to @samp{()}.
10568 @end deftypevr
10569 @end deftypevr
10570 @end deftypevr
10571
10572 @deftypevr {@code{cups-configuration} parameter} non-negative-integer log-debug-history
10573 Specifies the number of debugging messages that are retained for logging
10574 if an error occurs in a print job. Debug messages are logged regardless
10575 of the LogLevel setting.
10576
10577 Defaults to @samp{100}.
10578 @end deftypevr
10579
10580 @deftypevr {@code{cups-configuration} parameter} log-level log-level
10581 Specifies the level of logging for the ErrorLog file. The value
10582 @code{none} stops all logging while @code{debug2} logs everything.
10583
10584 Defaults to @samp{info}.
10585 @end deftypevr
10586
10587 @deftypevr {@code{cups-configuration} parameter} log-time-format log-time-format
10588 Specifies the format of the date and time in the log files. The value
10589 @code{standard} logs whole seconds while @code{usecs} logs microseconds.
10590
10591 Defaults to @samp{standard}.
10592 @end deftypevr
10593
10594 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-clients
10595 Specifies the maximum number of simultaneous clients that are allowed by
10596 the scheduler.
10597
10598 Defaults to @samp{100}.
10599 @end deftypevr
10600
10601 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-clients-per-host
10602 Specifies the maximum number of simultaneous clients that are allowed
10603 from a single address.
10604
10605 Defaults to @samp{100}.
10606 @end deftypevr
10607
10608 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-copies
10609 Specifies the maximum number of copies that a user can print of each
10610 job.
10611
10612 Defaults to @samp{9999}.
10613 @end deftypevr
10614
10615 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-hold-time
10616 Specifies the maximum time a job may remain in the @code{indefinite}
10617 hold state before it is canceled. A value of 0 disables cancellation of
10618 held jobs.
10619
10620 Defaults to @samp{0}.
10621 @end deftypevr
10622
10623 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-jobs
10624 Specifies the maximum number of simultaneous jobs that are allowed. Set
10625 to 0 to allow an unlimited number of jobs.
10626
10627 Defaults to @samp{500}.
10628 @end deftypevr
10629
10630 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-jobs-per-printer
10631 Specifies the maximum number of simultaneous jobs that are allowed per
10632 printer. A value of 0 allows up to MaxJobs jobs per printer.
10633
10634 Defaults to @samp{0}.
10635 @end deftypevr
10636
10637 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-jobs-per-user
10638 Specifies the maximum number of simultaneous jobs that are allowed per
10639 user. A value of 0 allows up to MaxJobs jobs per user.
10640
10641 Defaults to @samp{0}.
10642 @end deftypevr
10643
10644 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-job-time
10645 Specifies the maximum time a job may take to print before it is
10646 canceled, in seconds. Set to 0 to disable cancellation of "stuck" jobs.
10647
10648 Defaults to @samp{10800}.
10649 @end deftypevr
10650
10651 @deftypevr {@code{cups-configuration} parameter} non-negative-integer max-log-size
10652 Specifies the maximum size of the log files before they are rotated, in
10653 bytes. The value 0 disables log rotation.
10654
10655 Defaults to @samp{1048576}.
10656 @end deftypevr
10657
10658 @deftypevr {@code{cups-configuration} parameter} non-negative-integer multiple-operation-timeout
10659 Specifies the maximum amount of time to allow between files in a
10660 multiple file print job, in seconds.
10661
10662 Defaults to @samp{300}.
10663 @end deftypevr
10664
10665 @deftypevr {@code{cups-configuration} parameter} string page-log-format
10666 Specifies the format of PageLog lines. Sequences beginning with percent
10667 (@samp{%}) characters are replaced with the corresponding information,
10668 while all other characters are copied literally. The following percent
10669 sequences are recognized:
10670
10671 @table @samp
10672 @item %%
10673 insert a single percent character
10674
10675 @item %@{name@}
10676 insert the value of the specified IPP attribute
10677
10678 @item %C
10679 insert the number of copies for the current page
10680
10681 @item %P
10682 insert the current page number
10683
10684 @item %T
10685 insert the current date and time in common log format
10686
10687 @item %j
10688 insert the job ID
10689
10690 @item %p
10691 insert the printer name
10692
10693 @item %u
10694 insert the username
10695 @end table
10696
10697 A value of the empty string disables page logging. The string @code{%p
10698 %u %j %T %P %C %@{job-billing@} %@{job-originating-host-name@}
10699 %@{job-name@} %@{media@} %@{sides@}} creates a page log with the
10700 standard items.
10701
10702 Defaults to @samp{""}.
10703 @end deftypevr
10704
10705 @deftypevr {@code{cups-configuration} parameter} environment-variables environment-variables
10706 Passes the specified environment variable(s) to child processes; a list
10707 of strings.
10708
10709 Defaults to @samp{()}.
10710 @end deftypevr
10711
10712 @deftypevr {@code{cups-configuration} parameter} policy-configuration-list policies
10713 Specifies named access control policies.
10714
10715 Available @code{policy-configuration} fields are:
10716
10717 @deftypevr {@code{policy-configuration} parameter} string name
10718 Name of the policy.
10719 @end deftypevr
10720
10721 @deftypevr {@code{policy-configuration} parameter} string job-private-access
10722 Specifies an access list for a job's private values. @code{@@ACL} maps
10723 to the printer's requesting-user-name-allowed or
10724 requesting-user-name-denied values. @code{@@OWNER} maps to the job's
10725 owner. @code{@@SYSTEM} maps to the groups listed for the
10726 @code{system-group} field of the @code{files-config} configuration,
10727 which is reified into the @code{cups-files.conf(5)} file. Other
10728 possible elements of the access list include specific user names, and
10729 @code{@@@var{group}} to indicate members of a specific group. The
10730 access list may also be simply @code{all} or @code{default}.
10731
10732 Defaults to @samp{"@@OWNER @@SYSTEM"}.
10733 @end deftypevr
10734
10735 @deftypevr {@code{policy-configuration} parameter} string job-private-values
10736 Specifies the list of job values to make private, or @code{all},
10737 @code{default}, or @code{none}.
10738
10739 Defaults to @samp{"job-name job-originating-host-name
10740 job-originating-user-name phone"}.
10741 @end deftypevr
10742
10743 @deftypevr {@code{policy-configuration} parameter} string subscription-private-access
10744 Specifies an access list for a subscription's private values.
10745 @code{@@ACL} maps to the printer's requesting-user-name-allowed or
10746 requesting-user-name-denied values. @code{@@OWNER} maps to the job's
10747 owner. @code{@@SYSTEM} maps to the groups listed for the
10748 @code{system-group} field of the @code{files-config} configuration,
10749 which is reified into the @code{cups-files.conf(5)} file. Other
10750 possible elements of the access list include specific user names, and
10751 @code{@@@var{group}} to indicate members of a specific group. The
10752 access list may also be simply @code{all} or @code{default}.
10753
10754 Defaults to @samp{"@@OWNER @@SYSTEM"}.
10755 @end deftypevr
10756
10757 @deftypevr {@code{policy-configuration} parameter} string subscription-private-values
10758 Specifies the list of job values to make private, or @code{all},
10759 @code{default}, or @code{none}.
10760
10761 Defaults to @samp{"notify-events notify-pull-method notify-recipient-uri
10762 notify-subscriber-user-name notify-user-data"}.
10763 @end deftypevr
10764
10765 @deftypevr {@code{policy-configuration} parameter} operation-access-control-list access-controls
10766 Access control by IPP operation.
10767
10768 Defaults to @samp{()}.
10769 @end deftypevr
10770 @end deftypevr
10771
10772 @deftypevr {@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-files
10773 Specifies whether job files (documents) are preserved after a job is
10774 printed. If a numeric value is specified, job files are preserved for
10775 the indicated number of seconds after printing. Otherwise a boolean
10776 value applies indefinitely.
10777
10778 Defaults to @samp{86400}.
10779 @end deftypevr
10780
10781 @deftypevr {@code{cups-configuration} parameter} boolean-or-non-negative-integer preserve-job-history
10782 Specifies whether the job history is preserved after a job is printed.
10783 If a numeric value is specified, the job history is preserved for the
10784 indicated number of seconds after printing. If @code{#t}, the job
10785 history is preserved until the MaxJobs limit is reached.
10786
10787 Defaults to @samp{#t}.
10788 @end deftypevr
10789
10790 @deftypevr {@code{cups-configuration} parameter} non-negative-integer reload-timeout
10791 Specifies the amount of time to wait for job completion before
10792 restarting the scheduler.
10793
10794 Defaults to @samp{30}.
10795 @end deftypevr
10796
10797 @deftypevr {@code{cups-configuration} parameter} string rip-cache
10798 Specifies the maximum amount of memory to use when converting documents
10799 into bitmaps for a printer.
10800
10801 Defaults to @samp{"128m"}.
10802 @end deftypevr
10803
10804 @deftypevr {@code{cups-configuration} parameter} string server-admin
10805 Specifies the email address of the server administrator.
10806
10807 Defaults to @samp{"root@@localhost.localdomain"}.
10808 @end deftypevr
10809
10810 @deftypevr {@code{cups-configuration} parameter} host-name-list-or-* server-alias
10811 The ServerAlias directive is used for HTTP Host header validation when
10812 clients connect to the scheduler from external interfaces. Using the
10813 special name @code{*} can expose your system to known browser-based DNS
10814 rebinding attacks, even when accessing sites through a firewall. If the
10815 auto-discovery of alternate names does not work, we recommend listing
10816 each alternate name with a ServerAlias directive instead of using
10817 @code{*}.
10818
10819 Defaults to @samp{*}.
10820 @end deftypevr
10821
10822 @deftypevr {@code{cups-configuration} parameter} string server-name
10823 Specifies the fully-qualified host name of the server.
10824
10825 Defaults to @samp{"localhost"}.
10826 @end deftypevr
10827
10828 @deftypevr {@code{cups-configuration} parameter} server-tokens server-tokens
10829 Specifies what information is included in the Server header of HTTP
10830 responses. @code{None} disables the Server header. @code{ProductOnly}
10831 reports @code{CUPS}. @code{Major} reports @code{CUPS 2}. @code{Minor}
10832 reports @code{CUPS 2.0}. @code{Minimal} reports @code{CUPS 2.0.0}.
10833 @code{OS} reports @code{CUPS 2.0.0 (@var{uname})} where @var{uname} is
10834 the output of the @code{uname} command. @code{Full} reports @code{CUPS
10835 2.0.0 (@var{uname}) IPP/2.0}.
10836
10837 Defaults to @samp{Minimal}.
10838 @end deftypevr
10839
10840 @deftypevr {@code{cups-configuration} parameter} string set-env
10841 Set the specified environment variable to be passed to child processes.
10842
10843 Defaults to @samp{"variable value"}.
10844 @end deftypevr
10845
10846 @deftypevr {@code{cups-configuration} parameter} multiline-string-list ssl-listen
10847 Listens on the specified interfaces for encrypted connections. Valid
10848 values are of the form @var{address}:@var{port}, where @var{address} is
10849 either an IPv6 address enclosed in brackets, an IPv4 address, or
10850 @code{*} to indicate all addresses.
10851
10852 Defaults to @samp{()}.
10853 @end deftypevr
10854
10855 @deftypevr {@code{cups-configuration} parameter} ssl-options ssl-options
10856 Sets encryption options. By default, CUPS only supports encryption
10857 using TLS v1.0 or higher using known secure cipher suites. The
10858 @code{AllowRC4} option enables the 128-bit RC4 cipher suites, which are
10859 required for some older clients that do not implement newer ones. The
10860 @code{AllowSSL3} option enables SSL v3.0, which is required for some
10861 older clients that do not support TLS v1.0.
10862
10863 Defaults to @samp{()}.
10864 @end deftypevr
10865
10866 @deftypevr {@code{cups-configuration} parameter} boolean strict-conformance?
10867 Specifies whether the scheduler requires clients to strictly adhere to
10868 the IPP specifications.
10869
10870 Defaults to @samp{#f}.
10871 @end deftypevr
10872
10873 @deftypevr {@code{cups-configuration} parameter} non-negative-integer timeout
10874 Specifies the HTTP request timeout, in seconds.
10875
10876 Defaults to @samp{300}.
10877
10878 @end deftypevr
10879
10880 @deftypevr {@code{cups-configuration} parameter} boolean web-interface?
10881 Specifies whether the web interface is enabled.
10882
10883 Defaults to @samp{#f}.
10884 @end deftypevr
10885
10886 At this point you're probably thinking ``oh dear, Guix manual, I like
10887 you but you can stop already with the configuration options''. Indeed.
10888 However, one more point: it could be that you have an existing
10889 @code{cupsd.conf} that you want to use. In that case, you can pass an
10890 @code{opaque-cups-configuration} as the configuration of a
10891 @code{cups-service-type}.
10892
10893 Available @code{opaque-cups-configuration} fields are:
10894
10895 @deftypevr {@code{opaque-cups-configuration} parameter} package cups
10896 The CUPS package.
10897 @end deftypevr
10898
10899 @deftypevr {@code{opaque-cups-configuration} parameter} string cupsd.conf
10900 The contents of the @code{cupsd.conf}, as a string.
10901 @end deftypevr
10902
10903 @deftypevr {@code{opaque-cups-configuration} parameter} string cups-files.conf
10904 The contents of the @code{cups-files.conf} file, as a string.
10905 @end deftypevr
10906
10907 For example, if your @code{cupsd.conf} and @code{cups-files.conf} are in
10908 strings of the same name, you could instantiate a CUPS service like
10909 this:
10910
10911 @example
10912 (service cups-service-type
10913 (opaque-cups-configuration
10914 (cupsd.conf cupsd.conf)
10915 (cups-files.conf cups-files.conf)))
10916 @end example
10917
10918
10919 @node Desktop Services
10920 @subsubsection Desktop Services
10921
10922 The @code{(gnu services desktop)} module provides services that are
10923 usually useful in the context of a ``desktop'' setup---that is, on a
10924 machine running a graphical display server, possibly with graphical user
10925 interfaces, etc. It also defines services that provide specific desktop
10926 environments like GNOME and XFCE.
10927
10928 To simplify things, the module defines a variable containing the set of
10929 services that users typically expect on a machine with a graphical
10930 environment and networking:
10931
10932 @defvr {Scheme Variable} %desktop-services
10933 This is a list of services that builds upon @var{%base-services} and
10934 adds or adjusts services for a typical ``desktop'' setup.
10935
10936 In particular, it adds a graphical login manager (@pxref{X Window,
10937 @code{slim-service}}), screen lockers,
10938 a network management tool (@pxref{Networking
10939 Services, @code{wicd-service}}), energy and color management services,
10940 the @code{elogind} login and seat manager, the Polkit privilege service,
10941 the GeoClue location service, an NTP client (@pxref{Networking
10942 Services}), the Avahi daemon, and has the name service switch service
10943 configured to be able to use @code{nss-mdns} (@pxref{Name Service
10944 Switch, mDNS}).
10945 @end defvr
10946
10947 The @var{%desktop-services} variable can be used as the @code{services}
10948 field of an @code{operating-system} declaration (@pxref{operating-system
10949 Reference, @code{services}}).
10950
10951 Additionally, the @code{gnome-desktop-service} and
10952 @code{xfce-desktop-service} procedures can add GNOME and/or XFCE to a
10953 system. To ``add GNOME'' means that system-level services like the
10954 backlight adjustment helpers and the power management utilities are
10955 added to the system, extending @code{polkit} and @code{dbus}
10956 appropriately, allowing GNOME to operate with elevated privileges on a
10957 limited number of special-purpose system interfaces. Additionally,
10958 adding a service made by @code{gnome-desktop-service} adds the GNOME
10959 metapackage to the system profile. Likewise, adding the XFCE service
10960 not only adds the @code{xfce} metapackage to the system profile, but it
10961 also gives the Thunar file manager the ability to open a ``root-mode''
10962 file management window, if the user authenticates using the
10963 administrator's password via the standard polkit graphical interface.
10964
10965 @deffn {Scheme Procedure} gnome-desktop-service
10966 Return a service that adds the @code{gnome} package to the system
10967 profile, and extends polkit with the actions from
10968 @code{gnome-settings-daemon}.
10969 @end deffn
10970
10971 @deffn {Scheme Procedure} xfce-desktop-service
10972 Return a service that adds the @code{xfce} package to the system profile,
10973 and extends polkit with the ability for @code{thunar} to manipulate the
10974 file system as root from within a user session, after the user has
10975 authenticated with the administrator's password.
10976 @end deffn
10977
10978 Because the GNOME and XFCE desktop services pull in so many packages,
10979 the default @code{%desktop-services} variable doesn't include either of
10980 them by default. To add GNOME or XFCE, just @code{cons} them onto
10981 @code{%desktop-services} in the @code{services} field of your
10982 @code{operating-system}:
10983
10984 @example
10985 (use-modules (gnu))
10986 (use-service-modules desktop)
10987 (operating-system
10988 ...
10989 ;; cons* adds items to the list given as its last argument.
10990 (services (cons* (gnome-desktop-service)
10991 (xfce-desktop-service)
10992 %desktop-services))
10993 ...)
10994 @end example
10995
10996 These desktop environments will then be available as options in the
10997 graphical login window.
10998
10999 The actual service definitions included in @code{%desktop-services} and
11000 provided by @code{(gnu services dbus)} and @code{(gnu services desktop)}
11001 are described below.
11002
11003 @deffn {Scheme Procedure} dbus-service [#:dbus @var{dbus}] [#:services '()]
11004 Return a service that runs the ``system bus'', using @var{dbus}, with
11005 support for @var{services}.
11006
11007 @uref{http://dbus.freedesktop.org/, D-Bus} is an inter-process communication
11008 facility. Its system bus is used to allow system services to communicate
11009 and to be notified of system-wide events.
11010
11011 @var{services} must be a list of packages that provide an
11012 @file{etc/dbus-1/system.d} directory containing additional D-Bus configuration
11013 and policy files. For example, to allow avahi-daemon to use the system bus,
11014 @var{services} must be equal to @code{(list avahi)}.
11015 @end deffn
11016
11017 @deffn {Scheme Procedure} elogind-service [#:config @var{config}]
11018 Return a service that runs the @code{elogind} login and
11019 seat management daemon. @uref{https://github.com/andywingo/elogind,
11020 Elogind} exposes a D-Bus interface that can be used to know which users
11021 are logged in, know what kind of sessions they have open, suspend the
11022 system, inhibit system suspend, reboot the system, and other tasks.
11023
11024 Elogind handles most system-level power events for a computer, for
11025 example suspending the system when a lid is closed, or shutting it down
11026 when the power button is pressed.
11027
11028 The @var{config} keyword argument specifies the configuration for
11029 elogind, and should be the result of an @code{(elogind-configuration
11030 (@var{parameter} @var{value})...)} invocation. Available parameters and
11031 their default values are:
11032
11033 @table @code
11034 @item kill-user-processes?
11035 @code{#f}
11036 @item kill-only-users
11037 @code{()}
11038 @item kill-exclude-users
11039 @code{("root")}
11040 @item inhibit-delay-max-seconds
11041 @code{5}
11042 @item handle-power-key
11043 @code{poweroff}
11044 @item handle-suspend-key
11045 @code{suspend}
11046 @item handle-hibernate-key
11047 @code{hibernate}
11048 @item handle-lid-switch
11049 @code{suspend}
11050 @item handle-lid-switch-docked
11051 @code{ignore}
11052 @item power-key-ignore-inhibited?
11053 @code{#f}
11054 @item suspend-key-ignore-inhibited?
11055 @code{#f}
11056 @item hibernate-key-ignore-inhibited?
11057 @code{#f}
11058 @item lid-switch-ignore-inhibited?
11059 @code{#t}
11060 @item holdoff-timeout-seconds
11061 @code{30}
11062 @item idle-action
11063 @code{ignore}
11064 @item idle-action-seconds
11065 @code{(* 30 60)}
11066 @item runtime-directory-size-percent
11067 @code{10}
11068 @item runtime-directory-size
11069 @code{#f}
11070 @item remove-ipc?
11071 @code{#t}
11072 @item suspend-state
11073 @code{("mem" "standby" "freeze")}
11074 @item suspend-mode
11075 @code{()}
11076 @item hibernate-state
11077 @code{("disk")}
11078 @item hibernate-mode
11079 @code{("platform" "shutdown")}
11080 @item hybrid-sleep-state
11081 @code{("disk")}
11082 @item hybrid-sleep-mode
11083 @code{("suspend" "platform" "shutdown")}
11084 @end table
11085 @end deffn
11086
11087 @deffn {Scheme Procedure} polkit-service @
11088 [#:polkit @var{polkit}]
11089 Return a service that runs the
11090 @uref{http://www.freedesktop.org/wiki/Software/polkit/, Polkit privilege
11091 management service}, which allows system administrators to grant access to
11092 privileged operations in a structured way. By querying the Polkit service, a
11093 privileged system component can know when it should grant additional
11094 capabilities to ordinary users. For example, an ordinary user can be granted
11095 the capability to suspend the system if the user is logged in locally.
11096 @end deffn
11097
11098 @deffn {Scheme Procedure} upower-service [#:upower @var{upower}] @
11099 [#:watts-up-pro? #f] @
11100 [#:poll-batteries? #t] @
11101 [#:ignore-lid? #f] @
11102 [#:use-percentage-for-policy? #f] @
11103 [#:percentage-low 10] @
11104 [#:percentage-critical 3] @
11105 [#:percentage-action 2] @
11106 [#:time-low 1200] @
11107 [#:time-critical 300] @
11108 [#:time-action 120] @
11109 [#:critical-power-action 'hybrid-sleep]
11110 Return a service that runs @uref{http://upower.freedesktop.org/,
11111 @command{upowerd}}, a system-wide monitor for power consumption and battery
11112 levels, with the given configuration settings. It implements the
11113 @code{org.freedesktop.UPower} D-Bus interface, and is notably used by
11114 GNOME.
11115 @end deffn
11116
11117 @deffn {Scheme Procedure} udisks-service [#:udisks @var{udisks}]
11118 Return a service for @uref{http://udisks.freedesktop.org/docs/latest/,
11119 UDisks}, a @dfn{disk management} daemon that provides user interfaces with
11120 notifications and ways to mount/unmount disks. Programs that talk to UDisks
11121 include the @command{udisksctl} command, part of UDisks, and GNOME Disks.
11122 @end deffn
11123
11124 @deffn {Scheme Procedure} colord-service [#:colord @var{colord}]
11125 Return a service that runs @command{colord}, a system service with a D-Bus
11126 interface to manage the color profiles of input and output devices such as
11127 screens and scanners. It is notably used by the GNOME Color Manager graphical
11128 tool. See @uref{http://www.freedesktop.org/software/colord/, the colord web
11129 site} for more information.
11130 @end deffn
11131
11132 @deffn {Scheme Procedure} geoclue-application name [#:allowed? #t] [#:system? #f] [#:users '()]
11133 Return a configuration allowing an application to access GeoClue
11134 location data. @var{name} is the Desktop ID of the application, without
11135 the @code{.desktop} part. If @var{allowed?} is true, the application
11136 will have access to location information by default. The boolean
11137 @var{system?} value indicates whether an application is a system component
11138 or not. Finally @var{users} is a list of UIDs of all users for which
11139 this application is allowed location info access. An empty users list
11140 means that all users are allowed.
11141 @end deffn
11142
11143 @defvr {Scheme Variable} %standard-geoclue-applications
11144 The standard list of well-known GeoClue application configurations,
11145 granting authority to the GNOME date-and-time utility to ask for the
11146 current location in order to set the time zone, and allowing the
11147 IceCat and Epiphany web browsers to request location information.
11148 IceCat and Epiphany both query the user before allowing a web page to
11149 know the user's location.
11150 @end defvr
11151
11152 @deffn {Scheme Procedure} geoclue-service [#:colord @var{colord}] @
11153 [#:whitelist '()] @
11154 [#:wifi-geolocation-url "https://location.services.mozilla.com/v1/geolocate?key=geoclue"] @
11155 [#:submit-data? #f]
11156 [#:wifi-submission-url "https://location.services.mozilla.com/v1/submit?key=geoclue"] @
11157 [#:submission-nick "geoclue"] @
11158 [#:applications %standard-geoclue-applications]
11159 Return a service that runs the GeoClue location service. This service
11160 provides a D-Bus interface to allow applications to request access to a
11161 user's physical location, and optionally to add information to online
11162 location databases. See
11163 @uref{https://wiki.freedesktop.org/www/Software/GeoClue/, the GeoClue
11164 web site} for more information.
11165 @end deffn
11166
11167 @deffn {Scheme Procedure} bluetooth-service [#:bluez @var{bluez}]
11168 Return a service that runs the @command{bluetoothd} daemon, which manages
11169 all the Bluetooth devices and provides a number of D-Bus interfaces.
11170
11171 Users need to be in the @code{lp} group to access the D-Bus service.
11172 @end deffn
11173
11174 @node Database Services
11175 @subsubsection Database Services
11176
11177 @cindex database
11178 @cindex SQL
11179 The @code{(gnu services databases)} module provides the following services.
11180
11181 @deffn {Scheme Procedure} postgresql-service [#:postgresql postgresql] @
11182 [#:config-file] [#:data-directory ``/var/lib/postgresql/data''] @
11183 [#:port 5432] [#:locale ``en_US.utf8'']
11184 Return a service that runs @var{postgresql}, the PostgreSQL database
11185 server.
11186
11187 The PostgreSQL daemon loads its runtime configuration from @var{config-file},
11188 creates a database cluster with @var{locale} as the default
11189 locale, stored in @var{data-directory}. It then listens on @var{port}.
11190 @end deffn
11191
11192 @deffn {Scheme Procedure} mysql-service [#:config (mysql-configuration)]
11193 Return a service that runs @command{mysqld}, the MySQL or MariaDB
11194 database server.
11195
11196 The optional @var{config} argument specifies the configuration for
11197 @command{mysqld}, which should be a @code{<mysql-configuration>} object.
11198 @end deffn
11199
11200 @deftp {Data Type} mysql-configuration
11201 Data type representing the configuration of @var{mysql-service}.
11202
11203 @table @asis
11204 @item @code{mysql} (default: @var{mariadb})
11205 Package object of the MySQL database server, can be either @var{mariadb}
11206 or @var{mysql}.
11207
11208 For MySQL, a temporary root password will be displayed at activation time.
11209 For MariaDB, the root password is empty.
11210
11211 @item @code{port} (default: @code{3306})
11212 TCP port on which the database server listens for incoming connections.
11213 @end table
11214 @end deftp
11215
11216 @defvr {Scheme Variable} redis-service-type
11217 This is the service type for the @uref{https://redis.io/, Redis}
11218 key/value store, whose value is a @code{redis-configuration} object.
11219 @end defvr
11220
11221 @deftp {Data Type} redis-configuration
11222 Data type representing the configuration of redis.
11223
11224 @table @asis
11225 @item @code{redis} (default: @code{redis})
11226 The Redis package to use.
11227
11228 @item @code{bind} (default: @code{"127.0.0.1"})
11229 Network interface on which to listen.
11230
11231 @item @code{port} (default: @code{6379})
11232 Port on which to accept connections on, a value of 0 will disable
11233 listening on a TCP socket.
11234
11235 @item @code{working-directory} (default: @code{"/var/lib/redis"})
11236 Directory in which to store the database and related files.
11237 @end table
11238 @end deftp
11239
11240 @node Mail Services
11241 @subsubsection Mail Services
11242
11243 @cindex mail
11244 @cindex email
11245 The @code{(gnu services mail)} module provides Guix service definitions
11246 for email services: IMAP, POP3, and LMTP servers, as well as mail
11247 transport agents (MTAs). Lots of acronyms! These services are detailed
11248 in the subsections below.
11249
11250 @subsubheading Dovecot Service
11251
11252 @deffn {Scheme Procedure} dovecot-service [#:config (dovecot-configuration)]
11253 Return a service that runs the Dovecot IMAP/POP3/LMTP mail server.
11254 @end deffn
11255
11256 By default, Dovecot does not need much configuration; the default
11257 configuration object created by @code{(dovecot-configuration)} will
11258 suffice if your mail is delivered to @code{~/Maildir}. A self-signed
11259 certificate will be generated for TLS-protected connections, though
11260 Dovecot will also listen on cleartext ports by default. There are a
11261 number of options, though, which mail administrators might need to change,
11262 and as is the case with other services, Guix allows the system
11263 administrator to specify these parameters via a uniform Scheme interface.
11264
11265 For example, to specify that mail is located at @code{maildir~/.mail},
11266 one would instantiate the Dovecot service like this:
11267
11268 @example
11269 (dovecot-service #:config
11270 (dovecot-configuration
11271 (mail-location "maildir:~/.mail")))
11272 @end example
11273
11274 The available configuration parameters follow. Each parameter
11275 definition is preceded by its type; for example, @samp{string-list foo}
11276 indicates that the @code{foo} parameter should be specified as a list of
11277 strings. There is also a way to specify the configuration as a string,
11278 if you have an old @code{dovecot.conf} file that you want to port over
11279 from some other system; see the end for more details.
11280
11281 @c The following documentation was initially generated by
11282 @c (generate-documentation) in (gnu services mail). Manually maintained
11283 @c documentation is better, so we shouldn't hesitate to edit below as
11284 @c needed. However if the change you want to make to this documentation
11285 @c can be done in an automated way, it's probably easier to change
11286 @c (generate-documentation) than to make it below and have to deal with
11287 @c the churn as dovecot updates.
11288
11289 Available @code{dovecot-configuration} fields are:
11290
11291 @deftypevr {@code{dovecot-configuration} parameter} package dovecot
11292 The dovecot package.
11293 @end deftypevr
11294
11295 @deftypevr {@code{dovecot-configuration} parameter} comma-separated-string-list listen
11296 A list of IPs or hosts where to listen for connections. @samp{*}
11297 listens on all IPv4 interfaces, @samp{::} listens on all IPv6
11298 interfaces. If you want to specify non-default ports or anything more
11299 complex, customize the address and port fields of the
11300 @samp{inet-listener} of the specific services you are interested in.
11301 @end deftypevr
11302
11303 @deftypevr {@code{dovecot-configuration} parameter} protocol-configuration-list protocols
11304 List of protocols we want to serve. Available protocols include
11305 @samp{imap}, @samp{pop3}, and @samp{lmtp}.
11306
11307 Available @code{protocol-configuration} fields are:
11308
11309 @deftypevr {@code{protocol-configuration} parameter} string name
11310 The name of the protocol.
11311 @end deftypevr
11312
11313 @deftypevr {@code{protocol-configuration} parameter} string auth-socket-path
11314 UNIX socket path to the master authentication server to find users.
11315 This is used by imap (for shared users) and lda.
11316 It defaults to @samp{"/var/run/dovecot/auth-userdb"}.
11317 @end deftypevr
11318
11319 @deftypevr {@code{protocol-configuration} parameter} space-separated-string-list mail-plugins
11320 Space separated list of plugins to load.
11321 @end deftypevr
11322
11323 @deftypevr {@code{protocol-configuration} parameter} non-negative-integer mail-max-userip-connections
11324 Maximum number of IMAP connections allowed for a user from each IP
11325 address. NOTE: The username is compared case-sensitively.
11326 Defaults to @samp{10}.
11327 @end deftypevr
11328
11329 @end deftypevr
11330
11331 @deftypevr {@code{dovecot-configuration} parameter} service-configuration-list services
11332 List of services to enable. Available services include @samp{imap},
11333 @samp{imap-login}, @samp{pop3}, @samp{pop3-login}, @samp{auth}, and
11334 @samp{lmtp}.
11335
11336 Available @code{service-configuration} fields are:
11337
11338 @deftypevr {@code{service-configuration} parameter} string kind
11339 The service kind. Valid values include @code{director},
11340 @code{imap-login}, @code{pop3-login}, @code{lmtp}, @code{imap},
11341 @code{pop3}, @code{auth}, @code{auth-worker}, @code{dict},
11342 @code{tcpwrap}, @code{quota-warning}, or anything else.
11343 @end deftypevr
11344
11345 @deftypevr {@code{service-configuration} parameter} listener-configuration-list listeners
11346 Listeners for the service. A listener is either a
11347 @code{unix-listener-configuration}, a @code{fifo-listener-configuration}, or
11348 an @code{inet-listener-configuration}.
11349 Defaults to @samp{()}.
11350
11351 Available @code{unix-listener-configuration} fields are:
11352
11353 @deftypevr {@code{unix-listener-configuration} parameter} string path
11354 Path to the file, relative to @code{base-dir} field. This is also used as
11355 the section name.
11356 @end deftypevr
11357
11358 @deftypevr {@code{unix-listener-configuration} parameter} string mode
11359 The access mode for the socket.
11360 Defaults to @samp{"0600"}.
11361 @end deftypevr
11362
11363 @deftypevr {@code{unix-listener-configuration} parameter} string user
11364 The user to own the socket.
11365 Defaults to @samp{""}.
11366 @end deftypevr
11367
11368 @deftypevr {@code{unix-listener-configuration} parameter} string group
11369 The group to own the socket.
11370 Defaults to @samp{""}.
11371 @end deftypevr
11372
11373
11374 Available @code{fifo-listener-configuration} fields are:
11375
11376 @deftypevr {@code{fifo-listener-configuration} parameter} string path
11377 Path to the file, relative to @code{base-dir} field. This is also used as
11378 the section name.
11379 @end deftypevr
11380
11381 @deftypevr {@code{fifo-listener-configuration} parameter} string mode
11382 The access mode for the socket.
11383 Defaults to @samp{"0600"}.
11384 @end deftypevr
11385
11386 @deftypevr {@code{fifo-listener-configuration} parameter} string user
11387 The user to own the socket.
11388 Defaults to @samp{""}.
11389 @end deftypevr
11390
11391 @deftypevr {@code{fifo-listener-configuration} parameter} string group
11392 The group to own the socket.
11393 Defaults to @samp{""}.
11394 @end deftypevr
11395
11396
11397 Available @code{inet-listener-configuration} fields are:
11398
11399 @deftypevr {@code{inet-listener-configuration} parameter} string protocol
11400 The protocol to listen for.
11401 @end deftypevr
11402
11403 @deftypevr {@code{inet-listener-configuration} parameter} string address
11404 The address on which to listen, or empty for all addresses.
11405 Defaults to @samp{""}.
11406 @end deftypevr
11407
11408 @deftypevr {@code{inet-listener-configuration} parameter} non-negative-integer port
11409 The port on which to listen.
11410 @end deftypevr
11411
11412 @deftypevr {@code{inet-listener-configuration} parameter} boolean ssl?
11413 Whether to use SSL for this service; @samp{yes}, @samp{no}, or
11414 @samp{required}.
11415 Defaults to @samp{#t}.
11416 @end deftypevr
11417
11418 @end deftypevr
11419
11420 @deftypevr {@code{service-configuration} parameter} non-negative-integer service-count
11421 Number of connections to handle before starting a new process.
11422 Typically the only useful values are 0 (unlimited) or 1. 1 is more
11423 secure, but 0 is faster. <doc/wiki/LoginProcess.txt>.
11424 Defaults to @samp{1}.
11425 @end deftypevr
11426
11427 @deftypevr {@code{service-configuration} parameter} non-negative-integer process-min-avail
11428 Number of processes to always keep waiting for more connections.
11429 Defaults to @samp{0}.
11430 @end deftypevr
11431
11432 @deftypevr {@code{service-configuration} parameter} non-negative-integer vsz-limit
11433 If you set @samp{service-count 0}, you probably need to grow
11434 this.
11435 Defaults to @samp{256000000}.
11436 @end deftypevr
11437
11438 @end deftypevr
11439
11440 @deftypevr {@code{dovecot-configuration} parameter} dict-configuration dict
11441 Dict configuration, as created by the @code{dict-configuration}
11442 constructor.
11443
11444 Available @code{dict-configuration} fields are:
11445
11446 @deftypevr {@code{dict-configuration} parameter} free-form-fields entries
11447 A list of key-value pairs that this dict should hold.
11448 Defaults to @samp{()}.
11449 @end deftypevr
11450
11451 @end deftypevr
11452
11453 @deftypevr {@code{dovecot-configuration} parameter} passdb-configuration-list passdbs
11454 A list of passdb configurations, each one created by the
11455 @code{passdb-configuration} constructor.
11456
11457 Available @code{passdb-configuration} fields are:
11458
11459 @deftypevr {@code{passdb-configuration} parameter} string driver
11460 The driver that the passdb should use. Valid values include
11461 @samp{pam}, @samp{passwd}, @samp{shadow}, @samp{bsdauth}, and
11462 @samp{static}.
11463 Defaults to @samp{"pam"}.
11464 @end deftypevr
11465
11466 @deftypevr {@code{passdb-configuration} parameter} space-separated-string-list args
11467 Space separated list of arguments to the passdb driver.
11468 Defaults to @samp{""}.
11469 @end deftypevr
11470
11471 @end deftypevr
11472
11473 @deftypevr {@code{dovecot-configuration} parameter} userdb-configuration-list userdbs
11474 List of userdb configurations, each one created by the
11475 @code{userdb-configuration} constructor.
11476
11477 Available @code{userdb-configuration} fields are:
11478
11479 @deftypevr {@code{userdb-configuration} parameter} string driver
11480 The driver that the userdb should use. Valid values include
11481 @samp{passwd} and @samp{static}.
11482 Defaults to @samp{"passwd"}.
11483 @end deftypevr
11484
11485 @deftypevr {@code{userdb-configuration} parameter} space-separated-string-list args
11486 Space separated list of arguments to the userdb driver.
11487 Defaults to @samp{""}.
11488 @end deftypevr
11489
11490 @deftypevr {@code{userdb-configuration} parameter} free-form-args override-fields
11491 Override fields from passwd.
11492 Defaults to @samp{()}.
11493 @end deftypevr
11494
11495 @end deftypevr
11496
11497 @deftypevr {@code{dovecot-configuration} parameter} plugin-configuration plugin-configuration
11498 Plug-in configuration, created by the @code{plugin-configuration}
11499 constructor.
11500 @end deftypevr
11501
11502 @deftypevr {@code{dovecot-configuration} parameter} list-of-namespace-configuration namespaces
11503 List of namespaces. Each item in the list is created by the
11504 @code{namespace-configuration} constructor.
11505
11506 Available @code{namespace-configuration} fields are:
11507
11508 @deftypevr {@code{namespace-configuration} parameter} string name
11509 Name for this namespace.
11510 @end deftypevr
11511
11512 @deftypevr {@code{namespace-configuration} parameter} string type
11513 Namespace type: @samp{private}, @samp{shared} or @samp{public}.
11514 Defaults to @samp{"private"}.
11515 @end deftypevr
11516
11517 @deftypevr {@code{namespace-configuration} parameter} string separator
11518 Hierarchy separator to use. You should use the same separator for
11519 all namespaces or some clients get confused. @samp{/} is usually a good
11520 one. The default however depends on the underlying mail storage
11521 format.
11522 Defaults to @samp{""}.
11523 @end deftypevr
11524
11525 @deftypevr {@code{namespace-configuration} parameter} string prefix
11526 Prefix required to access this namespace. This needs to be
11527 different for all namespaces. For example @samp{Public/}.
11528 Defaults to @samp{""}.
11529 @end deftypevr
11530
11531 @deftypevr {@code{namespace-configuration} parameter} string location
11532 Physical location of the mailbox. This is in the same format as
11533 mail_location, which is also the default for it.
11534 Defaults to @samp{""}.
11535 @end deftypevr
11536
11537 @deftypevr {@code{namespace-configuration} parameter} boolean inbox?
11538 There can be only one INBOX, and this setting defines which
11539 namespace has it.
11540 Defaults to @samp{#f}.
11541 @end deftypevr
11542
11543 @deftypevr {@code{namespace-configuration} parameter} boolean hidden?
11544 If namespace is hidden, it's not advertised to clients via NAMESPACE
11545 extension. You'll most likely also want to set @samp{list? #f}. This is mostly
11546 useful when converting from another server with different namespaces
11547 which you want to deprecate but still keep working. For example you can
11548 create hidden namespaces with prefixes @samp{~/mail/}, @samp{~%u/mail/}
11549 and @samp{mail/}.
11550 Defaults to @samp{#f}.
11551 @end deftypevr
11552
11553 @deftypevr {@code{namespace-configuration} parameter} boolean list?
11554 Show the mailboxes under this namespace with the LIST command. This
11555 makes the namespace visible for clients that do not support the NAMESPACE
11556 extension. The special @code{children} value lists child mailboxes, but
11557 hides the namespace prefix.
11558 Defaults to @samp{#t}.
11559 @end deftypevr
11560
11561 @deftypevr {@code{namespace-configuration} parameter} boolean subscriptions?
11562 Namespace handles its own subscriptions. If set to @code{#f}, the
11563 parent namespace handles them. The empty prefix should always have this
11564 as @code{#t}).
11565 Defaults to @samp{#t}.
11566 @end deftypevr
11567
11568 @deftypevr {@code{namespace-configuration} parameter} mailbox-configuration-list mailboxes
11569 List of predefined mailboxes in this namespace.
11570 Defaults to @samp{()}.
11571
11572 Available @code{mailbox-configuration} fields are:
11573
11574 @deftypevr {@code{mailbox-configuration} parameter} string name
11575 Name for this mailbox.
11576 @end deftypevr
11577
11578 @deftypevr {@code{mailbox-configuration} parameter} string auto
11579 @samp{create} will automatically create this mailbox.
11580 @samp{subscribe} will both create and subscribe to the mailbox.
11581 Defaults to @samp{"no"}.
11582 @end deftypevr
11583
11584 @deftypevr {@code{mailbox-configuration} parameter} space-separated-string-list special-use
11585 List of IMAP @code{SPECIAL-USE} attributes as specified by RFC 6154.
11586 Valid values are @code{\All}, @code{\Archive}, @code{\Drafts},
11587 @code{\Flagged}, @code{\Junk}, @code{\Sent}, and @code{\Trash}.
11588 Defaults to @samp{()}.
11589 @end deftypevr
11590
11591 @end deftypevr
11592
11593 @end deftypevr
11594
11595 @deftypevr {@code{dovecot-configuration} parameter} file-name base-dir
11596 Base directory where to store runtime data.
11597 Defaults to @samp{"/var/run/dovecot/"}.
11598 @end deftypevr
11599
11600 @deftypevr {@code{dovecot-configuration} parameter} string login-greeting
11601 Greeting message for clients.
11602 Defaults to @samp{"Dovecot ready."}.
11603 @end deftypevr
11604
11605 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-trusted-networks
11606 List of trusted network ranges. Connections from these IPs are
11607 allowed to override their IP addresses and ports (for logging and for
11608 authentication checks). @samp{disable-plaintext-auth} is also ignored
11609 for these networks. Typically you would specify your IMAP proxy servers
11610 here.
11611 Defaults to @samp{()}.
11612 @end deftypevr
11613
11614 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-access-sockets
11615 List of login access check sockets (e.g. tcpwrap).
11616 Defaults to @samp{()}.
11617 @end deftypevr
11618
11619 @deftypevr {@code{dovecot-configuration} parameter} boolean verbose-proctitle?
11620 Show more verbose process titles (in ps). Currently shows user name
11621 and IP address. Useful for seeing who is actually using the IMAP
11622 processes (e.g. shared mailboxes or if the same uid is used for multiple
11623 accounts).
11624 Defaults to @samp{#f}.
11625 @end deftypevr
11626
11627 @deftypevr {@code{dovecot-configuration} parameter} boolean shutdown-clients?
11628 Should all processes be killed when Dovecot master process shuts down.
11629 Setting this to @code{#f} means that Dovecot can be upgraded without
11630 forcing existing client connections to close (although that could also
11631 be a problem if the upgrade is e.g. due to a security fix).
11632 Defaults to @samp{#t}.
11633 @end deftypevr
11634
11635 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer doveadm-worker-count
11636 If non-zero, run mail commands via this many connections to doveadm
11637 server, instead of running them directly in the same process.
11638 Defaults to @samp{0}.
11639 @end deftypevr
11640
11641 @deftypevr {@code{dovecot-configuration} parameter} string doveadm-socket-path
11642 UNIX socket or host:port used for connecting to doveadm server.
11643 Defaults to @samp{"doveadm-server"}.
11644 @end deftypevr
11645
11646 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list import-environment
11647 List of environment variables that are preserved on Dovecot startup
11648 and passed down to all of its child processes. You can also give
11649 key=value pairs to always set specific settings.
11650 @end deftypevr
11651
11652 @deftypevr {@code{dovecot-configuration} parameter} boolean disable-plaintext-auth?
11653 Disable LOGIN command and all other plaintext authentications unless
11654 SSL/TLS is used (LOGINDISABLED capability). Note that if the remote IP
11655 matches the local IP (i.e. you're connecting from the same computer),
11656 the connection is considered secure and plaintext authentication is
11657 allowed. See also ssl=required setting.
11658 Defaults to @samp{#t}.
11659 @end deftypevr
11660
11661 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-cache-size
11662 Authentication cache size (e.g. @samp{#e10e6}). 0 means it's disabled.
11663 Note that bsdauth, PAM and vpopmail require @samp{cache-key} to be set
11664 for caching to be used.
11665 Defaults to @samp{0}.
11666 @end deftypevr
11667
11668 @deftypevr {@code{dovecot-configuration} parameter} string auth-cache-ttl
11669 Time to live for cached data. After TTL expires the cached record
11670 is no longer used, *except* if the main database lookup returns internal
11671 failure. We also try to handle password changes automatically: If
11672 user's previous authentication was successful, but this one wasn't, the
11673 cache isn't used. For now this works only with plaintext
11674 authentication.
11675 Defaults to @samp{"1 hour"}.
11676 @end deftypevr
11677
11678 @deftypevr {@code{dovecot-configuration} parameter} string auth-cache-negative-ttl
11679 TTL for negative hits (user not found, password mismatch).
11680 0 disables caching them completely.
11681 Defaults to @samp{"1 hour"}.
11682 @end deftypevr
11683
11684 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-realms
11685 List of realms for SASL authentication mechanisms that need them.
11686 You can leave it empty if you don't want to support multiple realms.
11687 Many clients simply use the first one listed here, so keep the default
11688 realm first.
11689 Defaults to @samp{()}.
11690 @end deftypevr
11691
11692 @deftypevr {@code{dovecot-configuration} parameter} string auth-default-realm
11693 Default realm/domain to use if none was specified. This is used for
11694 both SASL realms and appending @@domain to username in plaintext
11695 logins.
11696 Defaults to @samp{""}.
11697 @end deftypevr
11698
11699 @deftypevr {@code{dovecot-configuration} parameter} string auth-username-chars
11700 List of allowed characters in username. If the user-given username
11701 contains a character not listed in here, the login automatically fails.
11702 This is just an extra check to make sure user can't exploit any
11703 potential quote escaping vulnerabilities with SQL/LDAP databases. If
11704 you want to allow all characters, set this value to empty.
11705 Defaults to @samp{"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ01234567890.-_@@"}.
11706 @end deftypevr
11707
11708 @deftypevr {@code{dovecot-configuration} parameter} string auth-username-translation
11709 Username character translations before it's looked up from
11710 databases. The value contains series of from -> to characters. For
11711 example @samp{#@@/@@} means that @samp{#} and @samp{/} characters are
11712 translated to @samp{@@}.
11713 Defaults to @samp{""}.
11714 @end deftypevr
11715
11716 @deftypevr {@code{dovecot-configuration} parameter} string auth-username-format
11717 Username formatting before it's looked up from databases. You can
11718 use the standard variables here, e.g. %Lu would lowercase the username,
11719 %n would drop away the domain if it was given, or @samp{%n-AT-%d} would
11720 change the @samp{@@} into @samp{-AT-}. This translation is done after
11721 @samp{auth-username-translation} changes.
11722 Defaults to @samp{"%Lu"}.
11723 @end deftypevr
11724
11725 @deftypevr {@code{dovecot-configuration} parameter} string auth-master-user-separator
11726 If you want to allow master users to log in by specifying the master
11727 username within the normal username string (i.e. not using SASL
11728 mechanism's support for it), you can specify the separator character
11729 here. The format is then <username><separator><master username>.
11730 UW-IMAP uses @samp{*} as the separator, so that could be a good
11731 choice.
11732 Defaults to @samp{""}.
11733 @end deftypevr
11734
11735 @deftypevr {@code{dovecot-configuration} parameter} string auth-anonymous-username
11736 Username to use for users logging in with ANONYMOUS SASL
11737 mechanism.
11738 Defaults to @samp{"anonymous"}.
11739 @end deftypevr
11740
11741 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer auth-worker-max-count
11742 Maximum number of dovecot-auth worker processes. They're used to
11743 execute blocking passdb and userdb queries (e.g. MySQL and PAM).
11744 They're automatically created and destroyed as needed.
11745 Defaults to @samp{30}.
11746 @end deftypevr
11747
11748 @deftypevr {@code{dovecot-configuration} parameter} string auth-gssapi-hostname
11749 Host name to use in GSSAPI principal names. The default is to use
11750 the name returned by gethostname(). Use @samp{$ALL} (with quotes) to
11751 allow all keytab entries.
11752 Defaults to @samp{""}.
11753 @end deftypevr
11754
11755 @deftypevr {@code{dovecot-configuration} parameter} string auth-krb5-keytab
11756 Kerberos keytab to use for the GSSAPI mechanism. Will use the
11757 system default (usually @file{/etc/krb5.keytab}) if not specified. You may
11758 need to change the auth service to run as root to be able to read this
11759 file.
11760 Defaults to @samp{""}.
11761 @end deftypevr
11762
11763 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-use-winbind?
11764 Do NTLM and GSS-SPNEGO authentication using Samba's winbind daemon
11765 and @samp{ntlm-auth} helper.
11766 <doc/wiki/Authentication/Mechanisms/Winbind.txt>.
11767 Defaults to @samp{#f}.
11768 @end deftypevr
11769
11770 @deftypevr {@code{dovecot-configuration} parameter} file-name auth-winbind-helper-path
11771 Path for Samba's @samp{ntlm-auth} helper binary.
11772 Defaults to @samp{"/usr/bin/ntlm_auth"}.
11773 @end deftypevr
11774
11775 @deftypevr {@code{dovecot-configuration} parameter} string auth-failure-delay
11776 Time to delay before replying to failed authentications.
11777 Defaults to @samp{"2 secs"}.
11778 @end deftypevr
11779
11780 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-require-client-cert?
11781 Require a valid SSL client certificate or the authentication
11782 fails.
11783 Defaults to @samp{#f}.
11784 @end deftypevr
11785
11786 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-ssl-username-from-cert?
11787 Take the username from client's SSL certificate, using
11788 @code{X509_NAME_get_text_by_NID()} which returns the subject's DN's
11789 CommonName.
11790 Defaults to @samp{#f}.
11791 @end deftypevr
11792
11793 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list auth-mechanisms
11794 List of wanted authentication mechanisms. Supported mechanisms are:
11795 @samp{plain}, @samp{login}, @samp{digest-md5}, @samp{cram-md5},
11796 @samp{ntlm}, @samp{rpa}, @samp{apop}, @samp{anonymous}, @samp{gssapi},
11797 @samp{otp}, @samp{skey}, and @samp{gss-spnego}. NOTE: See also
11798 @samp{disable-plaintext-auth} setting.
11799 @end deftypevr
11800
11801 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-servers
11802 List of IPs or hostnames to all director servers, including ourself.
11803 Ports can be specified as ip:port. The default port is the same as what
11804 director service's @samp{inet-listener} is using.
11805 Defaults to @samp{()}.
11806 @end deftypevr
11807
11808 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list director-mail-servers
11809 List of IPs or hostnames to all backend mail servers. Ranges are
11810 allowed too, like 10.0.0.10-10.0.0.30.
11811 Defaults to @samp{()}.
11812 @end deftypevr
11813
11814 @deftypevr {@code{dovecot-configuration} parameter} string director-user-expire
11815 How long to redirect users to a specific server after it no longer
11816 has any connections.
11817 Defaults to @samp{"15 min"}.
11818 @end deftypevr
11819
11820 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer director-doveadm-port
11821 TCP/IP port that accepts doveadm connections (instead of director
11822 connections) If you enable this, you'll also need to add
11823 @samp{inet-listener} for the port.
11824 Defaults to @samp{0}.
11825 @end deftypevr
11826
11827 @deftypevr {@code{dovecot-configuration} parameter} string director-username-hash
11828 How the username is translated before being hashed. Useful values
11829 include %Ln if user can log in with or without @@domain, %Ld if mailboxes
11830 are shared within domain.
11831 Defaults to @samp{"%Lu"}.
11832 @end deftypevr
11833
11834 @deftypevr {@code{dovecot-configuration} parameter} string log-path
11835 Log file to use for error messages. @samp{syslog} logs to syslog,
11836 @samp{/dev/stderr} logs to stderr.
11837 Defaults to @samp{"syslog"}.
11838 @end deftypevr
11839
11840 @deftypevr {@code{dovecot-configuration} parameter} string info-log-path
11841 Log file to use for informational messages. Defaults to
11842 @samp{log-path}.
11843 Defaults to @samp{""}.
11844 @end deftypevr
11845
11846 @deftypevr {@code{dovecot-configuration} parameter} string debug-log-path
11847 Log file to use for debug messages. Defaults to
11848 @samp{info-log-path}.
11849 Defaults to @samp{""}.
11850 @end deftypevr
11851
11852 @deftypevr {@code{dovecot-configuration} parameter} string syslog-facility
11853 Syslog facility to use if you're logging to syslog. Usually if you
11854 don't want to use @samp{mail}, you'll use local0..local7. Also other
11855 standard facilities are supported.
11856 Defaults to @samp{"mail"}.
11857 @end deftypevr
11858
11859 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose?
11860 Log unsuccessful authentication attempts and the reasons why they
11861 failed.
11862 Defaults to @samp{#f}.
11863 @end deftypevr
11864
11865 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-verbose-passwords?
11866 In case of password mismatches, log the attempted password. Valid
11867 values are no, plain and sha1. sha1 can be useful for detecting brute
11868 force password attempts vs. user simply trying the same password over
11869 and over again. You can also truncate the value to n chars by appending
11870 ":n" (e.g. sha1:6).
11871 Defaults to @samp{#f}.
11872 @end deftypevr
11873
11874 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug?
11875 Even more verbose logging for debugging purposes. Shows for example
11876 SQL queries.
11877 Defaults to @samp{#f}.
11878 @end deftypevr
11879
11880 @deftypevr {@code{dovecot-configuration} parameter} boolean auth-debug-passwords?
11881 In case of password mismatches, log the passwords and used scheme so
11882 the problem can be debugged. Enabling this also enables
11883 @samp{auth-debug}.
11884 Defaults to @samp{#f}.
11885 @end deftypevr
11886
11887 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-debug?
11888 Enable mail process debugging. This can help you figure out why
11889 Dovecot isn't finding your mails.
11890 Defaults to @samp{#f}.
11891 @end deftypevr
11892
11893 @deftypevr {@code{dovecot-configuration} parameter} boolean verbose-ssl?
11894 Show protocol level SSL errors.
11895 Defaults to @samp{#f}.
11896 @end deftypevr
11897
11898 @deftypevr {@code{dovecot-configuration} parameter} string log-timestamp
11899 Prefix for each line written to log file. % codes are in
11900 strftime(3) format.
11901 Defaults to @samp{"\"%b %d %H:%M:%S \""}.
11902 @end deftypevr
11903
11904 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list login-log-format-elements
11905 List of elements we want to log. The elements which have a
11906 non-empty variable value are joined together to form a comma-separated
11907 string.
11908 @end deftypevr
11909
11910 @deftypevr {@code{dovecot-configuration} parameter} string login-log-format
11911 Login log format. %s contains @samp{login-log-format-elements}
11912 string, %$ contains the data we want to log.
11913 Defaults to @samp{"%$: %s"}.
11914 @end deftypevr
11915
11916 @deftypevr {@code{dovecot-configuration} parameter} string mail-log-prefix
11917 Log prefix for mail processes. See doc/wiki/Variables.txt for list
11918 of possible variables you can use.
11919 Defaults to @samp{"\"%s(%u): \""}.
11920 @end deftypevr
11921
11922 @deftypevr {@code{dovecot-configuration} parameter} string deliver-log-format
11923 Format to use for logging mail deliveries. You can use variables:
11924 @table @code
11925 @item %$
11926 Delivery status message (e.g. @samp{saved to INBOX})
11927 @item %m
11928 Message-ID
11929 @item %s
11930 Subject
11931 @item %f
11932 From address
11933 @item %p
11934 Physical size
11935 @item %w
11936 Virtual size.
11937 @end table
11938 Defaults to @samp{"msgid=%m: %$"}.
11939 @end deftypevr
11940
11941 @deftypevr {@code{dovecot-configuration} parameter} string mail-location
11942 Location for users' mailboxes. The default is empty, which means
11943 that Dovecot tries to find the mailboxes automatically. This won't work
11944 if the user doesn't yet have any mail, so you should explicitly tell
11945 Dovecot the full location.
11946
11947 If you're using mbox, giving a path to the INBOX
11948 file (e.g. /var/mail/%u) isn't enough. You'll also need to tell Dovecot
11949 where the other mailboxes are kept. This is called the "root mail
11950 directory", and it must be the first path given in the
11951 @samp{mail-location} setting.
11952
11953 There are a few special variables you can use, eg.:
11954
11955 @table @samp
11956 @item %u
11957 username
11958 @item %n
11959 user part in user@@domain, same as %u if there's no domain
11960 @item %d
11961 domain part in user@@domain, empty if there's no domain
11962 @item %h
11963 home director
11964 @end table
11965
11966 See doc/wiki/Variables.txt for full list. Some examples:
11967 @table @samp
11968 @item maildir:~/Maildir
11969 @item mbox:~/mail:INBOX=/var/mail/%u
11970 @item mbox:/var/mail/%d/%1n/%n:INDEX=/var/indexes/%d/%1n/%
11971 @end table
11972 Defaults to @samp{""}.
11973 @end deftypevr
11974
11975 @deftypevr {@code{dovecot-configuration} parameter} string mail-uid
11976 System user and group used to access mails. If you use multiple,
11977 userdb can override these by returning uid or gid fields. You can use
11978 either numbers or names. <doc/wiki/UserIds.txt>.
11979 Defaults to @samp{""}.
11980 @end deftypevr
11981
11982 @deftypevr {@code{dovecot-configuration} parameter} string mail-gid
11983
11984 Defaults to @samp{""}.
11985 @end deftypevr
11986
11987 @deftypevr {@code{dovecot-configuration} parameter} string mail-privileged-group
11988 Group to enable temporarily for privileged operations. Currently
11989 this is used only with INBOX when either its initial creation or
11990 dotlocking fails. Typically this is set to "mail" to give access to
11991 /var/mail.
11992 Defaults to @samp{""}.
11993 @end deftypevr
11994
11995 @deftypevr {@code{dovecot-configuration} parameter} string mail-access-groups
11996 Grant access to these supplementary groups for mail processes.
11997 Typically these are used to set up access to shared mailboxes. Note
11998 that it may be dangerous to set these if users can create
11999 symlinks (e.g. if "mail" group is set here, ln -s /var/mail ~/mail/var
12000 could allow a user to delete others' mailboxes, or ln -s
12001 /secret/shared/box ~/mail/mybox would allow reading it).
12002 Defaults to @samp{""}.
12003 @end deftypevr
12004
12005 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-full-filesystem-access?
12006 Allow full file system access to clients. There's no access checks
12007 other than what the operating system does for the active UID/GID. It
12008 works with both maildir and mboxes, allowing you to prefix mailboxes
12009 names with e.g. /path/ or ~user/.
12010 Defaults to @samp{#f}.
12011 @end deftypevr
12012
12013 @deftypevr {@code{dovecot-configuration} parameter} boolean mmap-disable?
12014 Don't use mmap() at all. This is required if you store indexes to
12015 shared file systems (NFS or clustered file system).
12016 Defaults to @samp{#f}.
12017 @end deftypevr
12018
12019 @deftypevr {@code{dovecot-configuration} parameter} boolean dotlock-use-excl?
12020 Rely on @samp{O_EXCL} to work when creating dotlock files. NFS
12021 supports @samp{O_EXCL} since version 3, so this should be safe to use
12022 nowadays by default.
12023 Defaults to @samp{#t}.
12024 @end deftypevr
12025
12026 @deftypevr {@code{dovecot-configuration} parameter} string mail-fsync
12027 When to use fsync() or fdatasync() calls:
12028 @table @code
12029 @item optimized
12030 Whenever necessary to avoid losing important data
12031 @item always
12032 Useful with e.g. NFS when write()s are delayed
12033 @item never
12034 Never use it (best performance, but crashes can lose data).
12035 @end table
12036 Defaults to @samp{"optimized"}.
12037 @end deftypevr
12038
12039 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-storage?
12040 Mail storage exists in NFS. Set this to yes to make Dovecot flush
12041 NFS caches whenever needed. If you're using only a single mail server
12042 this isn't needed.
12043 Defaults to @samp{#f}.
12044 @end deftypevr
12045
12046 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-nfs-index?
12047 Mail index files also exist in NFS. Setting this to yes requires
12048 @samp{mmap-disable? #t} and @samp{fsync-disable? #f}.
12049 Defaults to @samp{#f}.
12050 @end deftypevr
12051
12052 @deftypevr {@code{dovecot-configuration} parameter} string lock-method
12053 Locking method for index files. Alternatives are fcntl, flock and
12054 dotlock. Dotlocking uses some tricks which may create more disk I/O
12055 than other locking methods. NFS users: flock doesn't work, remember to
12056 change @samp{mmap-disable}.
12057 Defaults to @samp{"fcntl"}.
12058 @end deftypevr
12059
12060 @deftypevr {@code{dovecot-configuration} parameter} file-name mail-temp-dir
12061 Directory in which LDA/LMTP temporarily stores incoming mails >128
12062 kB.
12063 Defaults to @samp{"/tmp"}.
12064 @end deftypevr
12065
12066 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-uid
12067 Valid UID range for users. This is mostly to make sure that users can't
12068 log in as daemons or other system users. Note that denying root logins is
12069 hardcoded to dovecot binary and can't be done even if @samp{first-valid-uid}
12070 is set to 0.
12071 Defaults to @samp{500}.
12072 @end deftypevr
12073
12074 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-uid
12075
12076 Defaults to @samp{0}.
12077 @end deftypevr
12078
12079 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer first-valid-gid
12080 Valid GID range for users. Users having non-valid GID as primary group ID
12081 aren't allowed to log in. If user belongs to supplementary groups with
12082 non-valid GIDs, those groups are not set.
12083 Defaults to @samp{1}.
12084 @end deftypevr
12085
12086 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer last-valid-gid
12087
12088 Defaults to @samp{0}.
12089 @end deftypevr
12090
12091 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-max-keyword-length
12092 Maximum allowed length for mail keyword name. It's only forced when
12093 trying to create new keywords.
12094 Defaults to @samp{50}.
12095 @end deftypevr
12096
12097 @deftypevr {@code{dovecot-configuration} parameter} colon-separated-file-name-list valid-chroot-dirs
12098 List of directories under which chrooting is allowed for mail
12099 processes (i.e. /var/mail will allow chrooting to /var/mail/foo/bar
12100 too). This setting doesn't affect @samp{login-chroot}
12101 @samp{mail-chroot} or auth chroot settings. If this setting is empty,
12102 "/./" in home dirs are ignored. WARNING: Never add directories here
12103 which local users can modify, that may lead to root exploit. Usually
12104 this should be done only if you don't allow shell access for users.
12105 <doc/wiki/Chrooting.txt>.
12106 Defaults to @samp{()}.
12107 @end deftypevr
12108
12109 @deftypevr {@code{dovecot-configuration} parameter} string mail-chroot
12110 Default chroot directory for mail processes. This can be overridden
12111 for specific users in user database by giving /./ in user's home
12112 directory (e.g. /home/./user chroots into /home). Note that usually
12113 there is no real need to do chrooting, Dovecot doesn't allow users to
12114 access files outside their mail directory anyway. If your home
12115 directories are prefixed with the chroot directory, append "/." to
12116 @samp{mail-chroot}. <doc/wiki/Chrooting.txt>.
12117 Defaults to @samp{""}.
12118 @end deftypevr
12119
12120 @deftypevr {@code{dovecot-configuration} parameter} file-name auth-socket-path
12121 UNIX socket path to master authentication server to find users.
12122 This is used by imap (for shared users) and lda.
12123 Defaults to @samp{"/var/run/dovecot/auth-userdb"}.
12124 @end deftypevr
12125
12126 @deftypevr {@code{dovecot-configuration} parameter} file-name mail-plugin-dir
12127 Directory where to look up mail plugins.
12128 Defaults to @samp{"/usr/lib/dovecot"}.
12129 @end deftypevr
12130
12131 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mail-plugins
12132 List of plugins to load for all services. Plugins specific to IMAP,
12133 LDA, etc. are added to this list in their own .conf files.
12134 Defaults to @samp{()}.
12135 @end deftypevr
12136
12137 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-cache-min-mail-count
12138 The minimum number of mails in a mailbox before updates are done to
12139 cache file. This allows optimizing Dovecot's behavior to do less disk
12140 writes at the cost of more disk reads.
12141 Defaults to @samp{0}.
12142 @end deftypevr
12143
12144 @deftypevr {@code{dovecot-configuration} parameter} string mailbox-idle-check-interval
12145 When IDLE command is running, mailbox is checked once in a while to
12146 see if there are any new mails or other changes. This setting defines
12147 the minimum time to wait between those checks. Dovecot can also use
12148 dnotify, inotify and kqueue to find out immediately when changes
12149 occur.
12150 Defaults to @samp{"30 secs"}.
12151 @end deftypevr
12152
12153 @deftypevr {@code{dovecot-configuration} parameter} boolean mail-save-crlf?
12154 Save mails with CR+LF instead of plain LF. This makes sending those
12155 mails take less CPU, especially with sendfile() syscall with Linux and
12156 FreeBSD. But it also creates a bit more disk I/O which may just make it
12157 slower. Also note that if other software reads the mboxes/maildirs,
12158 they may handle the extra CRs wrong and cause problems.
12159 Defaults to @samp{#f}.
12160 @end deftypevr
12161
12162 @deftypevr {@code{dovecot-configuration} parameter} boolean maildir-stat-dirs?
12163 By default LIST command returns all entries in maildir beginning
12164 with a dot. Enabling this option makes Dovecot return only entries
12165 which are directories. This is done by stat()ing each entry, so it
12166 causes more disk I/O.
12167 (For systems setting struct @samp{dirent->d_type} this check is free
12168 and it's done always regardless of this setting).
12169 Defaults to @samp{#f}.
12170 @end deftypevr
12171
12172 @deftypevr {@code{dovecot-configuration} parameter} boolean maildir-copy-with-hardlinks?
12173 When copying a message, do it with hard links whenever possible.
12174 This makes the performance much better, and it's unlikely to have any
12175 side effects.
12176 Defaults to @samp{#t}.
12177 @end deftypevr
12178
12179 @deftypevr {@code{dovecot-configuration} parameter} boolean maildir-very-dirty-syncs?
12180 Assume Dovecot is the only MUA accessing Maildir: Scan cur/
12181 directory only when its mtime changes unexpectedly or when we can't find
12182 the mail otherwise.
12183 Defaults to @samp{#f}.
12184 @end deftypevr
12185
12186 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-read-locks
12187 Which locking methods to use for locking mbox. There are four
12188 available:
12189
12190 @table @code
12191 @item dotlock
12192 Create <mailbox>.lock file. This is the oldest and most NFS-safe
12193 solution. If you want to use /var/mail/ like directory, the users will
12194 need write access to that directory.
12195 @item dotlock-try
12196 Same as dotlock, but if it fails because of permissions or because there
12197 isn't enough disk space, just skip it.
12198 @item fcntl
12199 Use this if possible. Works with NFS too if lockd is used.
12200 @item flock
12201 May not exist in all systems. Doesn't work with NFS.
12202 @item lockf
12203 May not exist in all systems. Doesn't work with NFS.
12204 @end table
12205
12206 You can use multiple locking methods; if you do the order they're declared
12207 in is important to avoid deadlocks if other MTAs/MUAs are using multiple
12208 locking methods as well. Some operating systems don't allow using some of
12209 them simultaneously.
12210 @end deftypevr
12211
12212 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list mbox-write-locks
12213
12214 @end deftypevr
12215
12216 @deftypevr {@code{dovecot-configuration} parameter} string mbox-lock-timeout
12217 Maximum time to wait for lock (all of them) before aborting.
12218 Defaults to @samp{"5 mins"}.
12219 @end deftypevr
12220
12221 @deftypevr {@code{dovecot-configuration} parameter} string mbox-dotlock-change-timeout
12222 If dotlock exists but the mailbox isn't modified in any way,
12223 override the lock file after this much time.
12224 Defaults to @samp{"2 mins"}.
12225 @end deftypevr
12226
12227 @deftypevr {@code{dovecot-configuration} parameter} boolean mbox-dirty-syncs?
12228 When mbox changes unexpectedly we have to fully read it to find out
12229 what changed. If the mbox is large this can take a long time. Since
12230 the change is usually just a newly appended mail, it'd be faster to
12231 simply read the new mails. If this setting is enabled, Dovecot does
12232 this but still safely fallbacks to re-reading the whole mbox file
12233 whenever something in mbox isn't how it's expected to be. The only real
12234 downside to this setting is that if some other MUA changes message
12235 flags, Dovecot doesn't notice it immediately. Note that a full sync is
12236 done with SELECT, EXAMINE, EXPUNGE and CHECK commands.
12237 Defaults to @samp{#t}.
12238 @end deftypevr
12239
12240 @deftypevr {@code{dovecot-configuration} parameter} boolean mbox-very-dirty-syncs?
12241 Like @samp{mbox-dirty-syncs}, but don't do full syncs even with SELECT,
12242 EXAMINE, EXPUNGE or CHECK commands. If this is set,
12243 @samp{mbox-dirty-syncs} is ignored.
12244 Defaults to @samp{#f}.
12245 @end deftypevr
12246
12247 @deftypevr {@code{dovecot-configuration} parameter} boolean mbox-lazy-writes?
12248 Delay writing mbox headers until doing a full write sync (EXPUNGE
12249 and CHECK commands and when closing the mailbox). This is especially
12250 useful for POP3 where clients often delete all mails. The downside is
12251 that our changes aren't immediately visible to other MUAs.
12252 Defaults to @samp{#t}.
12253 @end deftypevr
12254
12255 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mbox-min-index-size
12256 If mbox size is smaller than this (e.g. 100k), don't write index
12257 files. If an index file already exists it's still read, just not
12258 updated.
12259 Defaults to @samp{0}.
12260 @end deftypevr
12261
12262 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mdbox-rotate-size
12263 Maximum dbox file size until it's rotated.
12264 Defaults to @samp{2000000}.
12265 @end deftypevr
12266
12267 @deftypevr {@code{dovecot-configuration} parameter} string mdbox-rotate-interval
12268 Maximum dbox file age until it's rotated. Typically in days. Day
12269 begins from midnight, so 1d = today, 2d = yesterday, etc. 0 = check
12270 disabled.
12271 Defaults to @samp{"1d"}.
12272 @end deftypevr
12273
12274 @deftypevr {@code{dovecot-configuration} parameter} boolean mdbox-preallocate-space?
12275 When creating new mdbox files, immediately preallocate their size to
12276 @samp{mdbox-rotate-size}. This setting currently works only in Linux
12277 with some file systems (ext4, xfs).
12278 Defaults to @samp{#f}.
12279 @end deftypevr
12280
12281 @deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-dir
12282 sdbox and mdbox support saving mail attachments to external files,
12283 which also allows single instance storage for them. Other backends
12284 don't support this for now.
12285
12286 WARNING: This feature hasn't been tested much yet. Use at your own risk.
12287
12288 Directory root where to store mail attachments. Disabled, if empty.
12289 Defaults to @samp{""}.
12290 @end deftypevr
12291
12292 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer mail-attachment-min-size
12293 Attachments smaller than this aren't saved externally. It's also
12294 possible to write a plugin to disable saving specific attachments
12295 externally.
12296 Defaults to @samp{128000}.
12297 @end deftypevr
12298
12299 @deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-fs
12300 File system backend to use for saving attachments:
12301 @table @code
12302 @item posix
12303 No SiS done by Dovecot (but this might help FS's own deduplication)
12304 @item sis posix
12305 SiS with immediate byte-by-byte comparison during saving
12306 @item sis-queue posix
12307 SiS with delayed comparison and deduplication.
12308 @end table
12309 Defaults to @samp{"sis posix"}.
12310 @end deftypevr
12311
12312 @deftypevr {@code{dovecot-configuration} parameter} string mail-attachment-hash
12313 Hash format to use in attachment filenames. You can add any text and
12314 variables: @code{%@{md4@}}, @code{%@{md5@}}, @code{%@{sha1@}},
12315 @code{%@{sha256@}}, @code{%@{sha512@}}, @code{%@{size@}}. Variables can be
12316 truncated, e.g. @code{%@{sha256:80@}} returns only first 80 bits.
12317 Defaults to @samp{"%@{sha1@}"}.
12318 @end deftypevr
12319
12320 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-process-limit
12321
12322 Defaults to @samp{100}.
12323 @end deftypevr
12324
12325 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-client-limit
12326
12327 Defaults to @samp{1000}.
12328 @end deftypevr
12329
12330 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer default-vsz-limit
12331 Default VSZ (virtual memory size) limit for service processes.
12332 This is mainly intended to catch and kill processes that leak memory
12333 before they eat up everything.
12334 Defaults to @samp{256000000}.
12335 @end deftypevr
12336
12337 @deftypevr {@code{dovecot-configuration} parameter} string default-login-user
12338 Login user is internally used by login processes. This is the most
12339 untrusted user in Dovecot system. It shouldn't have access to anything
12340 at all.
12341 Defaults to @samp{"dovenull"}.
12342 @end deftypevr
12343
12344 @deftypevr {@code{dovecot-configuration} parameter} string default-internal-user
12345 Internal user is used by unprivileged processes. It should be
12346 separate from login user, so that login processes can't disturb other
12347 processes.
12348 Defaults to @samp{"dovecot"}.
12349 @end deftypevr
12350
12351 @deftypevr {@code{dovecot-configuration} parameter} string ssl?
12352 SSL/TLS support: yes, no, required. <doc/wiki/SSL.txt>.
12353 Defaults to @samp{"required"}.
12354 @end deftypevr
12355
12356 @deftypevr {@code{dovecot-configuration} parameter} string ssl-cert
12357 PEM encoded X.509 SSL/TLS certificate (public key).
12358 Defaults to @samp{"</etc/dovecot/default.pem"}.
12359 @end deftypevr
12360
12361 @deftypevr {@code{dovecot-configuration} parameter} string ssl-key
12362 PEM encoded SSL/TLS private key. The key is opened before
12363 dropping root privileges, so keep the key file unreadable by anyone but
12364 root.
12365 Defaults to @samp{"</etc/dovecot/private/default.pem"}.
12366 @end deftypevr
12367
12368 @deftypevr {@code{dovecot-configuration} parameter} string ssl-key-password
12369 If key file is password protected, give the password here.
12370 Alternatively give it when starting dovecot with -p parameter. Since
12371 this file is often world-readable, you may want to place this setting
12372 instead to a different.
12373 Defaults to @samp{""}.
12374 @end deftypevr
12375
12376 @deftypevr {@code{dovecot-configuration} parameter} string ssl-ca
12377 PEM encoded trusted certificate authority. Set this only if you
12378 intend to use @samp{ssl-verify-client-cert? #t}. The file should
12379 contain the CA certificate(s) followed by the matching
12380 CRL(s). (e.g. @samp{ssl-ca </etc/ssl/certs/ca.pem}).
12381 Defaults to @samp{""}.
12382 @end deftypevr
12383
12384 @deftypevr {@code{dovecot-configuration} parameter} boolean ssl-require-crl?
12385 Require that CRL check succeeds for client certificates.
12386 Defaults to @samp{#t}.
12387 @end deftypevr
12388
12389 @deftypevr {@code{dovecot-configuration} parameter} boolean ssl-verify-client-cert?
12390 Request client to send a certificate. If you also want to require
12391 it, set @samp{auth-ssl-require-client-cert? #t} in auth section.
12392 Defaults to @samp{#f}.
12393 @end deftypevr
12394
12395 @deftypevr {@code{dovecot-configuration} parameter} string ssl-cert-username-field
12396 Which field from certificate to use for username. commonName and
12397 x500UniqueIdentifier are the usual choices. You'll also need to set
12398 @samp{auth-ssl-username-from-cert? #t}.
12399 Defaults to @samp{"commonName"}.
12400 @end deftypevr
12401
12402 @deftypevr {@code{dovecot-configuration} parameter} hours ssl-parameters-regenerate
12403 How often to regenerate the SSL parameters file. Generation is
12404 quite CPU intensive operation. The value is in hours, 0 disables
12405 regeneration entirely.
12406 Defaults to @samp{168}.
12407 @end deftypevr
12408
12409 @deftypevr {@code{dovecot-configuration} parameter} string ssl-protocols
12410 SSL protocols to use.
12411 Defaults to @samp{"!SSLv2"}.
12412 @end deftypevr
12413
12414 @deftypevr {@code{dovecot-configuration} parameter} string ssl-cipher-list
12415 SSL ciphers to use.
12416 Defaults to @samp{"ALL:!LOW:!SSLv2:!EXP:!aNULL"}.
12417 @end deftypevr
12418
12419 @deftypevr {@code{dovecot-configuration} parameter} string ssl-crypto-device
12420 SSL crypto device to use, for valid values run "openssl engine".
12421 Defaults to @samp{""}.
12422 @end deftypevr
12423
12424 @deftypevr {@code{dovecot-configuration} parameter} string postmaster-address
12425 Address to use when sending rejection mails.
12426 %d expands to recipient domain.
12427 Defaults to @samp{"postmaster@@%d"}.
12428 @end deftypevr
12429
12430 @deftypevr {@code{dovecot-configuration} parameter} string hostname
12431 Hostname to use in various parts of sent mails (e.g. in Message-Id)
12432 and in LMTP replies. Default is the system's real hostname@@domain.
12433 Defaults to @samp{""}.
12434 @end deftypevr
12435
12436 @deftypevr {@code{dovecot-configuration} parameter} boolean quota-full-tempfail?
12437 If user is over quota, return with temporary failure instead of
12438 bouncing the mail.
12439 Defaults to @samp{#f}.
12440 @end deftypevr
12441
12442 @deftypevr {@code{dovecot-configuration} parameter} file-name sendmail-path
12443 Binary to use for sending mails.
12444 Defaults to @samp{"/usr/sbin/sendmail"}.
12445 @end deftypevr
12446
12447 @deftypevr {@code{dovecot-configuration} parameter} string submission-host
12448 If non-empty, send mails via this SMTP host[:port] instead of
12449 sendmail.
12450 Defaults to @samp{""}.
12451 @end deftypevr
12452
12453 @deftypevr {@code{dovecot-configuration} parameter} string rejection-subject
12454 Subject: header to use for rejection mails. You can use the same
12455 variables as for @samp{rejection-reason} below.
12456 Defaults to @samp{"Rejected: %s"}.
12457 @end deftypevr
12458
12459 @deftypevr {@code{dovecot-configuration} parameter} string rejection-reason
12460 Human readable error message for rejection mails. You can use
12461 variables:
12462
12463 @table @code
12464 @item %n
12465 CRLF
12466 @item %r
12467 reason
12468 @item %s
12469 original subject
12470 @item %t
12471 recipient
12472 @end table
12473 Defaults to @samp{"Your message to <%t> was automatically rejected:%n%r"}.
12474 @end deftypevr
12475
12476 @deftypevr {@code{dovecot-configuration} parameter} string recipient-delimiter
12477 Delimiter character between local-part and detail in email
12478 address.
12479 Defaults to @samp{"+"}.
12480 @end deftypevr
12481
12482 @deftypevr {@code{dovecot-configuration} parameter} string lda-original-recipient-header
12483 Header where the original recipient address (SMTP's RCPT TO:
12484 address) is taken from if not available elsewhere. With dovecot-lda -a
12485 parameter overrides this. A commonly used header for this is
12486 X-Original-To.
12487 Defaults to @samp{""}.
12488 @end deftypevr
12489
12490 @deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autocreate?
12491 Should saving a mail to a nonexistent mailbox automatically create
12492 it?.
12493 Defaults to @samp{#f}.
12494 @end deftypevr
12495
12496 @deftypevr {@code{dovecot-configuration} parameter} boolean lda-mailbox-autosubscribe?
12497 Should automatically created mailboxes be also automatically
12498 subscribed?.
12499 Defaults to @samp{#f}.
12500 @end deftypevr
12501
12502 @deftypevr {@code{dovecot-configuration} parameter} non-negative-integer imap-max-line-length
12503 Maximum IMAP command line length. Some clients generate very long
12504 command lines with huge mailboxes, so you may need to raise this if you
12505 get "Too long argument" or "IMAP command line too large" errors
12506 often.
12507 Defaults to @samp{64000}.
12508 @end deftypevr
12509
12510 @deftypevr {@code{dovecot-configuration} parameter} string imap-logout-format
12511 IMAP logout format string:
12512 @table @code
12513 @item %i
12514 total number of bytes read from client
12515 @item %o
12516 total number of bytes sent to client.
12517 @end table
12518 Defaults to @samp{"in=%i out=%o"}.
12519 @end deftypevr
12520
12521 @deftypevr {@code{dovecot-configuration} parameter} string imap-capability
12522 Override the IMAP CAPABILITY response. If the value begins with '+',
12523 add the given capabilities on top of the defaults (e.g. +XFOO XBAR).
12524 Defaults to @samp{""}.
12525 @end deftypevr
12526
12527 @deftypevr {@code{dovecot-configuration} parameter} string imap-idle-notify-interval
12528 How long to wait between "OK Still here" notifications when client
12529 is IDLEing.
12530 Defaults to @samp{"2 mins"}.
12531 @end deftypevr
12532
12533 @deftypevr {@code{dovecot-configuration} parameter} string imap-id-send
12534 ID field names and values to send to clients. Using * as the value
12535 makes Dovecot use the default value. The following fields have default
12536 values currently: name, version, os, os-version, support-url,
12537 support-email.
12538 Defaults to @samp{""}.
12539 @end deftypevr
12540
12541 @deftypevr {@code{dovecot-configuration} parameter} string imap-id-log
12542 ID fields sent by client to log. * means everything.
12543 Defaults to @samp{""}.
12544 @end deftypevr
12545
12546 @deftypevr {@code{dovecot-configuration} parameter} space-separated-string-list imap-client-workarounds
12547 Workarounds for various client bugs:
12548
12549 @table @code
12550 @item delay-newmail
12551 Send EXISTS/RECENT new mail notifications only when replying to NOOP and
12552 CHECK commands. Some clients ignore them otherwise, for example OSX
12553 Mail (<v2.1). Outlook Express breaks more badly though, without this it
12554 may show user "Message no longer in server" errors. Note that OE6
12555 still breaks even with this workaround if synchronization is set to
12556 "Headers Only".
12557
12558 @item tb-extra-mailbox-sep
12559 Thunderbird gets somehow confused with LAYOUT=fs (mbox and dbox) and
12560 adds extra @samp{/} suffixes to mailbox names. This option causes Dovecot to
12561 ignore the extra @samp{/} instead of treating it as invalid mailbox name.
12562
12563 @item tb-lsub-flags
12564 Show \Noselect flags for LSUB replies with LAYOUT=fs (e.g. mbox).
12565 This makes Thunderbird realize they aren't selectable and show them
12566 greyed out, instead of only later giving "not selectable" popup error.
12567 @end table
12568 Defaults to @samp{()}.
12569 @end deftypevr
12570
12571 @deftypevr {@code{dovecot-configuration} parameter} string imap-urlauth-host
12572 Host allowed in URLAUTH URLs sent by client. "*" allows all.
12573 Defaults to @samp{""}.
12574 @end deftypevr
12575
12576
12577 Whew! Lots of configuration options. The nice thing about it though is
12578 that GuixSD has a complete interface to Dovecot's configuration
12579 language. This allows not only a nice way to declare configurations,
12580 but also offers reflective capabilities as well: users can write code to
12581 inspect and transform configurations from within Scheme.
12582
12583 However, it could be that you just want to get a @code{dovecot.conf} up
12584 and running. In that case, you can pass an
12585 @code{opaque-dovecot-configuration} as the @code{#:config} parameter to
12586 @code{dovecot-service}. As its name indicates, an opaque configuration
12587 does not have easy reflective capabilities.
12588
12589 Available @code{opaque-dovecot-configuration} fields are:
12590
12591 @deftypevr {@code{opaque-dovecot-configuration} parameter} package dovecot
12592 The dovecot package.
12593 @end deftypevr
12594
12595 @deftypevr {@code{opaque-dovecot-configuration} parameter} string string
12596 The contents of the @code{dovecot.conf}, as a string.
12597 @end deftypevr
12598
12599 For example, if your @code{dovecot.conf} is just the empty string, you
12600 could instantiate a dovecot service like this:
12601
12602 @example
12603 (dovecot-service #:config
12604 (opaque-dovecot-configuration
12605 (string "")))
12606 @end example
12607
12608 @subsubheading OpenSMTPD Service
12609
12610 @deffn {Scheme Variable} opensmtpd-service-type
12611 This is the type of the @uref{https://www.opensmtpd.org, OpenSMTPD}
12612 service, whose value should be an @code{opensmtpd-configuration} object
12613 as in this example:
12614
12615 @example
12616 (service opensmtpd-service-type
12617 (opensmtpd-configuration
12618 (config-file (local-file "./my-smtpd.conf"))))
12619 @end example
12620 @end deffn
12621
12622 @deftp {Data Type} opensmtpd-configuration
12623 Data type representing the configuration of opensmtpd.
12624
12625 @table @asis
12626 @item @code{package} (default: @var{opensmtpd})
12627 Package object of the OpenSMTPD SMTP server.
12628
12629 @item @code{config-file} (default: @var{%default-opensmtpd-file})
12630 File-like object of the OpenSMTPD configuration file to use. By default
12631 it listens on the loopback network interface, and allows for mail from
12632 users and daemons on the local machine, as well as permitting email to
12633 remote servers. Run @command{man smtpd.conf} for more information.
12634
12635 @end table
12636 @end deftp
12637
12638 @subsubheading Exim Service
12639
12640 @deffn {Scheme Variable} exim-service-type
12641 This is the type of the @uref{https://exim.org, Exim} service, whose value
12642 should be an @code{exim-configuration} object as in this example:
12643
12644 @example
12645 (service exim-service-type
12646 (exim-configuration
12647 (config-file (local-file "./my-exim.conf"))
12648 (aliases '(("postmaster" "bob")
12649 ("bob" "bob@@example.com" "bob@@example2.com")))))
12650 @end example
12651 @end deffn
12652
12653 @deftp {Data Type} exim-configuration
12654 Data type representing the configuration of exim.
12655
12656 @table @asis
12657 @item @code{package} (default: @var{exim})
12658 Package object of the Exim server.
12659
12660 @item @code{config-file} (default: @code{#f})
12661 File-like object of the Exim configuration file to use. If its value is
12662 @code{#f} then use the default configuration file from the package
12663 provided in @code{package}. The resulting configuration file is loaded
12664 after setting the @code{exim_user} and @code{exim_group} configuration
12665 variables.
12666
12667 @item @code{aliases} (default: @code{'()})
12668 List of aliases to use when delivering mail on this system. The
12669 @code{car} of each list is used to match incoming mail, with the
12670 @code{cdr} of each list designating how to deliver it. There may be many
12671 delivery methods provided, in which case the mail is delivered to them
12672 all.
12673
12674 @end table
12675 @end deftp
12676
12677 @node Messaging Services
12678 @subsubsection Messaging Services
12679
12680 @cindex messaging
12681 @cindex jabber
12682 @cindex XMPP
12683 The @code{(gnu services messaging)} module provides Guix service
12684 definitions for messaging services: currently only Prosody is supported.
12685
12686 @subsubheading Prosody Service
12687
12688 @deffn {Scheme Variable} prosody-service-type
12689 This is the type for the @uref{http://prosody.im, Prosody XMPP
12690 communication server}. Its value must be a @code{prosody-configuration}
12691 record as in this example:
12692
12693 @example
12694 (service prosody-service-type
12695 (prosody-configuration
12696 (modules-enabled (cons "groups" %default-modules-enabled))
12697 (int-components
12698 (list
12699 (int-component-configuration
12700 (hostname "conference.example.net")
12701 (plugin "muc")
12702 (mod-muc (mod-muc-configuration)))))
12703 (virtualhosts
12704 (list
12705 (virtualhost-configuration
12706 (domain "example.net"))))))
12707 @end example
12708
12709 See below for details about @code{prosody-configuration}.
12710
12711 @end deffn
12712
12713 By default, Prosody does not need much configuration. Only one
12714 @code{virtualhosts} field is needed: it specifies the domain you wish
12715 Prosody to serve.
12716
12717 Prosodyctl will help you generate X.509 certificates and keys:
12718
12719 @example
12720 prosodyctl cert request example.net
12721 @end example
12722
12723 The available configuration parameters follow. Each parameter
12724 definition is preceded by its type; for example, @samp{string-list foo}
12725 indicates that the @code{foo} parameter should be specified as a list of
12726 strings. Types starting with @code{maybe-} denote parameters that won't
12727 show up in @code{prosody.cfg.lua} when their value is @code{'disabled}.
12728
12729 There is also a way to specify the configuration as a string, if you
12730 have an old @code{prosody.cfg.lua} file that you want to port over from
12731 some other system; see the end for more details.
12732
12733 @c The following documentation was initially generated by
12734 @c (generate-documentation) in (gnu services messaging). Manually maintained
12735 @c documentation is better, so we shouldn't hesitate to edit below as
12736 @c needed. However if the change you want to make to this documentation
12737 @c can be done in an automated way, it's probably easier to change
12738 @c (generate-documentation) than to make it below and have to deal with
12739 @c the churn as Prosody updates.
12740
12741 Available @code{prosody-configuration} fields are:
12742
12743 @deftypevr {@code{prosody-configuration} parameter} package prosody
12744 The Prosody package.
12745 @end deftypevr
12746
12747 @deftypevr {@code{prosody-configuration} parameter} file-name data-path
12748 Location of the Prosody data storage directory. See
12749 @url{http://prosody.im/doc/configure}.
12750 Defaults to @samp{"/var/lib/prosody"}.
12751 @end deftypevr
12752
12753 @deftypevr {@code{prosody-configuration} parameter} file-name-list plugin-paths
12754 Additional plugin directories. They are searched in all the specified
12755 paths in order. See @url{http://prosody.im/doc/plugins_directory}.
12756 Defaults to @samp{()}.
12757 @end deftypevr
12758
12759 @deftypevr {@code{prosody-configuration} parameter} string-list admins
12760 This is a list of accounts that are admins for the server. Note that you
12761 must create the accounts separately. See @url{http://prosody.im/doc/admins} and
12762 @url{http://prosody.im/doc/creating_accounts}.
12763 Example: @code{(admins '("user1@@example.com" "user2@@example.net"))}
12764 Defaults to @samp{()}.
12765 @end deftypevr
12766
12767 @deftypevr {@code{prosody-configuration} parameter} boolean use-libevent?
12768 Enable use of libevent for better performance under high load. See
12769 @url{http://prosody.im/doc/libevent}.
12770 Defaults to @samp{#f}.
12771 @end deftypevr
12772
12773 @deftypevr {@code{prosody-configuration} parameter} module-list modules-enabled
12774 This is the list of modules Prosody will load on startup. It looks for
12775 @code{mod_modulename.lua} in the plugins folder, so make sure that exists too.
12776 Documentation on modules can be found at: @url{http://prosody.im/doc/modules}.
12777 Defaults to @samp{%default-modules-enabled}.
12778 @end deftypevr
12779
12780 @deftypevr {@code{prosody-configuration} parameter} string-list modules-disabled
12781 @samp{"offline"}, @samp{"c2s"} and @samp{"s2s"} are auto-loaded, but
12782 should you want to disable them then add them to this list.
12783 Defaults to @samp{()}.
12784 @end deftypevr
12785
12786 @deftypevr {@code{prosody-configuration} parameter} file-name groups-file
12787 Path to a text file where the shared groups are defined. If this path is
12788 empty then @samp{mod_groups} does nothing. See
12789 @url{http://prosody.im/doc/modules/mod_groups}.
12790 Defaults to @samp{"/var/lib/prosody/sharedgroups.txt"}.
12791 @end deftypevr
12792
12793 @deftypevr {@code{prosody-configuration} parameter} boolean allow-registration?
12794 Disable account creation by default, for security. See
12795 @url{http://prosody.im/doc/creating_accounts}.
12796 Defaults to @samp{#f}.
12797 @end deftypevr
12798
12799 @deftypevr {@code{prosody-configuration} parameter} maybe-ssl-configuration ssl
12800 These are the SSL/TLS-related settings. Most of them are disabled so to
12801 use Prosody's defaults. If you do not completely understand these options, do
12802 not add them to your config, it is easy to lower the security of your server
12803 using them. See @url{http://prosody.im/doc/advanced_ssl_config}.
12804
12805 Available @code{ssl-configuration} fields are:
12806
12807 @deftypevr {@code{ssl-configuration} parameter} maybe-string protocol
12808 This determines what handshake to use.
12809 @end deftypevr
12810
12811 @deftypevr {@code{ssl-configuration} parameter} file-name key
12812 Path to your private key file, relative to @code{/etc/prosody}.
12813 Defaults to @samp{"/etc/prosody/certs/key.pem"}.
12814 @end deftypevr
12815
12816 @deftypevr {@code{ssl-configuration} parameter} file-name certificate
12817 Path to your certificate file, relative to @code{/etc/prosody}.
12818 Defaults to @samp{"/etc/prosody/certs/cert.pem"}.
12819 @end deftypevr
12820
12821 @deftypevr {@code{ssl-configuration} parameter} file-name capath
12822 Path to directory containing root certificates that you wish Prosody to
12823 trust when verifying the certificates of remote servers.
12824 Defaults to @samp{"/etc/ssl/certs"}.
12825 @end deftypevr
12826
12827 @deftypevr {@code{ssl-configuration} parameter} maybe-file-name cafile
12828 Path to a file containing root certificates that you wish Prosody to trust.
12829 Similar to @code{capath} but with all certificates concatenated together.
12830 @end deftypevr
12831
12832 @deftypevr {@code{ssl-configuration} parameter} maybe-string-list verify
12833 A list of verification options (these mostly map to OpenSSL's
12834 @code{set_verify()} flags).
12835 @end deftypevr
12836
12837 @deftypevr {@code{ssl-configuration} parameter} maybe-string-list options
12838 A list of general options relating to SSL/TLS. These map to OpenSSL's
12839 @code{set_options()}. For a full list of options available in LuaSec, see the
12840 LuaSec source.
12841 @end deftypevr
12842
12843 @deftypevr {@code{ssl-configuration} parameter} maybe-non-negative-integer depth
12844 How long a chain of certificate authorities to check when looking for a
12845 trusted root certificate.
12846 @end deftypevr
12847
12848 @deftypevr {@code{ssl-configuration} parameter} maybe-string ciphers
12849 An OpenSSL cipher string. This selects what ciphers Prosody will offer to
12850 clients, and in what order.
12851 @end deftypevr
12852
12853 @deftypevr {@code{ssl-configuration} parameter} maybe-file-name dhparam
12854 A path to a file containing parameters for Diffie-Hellman key exchange. You
12855 can create such a file with:
12856 @code{openssl dhparam -out /etc/prosody/certs/dh-2048.pem 2048}
12857 @end deftypevr
12858
12859 @deftypevr {@code{ssl-configuration} parameter} maybe-string curve
12860 Curve for Elliptic curve Diffie-Hellman. Prosody's default is
12861 @samp{"secp384r1"}.
12862 @end deftypevr
12863
12864 @deftypevr {@code{ssl-configuration} parameter} maybe-string-list verifyext
12865 A list of "extra" verification options.
12866 @end deftypevr
12867
12868 @deftypevr {@code{ssl-configuration} parameter} maybe-string password
12869 Password for encrypted private keys.
12870 @end deftypevr
12871
12872 @end deftypevr
12873
12874 @deftypevr {@code{prosody-configuration} parameter} boolean c2s-require-encryption?
12875 Whether to force all client-to-server connections to be encrypted or not.
12876 See @url{http://prosody.im/doc/modules/mod_tls}.
12877 Defaults to @samp{#f}.
12878 @end deftypevr
12879
12880 @deftypevr {@code{prosody-configuration} parameter} boolean s2s-require-encryption?
12881 Whether to force all server-to-server connections to be encrypted or not.
12882 See @url{http://prosody.im/doc/modules/mod_tls}.
12883 Defaults to @samp{#f}.
12884 @end deftypevr
12885
12886 @deftypevr {@code{prosody-configuration} parameter} boolean s2s-secure-auth?
12887 Whether to require encryption and certificate authentication. This
12888 provides ideal security, but requires servers you communicate with to support
12889 encryption AND present valid, trusted certificates. See
12890 @url{http://prosody.im/doc/s2s#security}.
12891 Defaults to @samp{#f}.
12892 @end deftypevr
12893
12894 @deftypevr {@code{prosody-configuration} parameter} string-list s2s-insecure-domains
12895 Many servers don't support encryption or have invalid or self-signed
12896 certificates. You can list domains here that will not be required to
12897 authenticate using certificates. They will be authenticated using DNS. See
12898 @url{http://prosody.im/doc/s2s#security}.
12899 Defaults to @samp{()}.
12900 @end deftypevr
12901
12902 @deftypevr {@code{prosody-configuration} parameter} string-list s2s-secure-domains
12903 Even if you leave @code{s2s-secure-auth?} disabled, you can still require
12904 valid certificates for some domains by specifying a list here. See
12905 @url{http://prosody.im/doc/s2s#security}.
12906 Defaults to @samp{()}.
12907 @end deftypevr
12908
12909 @deftypevr {@code{prosody-configuration} parameter} string authentication
12910 Select the authentication backend to use. The default provider stores
12911 passwords in plaintext and uses Prosody's configured data storage to store the
12912 authentication data. If you do not trust your server please see
12913 @url{http://prosody.im/doc/modules/mod_auth_internal_hashed} for information
12914 about using the hashed backend. See also
12915 @url{http://prosody.im/doc/authentication}
12916 Defaults to @samp{"internal_plain"}.
12917 @end deftypevr
12918
12919 @deftypevr {@code{prosody-configuration} parameter} maybe-string log
12920 Set logging options. Advanced logging configuration is not yet supported
12921 by the GuixSD Prosody Service. See @url{http://prosody.im/doc/logging}.
12922 Defaults to @samp{"*syslog"}.
12923 @end deftypevr
12924
12925 @deftypevr {@code{prosody-configuration} parameter} file-name pidfile
12926 File to write pid in. See @url{http://prosody.im/doc/modules/mod_posix}.
12927 Defaults to @samp{"/var/run/prosody/prosody.pid"}.
12928 @end deftypevr
12929
12930 @deftypevr {@code{prosody-configuration} parameter} virtualhost-configuration-list virtualhosts
12931 A host in Prosody is a domain on which user accounts can be created. For
12932 example if you want your users to have addresses like
12933 @samp{"john.smith@@example.com"} then you need to add a host
12934 @samp{"example.com"}. All options in this list will apply only to this host.
12935
12936 Note: the name "virtual" host is used in configuration to avoid confusion with
12937 the actual physical host that Prosody is installed on. A single Prosody
12938 instance can serve many domains, each one defined as a VirtualHost entry in
12939 Prosody's configuration. Conversely a server that hosts a single domain would
12940 have just one VirtualHost entry.
12941
12942 See @url{http://prosody.im/doc/configure#virtual_host_settings}.
12943
12944 Available @code{virtualhost-configuration} fields are:
12945
12946 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:
12947 @deftypevr {@code{virtualhost-configuration} parameter} string domain
12948 Domain you wish Prosody to serve.
12949 @end deftypevr
12950
12951 @end deftypevr
12952
12953 @deftypevr {@code{prosody-configuration} parameter} int-component-configuration-list int-components
12954 Components are extra services on a server which are available to clients,
12955 usually on a subdomain of the main server (such as
12956 @samp{"mycomponent.example.com"}). Example components might be chatroom
12957 servers, user directories, or gateways to other protocols.
12958
12959 Internal components are implemented with Prosody-specific plugins. To add an
12960 internal component, you simply fill the hostname field, and the plugin you wish
12961 to use for the component.
12962
12963 See @url{http://prosody.im/doc/components}.
12964 Defaults to @samp{()}.
12965
12966 Available @code{int-component-configuration} fields are:
12967
12968 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:
12969 @deftypevr {@code{int-component-configuration} parameter} string hostname
12970 Hostname of the component.
12971 @end deftypevr
12972
12973 @deftypevr {@code{int-component-configuration} parameter} string plugin
12974 Plugin you wish to use for the component.
12975 @end deftypevr
12976
12977 @deftypevr {@code{int-component-configuration} parameter} maybe-mod-muc-configuration mod-muc
12978 Multi-user chat (MUC) is Prosody's module for allowing you to create
12979 hosted chatrooms/conferences for XMPP users.
12980
12981 General information on setting up and using multi-user chatrooms can be found
12982 in the "Chatrooms" documentation (@url{http://prosody.im/doc/chatrooms}),
12983 which you should read if you are new to XMPP chatrooms.
12984
12985 See also @url{http://prosody.im/doc/modules/mod_muc}.
12986
12987 Available @code{mod-muc-configuration} fields are:
12988
12989 @deftypevr {@code{mod-muc-configuration} parameter} string name
12990 The name to return in service discovery responses.
12991 Defaults to @samp{"Prosody Chatrooms"}.
12992 @end deftypevr
12993
12994 @deftypevr {@code{mod-muc-configuration} parameter} string-or-boolean restrict-room-creation
12995 If @samp{#t}, this will only allow admins to create new chatrooms.
12996 Otherwise anyone can create a room. The value @samp{"local"} restricts room
12997 creation to users on the service's parent domain. E.g. @samp{user@@example.com}
12998 can create rooms on @samp{rooms.example.com}. The value @samp{"admin"}
12999 restricts to service administrators only.
13000 Defaults to @samp{#f}.
13001 @end deftypevr
13002
13003 @deftypevr {@code{mod-muc-configuration} parameter} non-negative-integer max-history-messages
13004 Maximum number of history messages that will be sent to the member that has
13005 just joined the room.
13006 Defaults to @samp{20}.
13007 @end deftypevr
13008
13009 @end deftypevr
13010
13011 @end deftypevr
13012
13013 @deftypevr {@code{prosody-configuration} parameter} ext-component-configuration-list ext-components
13014 External components use XEP-0114, which most standalone components
13015 support. To add an external component, you simply fill the hostname field. See
13016 @url{http://prosody.im/doc/components}.
13017 Defaults to @samp{()}.
13018
13019 Available @code{ext-component-configuration} fields are:
13020
13021 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:
13022 @deftypevr {@code{ext-component-configuration} parameter} string component-secret
13023 Password which the component will use to log in.
13024 @end deftypevr
13025
13026 @deftypevr {@code{ext-component-configuration} parameter} string hostname
13027 Hostname of the component.
13028 @end deftypevr
13029
13030 @end deftypevr
13031
13032 @deftypevr {@code{prosody-configuration} parameter} non-negative-integer-list component-ports
13033 Port(s) Prosody listens on for component connections.
13034 @end deftypevr
13035
13036 @deftypevr {@code{prosody-configuration} parameter} string component-interface
13037 Interface Prosody listens on for component connections.
13038 Defaults to @samp{"127.0.0.1"}.
13039 @end deftypevr
13040
13041 It could be that you just want to get a @code{prosody.cfg.lua}
13042 up and running. In that case, you can pass an
13043 @code{opaque-prosody-configuration} record as the value of
13044 @code{prosody-service-type}. As its name indicates, an opaque configuration
13045 does not have easy reflective capabilities.
13046 Available @code{opaque-prosody-configuration} fields are:
13047
13048 @deftypevr {@code{opaque-prosody-configuration} parameter} package prosody
13049 The prosody package.
13050 @end deftypevr
13051
13052 @deftypevr {@code{opaque-prosody-configuration} parameter} string prosody.cfg.lua
13053 The contents of the @code{prosody.cfg.lua} to use.
13054 @end deftypevr
13055
13056 For example, if your @code{prosody.cfg.lua} is just the empty
13057 string, you could instantiate a prosody service like this:
13058
13059 @example
13060 (service prosody-service-type
13061 (opaque-prosody-configuration
13062 (prosody.cfg.lua "")))
13063 @end example
13064
13065 @node Kerberos Services
13066 @subsubsection Kerberos Services
13067 @cindex Kerberos
13068
13069 The @code{(gnu services kerberos)} module provides services relating to
13070 the authentication protocol @dfn{Kerberos}.
13071
13072 @subsubheading Krb5 Service
13073
13074 Programs using a Kerberos client library normally
13075 expect a configuration file in @file{/etc/krb5.conf}.
13076 This service generates such a file from a definition provided in the
13077 operating system declaration.
13078 It does not cause any daemon to be started.
13079
13080 No ``keytab'' files are provided by this service---you must explicitly create them.
13081 This service is known to work with the MIT client library, @code{mit-krb5}.
13082 Other implementations have not been tested.
13083
13084 @defvr {Scheme Variable} krb5-service-type
13085 A service type for Kerberos 5 clients.
13086 @end defvr
13087
13088 @noindent
13089 Here is an example of its use:
13090 @lisp
13091 (service krb5-service-type
13092 (krb5-configuration
13093 (default-realm "EXAMPLE.COM")
13094 (allow-weak-crypto? #t)
13095 (realms (list
13096 (krb5-realm
13097 (name "EXAMPLE.COM")
13098 (admin-server "groucho.example.com")
13099 (kdc "karl.example.com"))
13100 (krb5-realm
13101 (name "ARGRX.EDU")
13102 (admin-server "kerb-admin.argrx.edu")
13103 (kdc "keys.argrx.edu"))))))
13104 @end lisp
13105
13106 @noindent
13107 This example provides a Kerberos@tie{}5 client configuration which:
13108 @itemize
13109 @item Recognizes two realms, @i{viz:} ``EXAMPLE.COM'' and ``ARGRX.EDU'', both
13110 of which have distinct administration servers and key distribution centers;
13111 @item Will default to the realm ``EXAMPLE.COM'' if the realm is not explicitly
13112 specified by clients;
13113 @item Accepts services which only support encryption types known to be weak.
13114 @end itemize
13115
13116 The @code{krb5-realm} and @code{krb5-configuration} types have many fields.
13117 Only the most commonly used ones are described here.
13118 For a full list, and more detailed explanation of each, see the MIT
13119 @uref{http://web.mit.edu/kerberos/krb5-devel/doc/admin/conf_files/krb5_conf.html,,krb5.conf}
13120 documentation.
13121
13122
13123 @deftp {Data Type} krb5-realm
13124 @cindex realm, kerberos
13125 @table @asis
13126 @item @code{name}
13127 This field is a string identifying the name of the realm.
13128 A common convention is to use the fully qualified DNS name of your organization,
13129 converted to upper case.
13130
13131 @item @code{admin-server}
13132 This field is a string identifying the host where the administration server is
13133 running.
13134
13135 @item @code{kdc}
13136 This field is a string identifying the key distribution center
13137 for the realm.
13138 @end table
13139 @end deftp
13140
13141 @deftp {Data Type} krb5-configuration
13142
13143 @table @asis
13144 @item @code{allow-weak-crypto?} (default: @code{#f})
13145 If this flag is @code{#t} then services which only offer encryption algorithms
13146 known to be weak will be accepted.
13147
13148 @item @code{default-realm} (default: @code{#f})
13149 This field should be a string identifying the default Kerberos
13150 realm for the client.
13151 You should set this field to the name of your Kerberos realm.
13152 If this value is @code{#f}
13153 then a realm must be specified with every Kerberos principal when invoking programs
13154 such as @command{kinit}.
13155
13156 @item @code{realms}
13157 This should be a non-empty list of @code{krb5-realm} objects, which clients may
13158 access.
13159 Normally, one of them will have a @code{name} field matching the @code{default-realm}
13160 field.
13161 @end table
13162 @end deftp
13163
13164
13165 @subsubheading PAM krb5 Service
13166 @cindex pam-krb5
13167
13168 The @code{pam-krb5} service allows for login authentication and password
13169 management via Kerberos.
13170 You will need this service if you want PAM enabled applications to authenticate
13171 users using Kerberos.
13172
13173 @defvr {Scheme Variable} pam-krb5-service-type
13174 A service type for the Kerberos 5 PAM module.
13175 @end defvr
13176
13177 @deftp {Data Type} pam-krb5-configuration
13178 Data type representing the configuration of the Kerberos 5 PAM module
13179 This type has the following parameters:
13180 @table @asis
13181 @item @code{pam-krb5} (default: @code{pam-krb5})
13182 The pam-krb5 package to use.
13183
13184 @item @code{minimum-uid} (default: @code{1000})
13185 The smallest user ID for which Kerberos authentications should be attempted.
13186 Local accounts with lower values will silently fail to authenticate.
13187 @end table
13188 @end deftp
13189
13190
13191 @node Web Services
13192 @subsubsection Web Services
13193
13194 @cindex web
13195 @cindex www
13196 @cindex HTTP
13197 The @code{(gnu services web)} module provides the following service:
13198
13199 @deffn {Scheme Procedure} nginx-service [#:nginx nginx] @
13200 [#:log-directory ``/var/log/nginx''] @
13201 [#:run-directory ``/var/run/nginx''] @
13202 [#:server-list '()] @
13203 [#:upstream-list '()] @
13204 [#:config-file @code{#f}]
13205
13206 Return a service that runs @var{nginx}, the nginx web server.
13207
13208 The nginx daemon loads its runtime configuration from @var{config-file}.
13209 Log files are written to @var{log-directory} and temporary runtime data
13210 files are written to @var{run-directory}. For proper operation, these
13211 arguments should match what is in @var{config-file} to ensure that the
13212 directories are created when the service is activated.
13213
13214 As an alternative to using a @var{config-file}, @var{server-list} can be
13215 used to specify the list of @dfn{server blocks} required on the host and
13216 @var{upstream-list} can be used to specify a list of @dfn{upstream
13217 blocks} to configure. For this to work, use the default value for
13218 @var{config-file}.
13219
13220 @end deffn
13221
13222 @deffn {Scheme Variable} nginx-service-type
13223 This is type for the nginx web server.
13224
13225 This service can be extended to add server blocks in addition to the
13226 default one, as in this example:
13227
13228 @example
13229 (simple-service 'my-extra-server nginx-service-type
13230 (list (nginx-server-configuration
13231 (https-port #f)
13232 (root "/srv/http/extra-website"))))
13233 @end example
13234 @end deffn
13235
13236 @deftp {Data Type} nginx-server-configuration
13237 Data type representing the configuration of an nginx server block.
13238 This type has the following parameters:
13239
13240 @table @asis
13241 @item @code{http-port} (default: @code{80})
13242 Nginx will listen for HTTP connection on this port. Set it at @code{#f} if
13243 nginx should not listen for HTTP (non secure) connection for this
13244 @dfn{server block}.
13245
13246 @item @code{https-port} (default: @code{443})
13247 Nginx will listen for HTTPS connection on this port. Set it at @code{#f} if
13248 nginx should not listen for HTTPS (secure) connection for this @dfn{server block}.
13249
13250 Note that nginx can listen for HTTP and HTTPS connections in the same
13251 @dfn{server block}.
13252
13253 @item @code{server-name} (default: @code{(list 'default)})
13254 A list of server names this server represents. @code{'default} represents the
13255 default server for connections matching no other server.
13256
13257 @item @code{root} (default: @code{"/srv/http"})
13258 Root of the website nginx will serve.
13259
13260 @item @code{locations} (default: @code{'()})
13261 A list of @dfn{nginx-location-configuration} or
13262 @dfn{nginx-named-location-configuration} records to use within this
13263 server block.
13264
13265 @item @code{index} (default: @code{(list "index.html")})
13266 Index files to look for when clients ask for a directory. If it cannot be found,
13267 Nginx will send the list of files in the directory.
13268
13269 @item @code{ssl-certificate} (default: @code{"/etc/nginx/cert.pem"})
13270 Where to find the certificate for secure connections. Set it to @code{#f} if
13271 you don't have a certificate or you don't want to use HTTPS.
13272
13273 @item @code{ssl-certificate-key} (default: @code{"/etc/nginx/key.pem"})
13274 Where to find the private key for secure connections. Set it to @code{#f} if
13275 you don't have a key or you don't want to use HTTPS.
13276
13277 @item @code{server-tokens?} (default: @code{#f})
13278 Whether the server should add its configuration to response.
13279
13280 @end table
13281 @end deftp
13282
13283 @node VPN Services
13284 @subsubsection VPN Services
13285 @cindex VPN (virtual private network)
13286 @cindex virtual private network (VPN)
13287
13288 The @code{(gnu services vpn)} module provides services related to
13289 @dfn{virtual private networks} (VPNs). It provides a @emph{client} service for
13290 your machine to connect to a VPN, and a @emph{servire} service for your machine
13291 to host a VPN. Both services use @uref{https://openvpn.net/, OpenVPN}.
13292
13293 @deffn {Scheme Procedure} openvpn-client-service @
13294 [#:config (openvpn-client-configuration)]
13295
13296 Return a service that runs @command{openvpn}, a VPN daemon, as a client.
13297 @end deffn
13298
13299 @deffn {Scheme Procedure} openvpn-server-service @
13300 [#:config (openvpn-server-configuration)]
13301
13302 Return a service that runs @command{openvpn}, a VPN daemon, as a server.
13303
13304 Both can be run simultaneously.
13305 @end deffn
13306
13307 @c %automatically generated documentation
13308
13309 Available @code{openvpn-client-configuration} fields are:
13310
13311 @deftypevr {@code{openvpn-client-configuration} parameter} package openvpn
13312 The OpenVPN package.
13313
13314 @end deftypevr
13315
13316 @deftypevr {@code{openvpn-client-configuration} parameter} string pid-file
13317 The OpenVPN pid file.
13318
13319 Defaults to @samp{"/var/run/openvpn/openvpn.pid"}.
13320
13321 @end deftypevr
13322
13323 @deftypevr {@code{openvpn-client-configuration} parameter} proto proto
13324 The protocol (UDP or TCP) used to open a channel between clients and
13325 servers.
13326
13327 Defaults to @samp{udp}.
13328
13329 @end deftypevr
13330
13331 @deftypevr {@code{openvpn-client-configuration} parameter} dev dev
13332 The device type used to represent the VPN connection.
13333
13334 Defaults to @samp{tun}.
13335
13336 @end deftypevr
13337
13338 @deftypevr {@code{openvpn-client-configuration} parameter} string ca
13339 The certificate authority to check connections against.
13340
13341 Defaults to @samp{"/etc/openvpn/ca.crt"}.
13342
13343 @end deftypevr
13344
13345 @deftypevr {@code{openvpn-client-configuration} parameter} string cert
13346 The certificate of the machine the daemon is running on. It should be
13347 signed by the authority given in @code{ca}.
13348
13349 Defaults to @samp{"/etc/openvpn/client.crt"}.
13350
13351 @end deftypevr
13352
13353 @deftypevr {@code{openvpn-client-configuration} parameter} string key
13354 The key of the machine the daemon is running on. It must be the key whose
13355 certificate is @code{cert}.
13356
13357 Defaults to @samp{"/etc/openvpn/client.key"}.
13358
13359 @end deftypevr
13360
13361 @deftypevr {@code{openvpn-client-configuration} parameter} boolean comp-lzo?
13362 Whether to use the lzo compression algorithm.
13363
13364 Defaults to @samp{#t}.
13365
13366 @end deftypevr
13367
13368 @deftypevr {@code{openvpn-client-configuration} parameter} boolean persist-key?
13369 Don't re-read key files across SIGUSR1 or --ping-restart.
13370
13371 Defaults to @samp{#t}.
13372
13373 @end deftypevr
13374
13375 @deftypevr {@code{openvpn-client-configuration} parameter} boolean persist-tun?
13376 Don't close and reopen TUN/TAP device or run up/down scripts across
13377 SIGUSR1 or --ping-restart restarts.
13378
13379 Defaults to @samp{#t}.
13380
13381 @end deftypevr
13382
13383 @deftypevr {@code{openvpn-client-configuration} parameter} number verbosity
13384 Verbosity level.
13385
13386 Defaults to @samp{3}.
13387
13388 @end deftypevr
13389
13390 @deftypevr {@code{openvpn-client-configuration} parameter} tls-auth-client tls-auth
13391 Add an additional layer of HMAC authentication on top of the TLS control
13392 channel to protect against DoS attacks.
13393
13394 Defaults to @samp{#f}.
13395
13396 @end deftypevr
13397
13398 @deftypevr {@code{openvpn-client-configuration} parameter} key-usage verify-key-usage?
13399 Whether to check the server certificate has server usage extension.
13400
13401 Defaults to @samp{#t}.
13402
13403 @end deftypevr
13404
13405 @deftypevr {@code{openvpn-client-configuration} parameter} bind bind?
13406 Bind to a specific local port number.
13407
13408 Defaults to @samp{#f}.
13409
13410 @end deftypevr
13411
13412 @deftypevr {@code{openvpn-client-configuration} parameter} resolv-retry resolv-retry?
13413 Retry resolving server address.
13414
13415 Defaults to @samp{#t}.
13416
13417 @end deftypevr
13418
13419 @deftypevr {@code{openvpn-client-configuration} parameter} openvpn-remote-list remote
13420 A list of remote servers to connect to.
13421
13422 Defaults to @samp{()}.
13423
13424 Available @code{openvpn-remote-configuration} fields are:
13425
13426 @deftypevr {@code{openvpn-remote-configuration} parameter} string name
13427 Server name.
13428
13429 Defaults to @samp{"my-server"}.
13430
13431 @end deftypevr
13432
13433 @deftypevr {@code{openvpn-remote-configuration} parameter} number port
13434 Port number the server listens to.
13435
13436 Defaults to @samp{1194}.
13437
13438 @end deftypevr
13439
13440 @end deftypevr
13441 @c %end of automatic openvpn-client documentation
13442
13443 @c %automatically generated documentation
13444
13445 Available @code{openvpn-server-configuration} fields are:
13446
13447 @deftypevr {@code{openvpn-server-configuration} parameter} package openvpn
13448 The OpenVPN package.
13449
13450 @end deftypevr
13451
13452 @deftypevr {@code{openvpn-server-configuration} parameter} string pid-file
13453 The OpenVPN pid file.
13454
13455 Defaults to @samp{"/var/run/openvpn/openvpn.pid"}.
13456
13457 @end deftypevr
13458
13459 @deftypevr {@code{openvpn-server-configuration} parameter} proto proto
13460 The protocol (UDP or TCP) used to open a channel between clients and
13461 servers.
13462
13463 Defaults to @samp{udp}.
13464
13465 @end deftypevr
13466
13467 @deftypevr {@code{openvpn-server-configuration} parameter} dev dev
13468 The device type used to represent the VPN connection.
13469
13470 Defaults to @samp{tun}.
13471
13472 @end deftypevr
13473
13474 @deftypevr {@code{openvpn-server-configuration} parameter} string ca
13475 The certificate authority to check connections against.
13476
13477 Defaults to @samp{"/etc/openvpn/ca.crt"}.
13478
13479 @end deftypevr
13480
13481 @deftypevr {@code{openvpn-server-configuration} parameter} string cert
13482 The certificate of the machine the daemon is running on. It should be
13483 signed by the authority given in @code{ca}.
13484
13485 Defaults to @samp{"/etc/openvpn/client.crt"}.
13486
13487 @end deftypevr
13488
13489 @deftypevr {@code{openvpn-server-configuration} parameter} string key
13490 The key of the machine the daemon is running on. It must be the key whose
13491 certificate is @code{cert}.
13492
13493 Defaults to @samp{"/etc/openvpn/client.key"}.
13494
13495 @end deftypevr
13496
13497 @deftypevr {@code{openvpn-server-configuration} parameter} boolean comp-lzo?
13498 Whether to use the lzo compression algorithm.
13499
13500 Defaults to @samp{#t}.
13501
13502 @end deftypevr
13503
13504 @deftypevr {@code{openvpn-server-configuration} parameter} boolean persist-key?
13505 Don't re-read key files across SIGUSR1 or --ping-restart.
13506
13507 Defaults to @samp{#t}.
13508
13509 @end deftypevr
13510
13511 @deftypevr {@code{openvpn-server-configuration} parameter} boolean persist-tun?
13512 Don't close and reopen TUN/TAP device or run up/down scripts across
13513 SIGUSR1 or --ping-restart restarts.
13514
13515 Defaults to @samp{#t}.
13516
13517 @end deftypevr
13518
13519 @deftypevr {@code{openvpn-server-configuration} parameter} number verbosity
13520 Verbosity level.
13521
13522 Defaults to @samp{3}.
13523
13524 @end deftypevr
13525
13526 @deftypevr {@code{openvpn-server-configuration} parameter} tls-auth-server tls-auth
13527 Add an additional layer of HMAC authentication on top of the TLS control
13528 channel to protect against DoS attacks.
13529
13530 Defaults to @samp{#f}.
13531
13532 @end deftypevr
13533
13534 @deftypevr {@code{openvpn-server-configuration} parameter} number port
13535 Specifies the port number on which the server listens.
13536
13537 Defaults to @samp{1194}.
13538
13539 @end deftypevr
13540
13541 @deftypevr {@code{openvpn-server-configuration} parameter} ip-mask server
13542 An ip and mask specifying the subnet inside the virtual network.
13543
13544 Defaults to @samp{"10.8.0.0 255.255.255.0"}.
13545
13546 @end deftypevr
13547
13548 @deftypevr {@code{openvpn-server-configuration} parameter} cidr6 server-ipv6
13549 A CIDR notation specifying the IPv6 subnet inside the virtual network.
13550
13551 Defaults to @samp{#f}.
13552
13553 @end deftypevr
13554
13555 @deftypevr {@code{openvpn-server-configuration} parameter} string dh
13556 The Diffie-Hellman parameters file.
13557
13558 Defaults to @samp{"/etc/openvpn/dh2048.pem"}.
13559
13560 @end deftypevr
13561
13562 @deftypevr {@code{openvpn-server-configuration} parameter} string ifconfig-pool-persist
13563 The file that records client IPs.
13564
13565 Defaults to @samp{"/etc/openvpn/ipp.txt"}.
13566
13567 @end deftypevr
13568
13569 @deftypevr {@code{openvpn-server-configuration} parameter} gateway redirect-gateway?
13570 When true, the server will act as a gateway for its clients.
13571
13572 Defaults to @samp{#f}.
13573
13574 @end deftypevr
13575
13576 @deftypevr {@code{openvpn-server-configuration} parameter} boolean client-to-client?
13577 When true, clients are allowed to talk to each other inside the VPN.
13578
13579 Defaults to @samp{#f}.
13580
13581 @end deftypevr
13582
13583 @deftypevr {@code{openvpn-server-configuration} parameter} keepalive keepalive
13584 Causes ping-like messages to be sent back and forth over the link so
13585 that each side knows when the other side has gone down. @code{keepalive}
13586 requires a pair. The first element is the period of the ping sending,
13587 and the second element is the timeout before considering the other side
13588 down.
13589
13590 @end deftypevr
13591
13592 @deftypevr {@code{openvpn-server-configuration} parameter} number max-clients
13593 The maximum number of clients.
13594
13595 Defaults to @samp{100}.
13596
13597 @end deftypevr
13598
13599 @deftypevr {@code{openvpn-server-configuration} parameter} string status
13600 The status file. This file shows a small report on current connection.
13601 It is truncated and rewritten every minute.
13602
13603 Defaults to @samp{"/var/run/openvpn/status"}.
13604
13605 @end deftypevr
13606
13607 @deftypevr {@code{openvpn-server-configuration} parameter} openvpn-ccd-list client-config-dir
13608 The list of configuration for some clients.
13609
13610 Defaults to @samp{()}.
13611
13612 Available @code{openvpn-ccd-configuration} fields are:
13613
13614 @deftypevr {@code{openvpn-ccd-configuration} parameter} string name
13615 Client name.
13616
13617 Defaults to @samp{"client"}.
13618
13619 @end deftypevr
13620
13621 @deftypevr {@code{openvpn-ccd-configuration} parameter} ip-mask iroute
13622 Client own network
13623
13624 Defaults to @samp{#f}.
13625
13626 @end deftypevr
13627
13628 @deftypevr {@code{openvpn-ccd-configuration} parameter} ip-mask ifconfig-push
13629 Client VPN IP.
13630
13631 Defaults to @samp{#f}.
13632
13633 @end deftypevr
13634
13635 @end deftypevr
13636
13637
13638 @c %end of automatic openvpn-server documentation
13639
13640
13641 @deftp {Data Type} nginx-upstream-configuration
13642 Data type representing the configuration of an nginx @code{upstream}
13643 block. This type has the following parameters:
13644
13645 @table @asis
13646 @item @code{name}
13647 Name for this group of servers.
13648
13649 @item @code{servers}
13650 Specify the addresses of the servers in the group. The address can be
13651 specified as a IP address (e.g. @samp{127.0.0.1}), domain name
13652 (e.g. @samp{backend1.example.com}) or a path to a UNIX socket using the
13653 prefix @samp{unix:}. For addresses using an IP address or domain name,
13654 the default port is 80, and a different port can be specified
13655 explicitly.
13656
13657 @end table
13658 @end deftp
13659
13660 @deftp {Data Type} nginx-location-configuration
13661 Data type representing the configuration of an nginx @code{location}
13662 block. This type has the following parameters:
13663
13664 @table @asis
13665 @item @code{uri}
13666 URI which this location block matches.
13667
13668 @anchor{nginx-location-configuration body}
13669 @item @code{body}
13670 Body of the location block, specified as a string. This can contain many
13671 configuration directives. For example, to pass requests to a upstream
13672 server group defined using an @code{nginx-upstream-configuration} block,
13673 the following directive would be specified in the body @samp{proxy_pass
13674 http://upstream-name;}.
13675
13676 @end table
13677 @end deftp
13678
13679 @deftp {Data Type} nginx-named-location-configuration
13680 Data type representing the configuration of an nginx named location
13681 block. Named location blocks are used for request redirection, and not
13682 used for regular request processing. This type has the following
13683 parameters:
13684
13685 @table @asis
13686 @item @code{name}
13687 Name to identify this location block.
13688
13689 @item @code{body}
13690 @xref{nginx-location-configuration body}, as the body for named location
13691 blocks can be used in a similar way to the
13692 @code{nginx-location-configuration body}. One restriction is that the
13693 body of a named location block cannot contain location blocks.
13694
13695 @end table
13696 @end deftp
13697
13698 @node Network File System
13699 @subsubsection Network File System
13700 @cindex NFS
13701
13702 The @code{(gnu services nfs)} module provides the following services,
13703 which are most commonly used in relation to mounting or exporting
13704 directory trees as @dfn{network file systems} (NFS).
13705
13706 @subsubheading RPC Bind Service
13707 @cindex rpcbind
13708
13709 The RPC Bind service provides a facility to map program numbers into
13710 universal addresses.
13711 Many NFS related services use this facility. Hence it is automatically
13712 started when a dependent service starts.
13713
13714 @defvr {Scheme Variable} rpcbind-service-type
13715 A service type for the RPC portmapper daemon.
13716 @end defvr
13717
13718
13719 @deftp {Data Type} rpcbind-configuration
13720 Data type representing the configuration of the RPC Bind Service.
13721 This type has the following parameters:
13722 @table @asis
13723 @item @code{rpcbind} (default: @code{rpcbind})
13724 The rpcbind package to use.
13725
13726 @item @code{warm-start?} (default: @code{#t})
13727 If this parameter is @code{#t}, then the daemon will read a
13728 state file on startup thus reloading state information saved by a previous
13729 instance.
13730 @end table
13731 @end deftp
13732
13733
13734 @subsubheading Pipefs Pseudo File System
13735 @cindex pipefs
13736 @cindex rpc_pipefs
13737
13738 The pipefs file system is used to transfer NFS related data
13739 between the kernel and user space programs.
13740
13741 @defvr {Scheme Variable} pipefs-service-type
13742 A service type for the pipefs pseudo file system.
13743 @end defvr
13744
13745 @deftp {Data Type} pipefs-configuration
13746 Data type representing the configuration of the pipefs pseudo file system service.
13747 This type has the following parameters:
13748 @table @asis
13749 @item @code{mount-point} (default: @code{"/var/lib/nfs/rpc_pipefs"})
13750 The directory to which the file system is to be attached.
13751 @end table
13752 @end deftp
13753
13754
13755 @subsubheading GSS Daemon Service
13756 @cindex GSSD
13757 @cindex GSS
13758 @cindex global security system
13759
13760 The @dfn{global security system} (GSS) daemon provides strong security for RPC
13761 based protocols.
13762 Before exchanging RPC requests an RPC client must establish a security
13763 context. Typically this is done using the Kerberos command @command{kinit}
13764 or automatically at login time using PAM services (@pxref{Kerberos Services}).
13765
13766 @defvr {Scheme Variable} gss-service-type
13767 A service type for the Global Security System (GSS) daemon.
13768 @end defvr
13769
13770 @deftp {Data Type} gss-configuration
13771 Data type representing the configuration of the GSS daemon service.
13772 This type has the following parameters:
13773 @table @asis
13774 @item @code{nfs-utils} (default: @code{nfs-utils})
13775 The package in which the @command{rpc.gssd} command is to be found.
13776
13777 @item @code{pipefs-directory} (default: @code{"/var/lib/nfs/rpc_pipefs"})
13778 The directory where the pipefs file system is mounted.
13779
13780 @end table
13781 @end deftp
13782
13783
13784 @subsubheading IDMAP Daemon Service
13785 @cindex idmapd
13786 @cindex name mapper
13787
13788 The idmap daemon service provides mapping between user IDs and user names.
13789 Typically it is required in order to access file systems mounted via NFSv4.
13790
13791 @defvr {Scheme Variable} idmap-service-type
13792 A service type for the Identity Mapper (IDMAP) daemon.
13793 @end defvr
13794
13795 @deftp {Data Type} idmap-configuration
13796 Data type representing the configuration of the IDMAP daemon service.
13797 This type has the following parameters:
13798 @table @asis
13799 @item @code{nfs-utils} (default: @code{nfs-utils})
13800 The package in which the @command{rpc.idmapd} command is to be found.
13801
13802 @item @code{pipefs-directory} (default: @code{"/var/lib/nfs/rpc_pipefs"})
13803 The directory where the pipefs file system is mounted.
13804
13805 @item @code{domain} (default: @code{#f})
13806 The local NFSv4 domain name.
13807 This must be a string or @code{#f}.
13808 If it is @code{#f} then the daemon will use the host's fully qualified domain name.
13809
13810 @end table
13811 @end deftp
13812
13813 @node Continuous Integration
13814 @subsubsection Continuous Integration
13815
13816 @cindex continuous integration
13817 @uref{https://notabug.org/mthl/cuirass, Cuirass} is a continuous
13818 integration tool for Guix. It can be used both for development and for
13819 providing substitutes to others (@pxref{Substitutes}).
13820
13821 The @code{(gnu services cuirass)} module provides the following service.
13822
13823 @defvr {Scheme Procedure} cuirass-service-type
13824 The type of the Cuirass service. Its value must be a
13825 @code{cuirass-configuration} object, as described below.
13826 @end defvr
13827
13828 To add build jobs, you have to set the @code{specifications} field of
13829 the configuration. Here is an example of a service defining a build job
13830 based on a specification that can be found in Cuirass source tree. This
13831 service polls the Guix repository and builds a subset of the Guix
13832 packages, as prescribed in the @file{gnu-system.scm} example spec:
13833
13834 @example
13835 (let ((spec #~((#:name . "guix")
13836 (#:url . "git://git.savannah.gnu.org/guix.git")
13837 (#:load-path . ".")
13838
13839 ;; Here we must provide an absolute file name.
13840 ;; We take jobs from one of the examples provided
13841 ;; by Cuirass.
13842 (#:file . #$(file-append
13843 cuirass
13844 "/tests/gnu-system.scm"))
13845
13846 (#:proc . hydra-jobs)
13847 (#:arguments (subset . "hello"))
13848 (#:branch . "master"))))
13849 (service cuirass-service-type
13850 (cuirass-configuration
13851 (specifications #~(list #$spec)))))
13852 @end example
13853
13854 While information related to build jobs is located directly in the
13855 specifications, global settings for the @command{cuirass} process are
13856 accessible in other @code{cuirass-configuration} fields.
13857
13858 @deftp {Data Type} cuirass-configuration
13859 Data type representing the configuration of Cuirass.
13860
13861 @table @asis
13862 @item @code{log-file} (default: @code{"/var/log/cuirass.log"})
13863 Location of the log file.
13864
13865 @item @code{cache-directory} (default: @code{"/var/cache/cuirass"})
13866 Location of the repository cache.
13867
13868 @item @code{user} (default: @code{"cuirass"})
13869 Owner of the @code{cuirass} process.
13870
13871 @item @code{group} (default: @code{"cuirass"})
13872 Owner's group of the @code{cuirass} process.
13873
13874 @item @code{interval} (default: @code{60})
13875 Number of seconds between the poll of the repositories followed by the
13876 Cuirass jobs.
13877
13878 @item @code{database} (default: @code{"/var/run/cuirass/cuirass.db"})
13879 Location of sqlite database which contains the build results and previously
13880 added specifications.
13881
13882 @item @code{port} (default: @code{8080})
13883 Port number used by the HTTP server.
13884
13885 @item @code{specifications} (default: @code{#~'()})
13886 A gexp (@pxref{G-Expressions}) that evaluates to a list of specifications,
13887 where a specification is an association list
13888 (@pxref{Associations Lists,,, guile, GNU Guile Reference Manual}) whose
13889 keys are keywords (@code{#:keyword-example}) as shown in the example
13890 above.
13891
13892 @item @code{use-substitutes?} (default: @code{#f})
13893 This allows using substitutes to avoid building every dependencies of a job
13894 from source.
13895
13896 @item @code{one-shot?} (default: @code{#f})
13897 Only evaluate specifications and build derivations once.
13898
13899 @item @code{load-path} (default: @code{'()})
13900 This allows users to define their own packages and make them visible to
13901 cuirass as in @command{guix build} command.
13902
13903 @item @code{cuirass} (default: @code{cuirass})
13904 The Cuirass package to use.
13905 @end table
13906 @end deftp
13907
13908 @node Power management Services
13909 @subsubsection Power management Services
13910
13911 @cindex power management with TLP
13912 The @code{(gnu services pm)} module provides a Guix service definition
13913 for the Linux power management tool TLP.
13914
13915 TLP enables various powersaving modes in userspace and kernel.
13916 Contrary to @code{upower-service}, it is not a passive,
13917 monitoring tool, as it will apply custom settings each time a new power
13918 source is detected. More information can be found at
13919 @uref{http://linrunner.de/en/tlp/tlp.html, TLP home page}.
13920
13921 @deffn {Scheme Variable} tlp-service-type
13922 The service type for the TLP tool. Its value should be a valid
13923 TLP configuration (see below). To use the default settings, simply
13924 write:
13925 @example
13926 (service tlp-service-type)
13927 @end example
13928 @end deffn
13929
13930 By default TLP does not need much configuration but most TLP parameters
13931 can be tweaked using @code{tlp-configuration}.
13932
13933 Each parameter definition is preceded by its type; for example,
13934 @samp{boolean foo} indicates that the @code{foo} parameter
13935 should be specified as a boolean. Types starting with
13936 @code{maybe-} denote parameters that won't show up in TLP config file
13937 when their value is @code{'disabled}.
13938
13939 @c The following documentation was initially generated by
13940 @c (generate-tlp-documentation) in (gnu services pm). Manually maintained
13941 @c documentation is better, so we shouldn't hesitate to edit below as
13942 @c needed. However if the change you want to make to this documentation
13943 @c can be done in an automated way, it's probably easier to change
13944 @c (generate-documentation) than to make it below and have to deal with
13945 @c the churn as TLP updates.
13946
13947 Available @code{tlp-configuration} fields are:
13948
13949 @deftypevr {@code{tlp-configuration} parameter} package tlp
13950 The TLP package.
13951
13952 @end deftypevr
13953
13954 @deftypevr {@code{tlp-configuration} parameter} boolean tlp-enable?
13955 Set to true if you wish to enable TLP.
13956
13957 Defaults to @samp{#t}.
13958
13959 @end deftypevr
13960
13961 @deftypevr {@code{tlp-configuration} parameter} string tlp-default-mode
13962 Default mode when no power supply can be detected. Alternatives are AC
13963 and BAT.
13964
13965 Defaults to @samp{"AC"}.
13966
13967 @end deftypevr
13968
13969 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-ac
13970 Number of seconds Linux kernel has to wait after the disk goes idle,
13971 before syncing on AC.
13972
13973 Defaults to @samp{0}.
13974
13975 @end deftypevr
13976
13977 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer disk-idle-secs-on-bat
13978 Same as @code{disk-idle-ac} but on BAT mode.
13979
13980 Defaults to @samp{2}.
13981
13982 @end deftypevr
13983
13984 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-ac
13985 Dirty pages flushing periodicity, expressed in seconds.
13986
13987 Defaults to @samp{15}.
13988
13989 @end deftypevr
13990
13991 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer max-lost-work-secs-on-bat
13992 Same as @code{max-lost-work-secs-on-ac} but on BAT mode.
13993
13994 Defaults to @samp{60}.
13995
13996 @end deftypevr
13997
13998 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-ac
13999 CPU frequency scaling governor on AC mode. With intel_pstate driver,
14000 alternatives are powersave and performance. With acpi-cpufreq driver,
14001 alternatives are ondemand, powersave, performance and conservative.
14002
14003 Defaults to @samp{disabled}.
14004
14005 @end deftypevr
14006
14007 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list cpu-scaling-governor-on-bat
14008 Same as @code{cpu-scaling-governor-on-ac} but on BAT mode.
14009
14010 Defaults to @samp{disabled}.
14011
14012 @end deftypevr
14013
14014 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-ac
14015 Set the min available frequency for the scaling governor on AC.
14016
14017 Defaults to @samp{disabled}.
14018
14019 @end deftypevr
14020
14021 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-ac
14022 Set the max available frequency for the scaling governor on AC.
14023
14024 Defaults to @samp{disabled}.
14025
14026 @end deftypevr
14027
14028 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-min-freq-on-bat
14029 Set the min available frequency for the scaling governor on BAT.
14030
14031 Defaults to @samp{disabled}.
14032
14033 @end deftypevr
14034
14035 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-scaling-max-freq-on-bat
14036 Set the max available frequency for the scaling governor on BAT.
14037
14038 Defaults to @samp{disabled}.
14039
14040 @end deftypevr
14041
14042 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-ac
14043 Limit the min P-state to control the power dissipation of the CPU, in AC
14044 mode. Values are stated as a percentage of the available performance.
14045
14046 Defaults to @samp{disabled}.
14047
14048 @end deftypevr
14049
14050 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-ac
14051 Limit the max P-state to control the power dissipation of the CPU, in AC
14052 mode. Values are stated as a percentage of the available performance.
14053
14054 Defaults to @samp{disabled}.
14055
14056 @end deftypevr
14057
14058 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-min-perf-on-bat
14059 Same as @code{cpu-min-perf-on-ac} on BAT mode.
14060
14061 Defaults to @samp{disabled}.
14062
14063 @end deftypevr
14064
14065 @deftypevr {@code{tlp-configuration} parameter} maybe-non-negative-integer cpu-max-perf-on-bat
14066 Same as @code{cpu-max-perf-on-ac} on BAT mode.
14067
14068 Defaults to @samp{disabled}.
14069
14070 @end deftypevr
14071
14072 @deftypevr {@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-ac?
14073 Enable CPU turbo boost feature on AC mode.
14074
14075 Defaults to @samp{disabled}.
14076
14077 @end deftypevr
14078
14079 @deftypevr {@code{tlp-configuration} parameter} maybe-boolean cpu-boost-on-bat?
14080 Same as @code{cpu-boost-on-ac?} on BAT mode.
14081
14082 Defaults to @samp{disabled}.
14083
14084 @end deftypevr
14085
14086 @deftypevr {@code{tlp-configuration} parameter} boolean sched-powersave-on-ac?
14087 Allow Linux kernel to minimize the number of CPU cores/hyper-threads
14088 used under light load conditions.
14089
14090 Defaults to @samp{#f}.
14091
14092 @end deftypevr
14093
14094 @deftypevr {@code{tlp-configuration} parameter} boolean sched-powersave-on-bat?
14095 Same as @code{sched-powersave-on-ac?} but on BAT mode.
14096
14097 Defaults to @samp{#t}.
14098
14099 @end deftypevr
14100
14101 @deftypevr {@code{tlp-configuration} parameter} boolean nmi-watchdog?
14102 Enable Linux kernel NMI watchdog.
14103
14104 Defaults to @samp{#f}.
14105
14106 @end deftypevr
14107
14108 @deftypevr {@code{tlp-configuration} parameter} maybe-string phc-controls
14109 For Linux kernels with PHC patch applied, change CPU voltages. An
14110 example value would be @samp{"F:V F:V F:V F:V"}.
14111
14112 Defaults to @samp{disabled}.
14113
14114 @end deftypevr
14115
14116 @deftypevr {@code{tlp-configuration} parameter} string energy-perf-policy-on-ac
14117 Set CPU performance versus energy saving policy on AC. Alternatives are
14118 performance, normal, powersave.
14119
14120 Defaults to @samp{"performance"}.
14121
14122 @end deftypevr
14123
14124 @deftypevr {@code{tlp-configuration} parameter} string energy-perf-policy-on-bat
14125 Same as @code{energy-perf-policy-ac} but on BAT mode.
14126
14127 Defaults to @samp{"powersave"}.
14128
14129 @end deftypevr
14130
14131 @deftypevr {@code{tlp-configuration} parameter} space-separated-string-list disks-devices
14132 Hard disk devices.
14133
14134 @end deftypevr
14135
14136 @deftypevr {@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-ac
14137 Hard disk advanced power management level.
14138
14139 @end deftypevr
14140
14141 @deftypevr {@code{tlp-configuration} parameter} space-separated-string-list disk-apm-level-on-bat
14142 Same as @code{disk-apm-bat} but on BAT mode.
14143
14144 @end deftypevr
14145
14146 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-ac
14147 Hard disk spin down timeout. One value has to be specified for each
14148 declared hard disk.
14149
14150 Defaults to @samp{disabled}.
14151
14152 @end deftypevr
14153
14154 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-spindown-timeout-on-bat
14155 Same as @code{disk-spindown-timeout-on-ac} but on BAT mode.
14156
14157 Defaults to @samp{disabled}.
14158
14159 @end deftypevr
14160
14161 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list disk-iosched
14162 Select IO scheduler for disk devices. One value has to be specified for
14163 each declared hard disk. Example alternatives are cfq, deadline and
14164 noop.
14165
14166 Defaults to @samp{disabled}.
14167
14168 @end deftypevr
14169
14170 @deftypevr {@code{tlp-configuration} parameter} string sata-linkpwr-on-ac
14171 SATA aggressive link power management (ALPM) level. Alternatives are
14172 min_power, medium_power, max_performance.
14173
14174 Defaults to @samp{"max_performance"}.
14175
14176 @end deftypevr
14177
14178 @deftypevr {@code{tlp-configuration} parameter} string sata-linkpwr-on-bat
14179 Same as @code{sata-linkpwr-ac} but on BAT mode.
14180
14181 Defaults to @samp{"min_power"}.
14182
14183 @end deftypevr
14184
14185 @deftypevr {@code{tlp-configuration} parameter} maybe-string sata-linkpwr-blacklist
14186 Exclude specified SATA host devices for link power management.
14187
14188 Defaults to @samp{disabled}.
14189
14190 @end deftypevr
14191
14192 @deftypevr {@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-ac?
14193 Enable Runtime Power Management for AHCI controller and disks on AC
14194 mode.
14195
14196 Defaults to @samp{disabled}.
14197
14198 @end deftypevr
14199
14200 @deftypevr {@code{tlp-configuration} parameter} maybe-on-off-boolean ahci-runtime-pm-on-bat?
14201 Same as @code{ahci-runtime-pm-on-ac} on BAT mode.
14202
14203 Defaults to @samp{disabled}.
14204
14205 @end deftypevr
14206
14207 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer ahci-runtime-pm-timeout
14208 Seconds of inactivity before disk is suspended.
14209
14210 Defaults to @samp{15}.
14211
14212 @end deftypevr
14213
14214 @deftypevr {@code{tlp-configuration} parameter} string pcie-aspm-on-ac
14215 PCI Express Active State Power Management level. Alternatives are
14216 default, performance, powersave.
14217
14218 Defaults to @samp{"performance"}.
14219
14220 @end deftypevr
14221
14222 @deftypevr {@code{tlp-configuration} parameter} string pcie-aspm-on-bat
14223 Same as @code{pcie-aspm-ac} but on BAT mode.
14224
14225 Defaults to @samp{"powersave"}.
14226
14227 @end deftypevr
14228
14229 @deftypevr {@code{tlp-configuration} parameter} string radeon-power-profile-on-ac
14230 Radeon graphics clock speed level. Alternatives are low, mid, high,
14231 auto, default.
14232
14233 Defaults to @samp{"high"}.
14234
14235 @end deftypevr
14236
14237 @deftypevr {@code{tlp-configuration} parameter} string radeon-power-profile-on-bat
14238 Same as @code{radeon-power-ac} but on BAT mode.
14239
14240 Defaults to @samp{"low"}.
14241
14242 @end deftypevr
14243
14244 @deftypevr {@code{tlp-configuration} parameter} string radeon-dpm-state-on-ac
14245 Radeon dynamic power management method (DPM). Alternatives are battery,
14246 performance.
14247
14248 Defaults to @samp{"performance"}.
14249
14250 @end deftypevr
14251
14252 @deftypevr {@code{tlp-configuration} parameter} string radeon-dpm-state-on-bat
14253 Same as @code{radeon-dpm-state-ac} but on BAT mode.
14254
14255 Defaults to @samp{"battery"}.
14256
14257 @end deftypevr
14258
14259 @deftypevr {@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-ac
14260 Radeon DPM performance level. Alternatives are auto, low, high.
14261
14262 Defaults to @samp{"auto"}.
14263
14264 @end deftypevr
14265
14266 @deftypevr {@code{tlp-configuration} parameter} string radeon-dpm-perf-level-on-bat
14267 Same as @code{radeon-dpm-perf-ac} but on BAT mode.
14268
14269 Defaults to @samp{"auto"}.
14270
14271 @end deftypevr
14272
14273 @deftypevr {@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-ac?
14274 Wifi power saving mode.
14275
14276 Defaults to @samp{#f}.
14277
14278 @end deftypevr
14279
14280 @deftypevr {@code{tlp-configuration} parameter} on-off-boolean wifi-pwr-on-bat?
14281 Same as @code{wifi-power-ac?} but on BAT mode.
14282
14283 Defaults to @samp{#t}.
14284
14285 @end deftypevr
14286
14287 @deftypevr {@code{tlp-configuration} parameter} y-n-boolean wol-disable?
14288 Disable wake on LAN.
14289
14290 Defaults to @samp{#t}.
14291
14292 @end deftypevr
14293
14294 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-ac
14295 Timeout duration in seconds before activating audio power saving on
14296 Intel HDA and AC97 devices. A value of 0 disables power saving.
14297
14298 Defaults to @samp{0}.
14299
14300 @end deftypevr
14301
14302 @deftypevr {@code{tlp-configuration} parameter} non-negative-integer sound-power-save-on-bat
14303 Same as @code{sound-powersave-ac} but on BAT mode.
14304
14305 Defaults to @samp{1}.
14306
14307 @end deftypevr
14308
14309 @deftypevr {@code{tlp-configuration} parameter} y-n-boolean sound-power-save-controller?
14310 Disable controller in powersaving mode on Intel HDA devices.
14311
14312 Defaults to @samp{#t}.
14313
14314 @end deftypevr
14315
14316 @deftypevr {@code{tlp-configuration} parameter} boolean bay-poweroff-on-bat?
14317 Enable optical drive in UltraBay/MediaBay on BAT mode. Drive can be
14318 powered on again by releasing (and reinserting) the eject lever or by
14319 pressing the disc eject button on newer models.
14320
14321 Defaults to @samp{#f}.
14322
14323 @end deftypevr
14324
14325 @deftypevr {@code{tlp-configuration} parameter} string bay-device
14326 Name of the optical drive device to power off.
14327
14328 Defaults to @samp{"sr0"}.
14329
14330 @end deftypevr
14331
14332 @deftypevr {@code{tlp-configuration} parameter} string runtime-pm-on-ac
14333 Runtime Power Management for PCI(e) bus devices. Alternatives are on
14334 and auto.
14335
14336 Defaults to @samp{"on"}.
14337
14338 @end deftypevr
14339
14340 @deftypevr {@code{tlp-configuration} parameter} string runtime-pm-on-bat
14341 Same as @code{runtime-pm-ac} but on BAT mode.
14342
14343 Defaults to @samp{"auto"}.
14344
14345 @end deftypevr
14346
14347 @deftypevr {@code{tlp-configuration} parameter} boolean runtime-pm-all?
14348 Runtime Power Management for all PCI(e) bus devices, except blacklisted
14349 ones.
14350
14351 Defaults to @samp{#t}.
14352
14353 @end deftypevr
14354
14355 @deftypevr {@code{tlp-configuration} parameter} maybe-space-separated-string-list runtime-pm-blacklist
14356 Exclude specified PCI(e) device addresses from Runtime Power Management.
14357
14358 Defaults to @samp{disabled}.
14359
14360 @end deftypevr
14361
14362 @deftypevr {@code{tlp-configuration} parameter} space-separated-string-list runtime-pm-driver-blacklist
14363 Exclude PCI(e) devices assigned to the specified drivers from Runtime
14364 Power Management.
14365
14366 @end deftypevr
14367
14368 @deftypevr {@code{tlp-configuration} parameter} boolean usb-autosuspend?
14369 Enable USB autosuspend feature.
14370
14371 Defaults to @samp{#t}.
14372
14373 @end deftypevr
14374
14375 @deftypevr {@code{tlp-configuration} parameter} maybe-string usb-blacklist
14376 Exclude specified devices from USB autosuspend.
14377
14378 Defaults to @samp{disabled}.
14379
14380 @end deftypevr
14381
14382 @deftypevr {@code{tlp-configuration} parameter} boolean usb-blacklist-wwan?
14383 Exclude WWAN devices from USB autosuspend.
14384
14385 Defaults to @samp{#t}.
14386
14387 @end deftypevr
14388
14389 @deftypevr {@code{tlp-configuration} parameter} maybe-string usb-whitelist
14390 Include specified devices into USB autosuspend, even if they are already
14391 excluded by the driver or via @code{usb-blacklist-wwan?}.
14392
14393 Defaults to @samp{disabled}.
14394
14395 @end deftypevr
14396
14397 @deftypevr {@code{tlp-configuration} parameter} maybe-boolean usb-autosuspend-disable-on-shutdown?
14398 Enable USB autosuspend before shutdown.
14399
14400 Defaults to @samp{disabled}.
14401
14402 @end deftypevr
14403
14404 @deftypevr {@code{tlp-configuration} parameter} boolean restore-device-state-on-startup?
14405 Restore radio device state (bluetooth, wifi, wwan) from previous
14406 shutdown on system startup.
14407
14408 Defaults to @samp{#f}.
14409
14410 @end deftypevr
14411
14412 @node Miscellaneous Services
14413 @subsubsection Miscellaneous Services
14414
14415
14416 @cindex lirc
14417 @subsubheading Lirc Service
14418
14419 The @code{(gnu services lirc)} module provides the following service.
14420
14421 @deffn {Scheme Procedure} lirc-service [#:lirc lirc] @
14422 [#:device #f] [#:driver #f] [#:config-file #f] @
14423 [#:extra-options '()]
14424 Return a service that runs @url{http://www.lirc.org,LIRC}, a daemon that
14425 decodes infrared signals from remote controls.
14426
14427 Optionally, @var{device}, @var{driver} and @var{config-file}
14428 (configuration file name) may be specified. See @command{lircd} manual
14429 for details.
14430
14431 Finally, @var{extra-options} is a list of additional command-line options
14432 passed to @command{lircd}.
14433 @end deffn
14434
14435 @cindex spice
14436 @subsubheading Spice Service
14437
14438 The @code{(gnu services spice)} module provides the following service.
14439
14440 @deffn {Scheme Procedure} spice-vdagent-service [#:spice-vdagent]
14441 Returns a service that runs @url{http://www.spice-space.org,VDAGENT}, a daemon
14442 that enables sharing the clipboard with a vm and setting the guest display
14443 resolution when the graphical console window resizes.
14444 @end deffn
14445
14446 @subsubsection Dictionary Services
14447 @cindex dictionary
14448 The @code{(gnu services dict)} module provides the following service:
14449
14450 @deffn {Scheme Procedure} dicod-service [#:config (dicod-configuration)]
14451 Return a service that runs the @command{dicod} daemon, an implementation
14452 of DICT server (@pxref{Dicod,,, dico, GNU Dico Manual}).
14453
14454 The optional @var{config} argument specifies the configuration for
14455 @command{dicod}, which should be a @code{<dicod-configuration>} object, by
14456 default it serves the GNU Collaborative International Dictonary of English.
14457
14458 You can add @command{open localhost} to your @file{~/.dico} file to make
14459 @code{localhost} the default server for @command{dico} client
14460 (@pxref{Initialization File,,, dico, GNU Dico Manual}).
14461 @end deffn
14462
14463 @deftp {Data Type} dicod-configuration
14464 Data type representing the configuration of dicod.
14465
14466 @table @asis
14467 @item @code{dico} (default: @var{dico})
14468 Package object of the GNU Dico dictionary server.
14469
14470 @item @code{interfaces} (default: @var{'("localhost")})
14471 This is the list of IP addresses and ports and possibly socket file
14472 names to listen to (@pxref{Server Settings, @code{listen} directive,,
14473 dico, GNU Dico Manual}).
14474
14475 @item @code{handlers} (default: @var{'()})
14476 List of @code{<dicod-handler>} objects denoting handlers (module instances).
14477
14478 @item @code{databases} (default: @var{(list %dicod-database:gcide)})
14479 List of @code{<dicod-database>} objects denoting dictionaries to be served.
14480 @end table
14481 @end deftp
14482
14483 @deftp {Data Type} dicod-handler
14484 Data type representing a dictionary handler (module instance).
14485
14486 @table @asis
14487 @item @code{name}
14488 Name of the handler (module instance).
14489
14490 @item @code{module} (default: @var{#f})
14491 Name of the dicod module of the handler (instance). If it is @code{#f},
14492 the module has the same name as the handler.
14493 (@pxref{Modules,,, dico, GNU Dico Manual}).
14494
14495 @item @code{options}
14496 List of strings or gexps representing the arguments for the module handler
14497 @end table
14498 @end deftp
14499
14500 @deftp {Data Type} dicod-database
14501 Data type representing a dictionary database.
14502
14503 @table @asis
14504 @item @code{name}
14505 Name of the database, will be used in DICT commands.
14506
14507 @item @code{handler}
14508 Name of the dicod handler (module instance) used by this database
14509 (@pxref{Handlers,,, dico, GNU Dico Manual}).
14510
14511 @item @code{complex?} (default: @var{#f})
14512 Whether the database configuration complex. The complex configuration
14513 will need a corresponding @code{<dicod-handler>} object, otherwise not.
14514
14515 @item @code{options}
14516 List of strings or gexps representing the arguments for the database
14517 (@pxref{Databases,,, dico, GNU Dico Manual}).
14518 @end table
14519 @end deftp
14520
14521 @defvr {Scheme Variable} %dicod-database:gcide
14522 A @code{<dicod-database>} object serving the GNU Collaborative International
14523 Dictionary of English using the @code{gcide} package.
14524 @end defvr
14525
14526 The following is an example @code{dicod-service} configuration.
14527
14528 @example
14529 (dicod-service #:config
14530 (dicod-configuration
14531 (handlers (list (dicod-handler
14532 (name "wordnet")
14533 (module "dictorg")
14534 (options
14535 (list #~(string-append "dbdir=" #$wordnet))))))
14536 (databases (list (dicod-database
14537 (name "wordnet")
14538 (complex? #t)
14539 (handler "wordnet")
14540 (options '("database=wn")))
14541 %dicod-database:gcide))))
14542 @end example
14543
14544 @subsubsection Version Control
14545
14546 The @code{(gnu services version-control)} module provides the following services:
14547
14548 @subsubheading Git daemon service
14549
14550 @deffn {Scheme Procedure} git-daemon-service [#:config (git-daemon-configuration)]
14551
14552 Return a service that runs @command{git daemon}, a simple TCP server to
14553 expose repositories over the Git protocol for anonymous access.
14554
14555 The optional @var{config} argument should be a
14556 @code{<git-daemon-configuration>} object, by default it allows read-only
14557 access to exported@footnote{By creating the magic file
14558 "git-daemon-export-ok" in the repository directory.} repositories under
14559 @file{/srv/git}.
14560
14561 @end deffn
14562
14563 @deftp {Data Type} git-daemon-configuration
14564 Data type representing the configuration for @code{git-daemon-service}.
14565
14566 @table @asis
14567 @item @code{package} (default: @var{git})
14568 Package object of the Git distributed version control system.
14569
14570 @item @code{export-all?} (default: @var{#f})
14571 Whether to allow access for all Git repositories, even if they do not
14572 have the @file{git-daemon-export-ok} file.
14573
14574 @item @code{base-path} (default: @file{/srv/git})
14575 Whether to remap all the path requests as relative to the given path.
14576 If you run git daemon with @var{(base-path "/srv/git")} on example.com,
14577 then if you later try to pull @code{git://example.com/hello.git}, git
14578 daemon will interpret the path as @code{/srv/git/hello.git}.
14579
14580 @item @code{user-path} (default: @var{#f})
14581 Whether to allow @code{~user} notation to be used in requests. When
14582 specified with empty string, requests to @code{git://host/~alice/foo} is
14583 taken as a request to access @code{foo} repository in the home directory
14584 of user @code{alice}. If @var{(user-path "path")} is specified, the
14585 same request is taken as a request to access @code{path/foo} repository
14586 in the home directory of user @code{alice}.
14587
14588 @item @code{listen} (default: @var{'()})
14589 Whether to listen on specific IP addresses or hostnames, defaults to
14590 all.
14591
14592 @item @code{port} (default: @var{#f})
14593 Whether to listen on an alternative port, which defaults to 9418.
14594
14595 @item @code{whitelist} (default: @var{'()})
14596 If not empty, only allow access to this list of directories.
14597
14598 @item @code{extra-options} (default: @var{'()})
14599 Extra options will be passed to @code{git daemon}, please run
14600 @command{man git-daemon} for more information.
14601
14602 @end table
14603 @end deftp
14604
14605 @node Setuid Programs
14606 @subsection Setuid Programs
14607
14608 @cindex setuid programs
14609 Some programs need to run with ``root'' privileges, even when they are
14610 launched by unprivileged users. A notorious example is the
14611 @command{passwd} program, which users can run to change their
14612 password, and which needs to access the @file{/etc/passwd} and
14613 @file{/etc/shadow} files---something normally restricted to root, for
14614 obvious security reasons. To address that, these executables are
14615 @dfn{setuid-root}, meaning that they always run with root privileges
14616 (@pxref{How Change Persona,,, libc, The GNU C Library Reference Manual},
14617 for more info about the setuid mechanism.)
14618
14619 The store itself @emph{cannot} contain setuid programs: that would be a
14620 security issue since any user on the system can write derivations that
14621 populate the store (@pxref{The Store}). Thus, a different mechanism is
14622 used: instead of changing the setuid bit directly on files that are in
14623 the store, we let the system administrator @emph{declare} which programs
14624 should be setuid root.
14625
14626 The @code{setuid-programs} field of an @code{operating-system}
14627 declaration contains a list of G-expressions denoting the names of
14628 programs to be setuid-root (@pxref{Using the Configuration System}).
14629 For instance, the @command{passwd} program, which is part of the Shadow
14630 package, can be designated by this G-expression (@pxref{G-Expressions}):
14631
14632 @example
14633 #~(string-append #$shadow "/bin/passwd")
14634 @end example
14635
14636 A default set of setuid programs is defined by the
14637 @code{%setuid-programs} variable of the @code{(gnu system)} module.
14638
14639 @defvr {Scheme Variable} %setuid-programs
14640 A list of G-expressions denoting common programs that are setuid-root.
14641
14642 The list includes commands such as @command{passwd}, @command{ping},
14643 @command{su}, and @command{sudo}.
14644 @end defvr
14645
14646 Under the hood, the actual setuid programs are created in the
14647 @file{/run/setuid-programs} directory at system activation time. The
14648 files in this directory refer to the ``real'' binaries, which are in the
14649 store.
14650
14651 @node X.509 Certificates
14652 @subsection X.509 Certificates
14653
14654 @cindex HTTPS, certificates
14655 @cindex X.509 certificates
14656 @cindex TLS
14657 Web servers available over HTTPS (that is, HTTP over the transport-layer
14658 security mechanism, TLS) send client programs an @dfn{X.509 certificate}
14659 that the client can then use to @emph{authenticate} the server. To do
14660 that, clients verify that the server's certificate is signed by a
14661 so-called @dfn{certificate authority} (CA). But to verify the CA's
14662 signature, clients must have first acquired the CA's certificate.
14663
14664 Web browsers such as GNU@tie{}IceCat include their own set of CA
14665 certificates, such that they are able to verify CA signatures
14666 out-of-the-box.
14667
14668 However, most other programs that can talk HTTPS---@command{wget},
14669 @command{git}, @command{w3m}, etc.---need to be told where CA
14670 certificates can be found.
14671
14672 @cindex @code{nss-certs}
14673 In GuixSD, this is done by adding a package that provides certificates
14674 to the @code{packages} field of the @code{operating-system} declaration
14675 (@pxref{operating-system Reference}). GuixSD includes one such package,
14676 @code{nss-certs}, which is a set of CA certificates provided as part of
14677 Mozilla's Network Security Services.
14678
14679 Note that it is @emph{not} part of @var{%base-packages}, so you need to
14680 explicitly add it. The @file{/etc/ssl/certs} directory, which is where
14681 most applications and libraries look for certificates by default, points
14682 to the certificates installed globally.
14683
14684 Unprivileged users, including users of Guix on a foreign distro,
14685 can also install their own certificate package in
14686 their profile. A number of environment variables need to be defined so
14687 that applications and libraries know where to find them. Namely, the
14688 OpenSSL library honors the @code{SSL_CERT_DIR} and @code{SSL_CERT_FILE}
14689 variables. Some applications add their own environment variables; for
14690 instance, the Git version control system honors the certificate bundle
14691 pointed to by the @code{GIT_SSL_CAINFO} environment variable. Thus, you
14692 would typically run something like:
14693
14694 @example
14695 $ guix package -i nss-certs
14696 $ export SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs"
14697 $ export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt"
14698 $ export GIT_SSL_CAINFO="$SSL_CERT_FILE"
14699 @end example
14700
14701 @node Name Service Switch
14702 @subsection Name Service Switch
14703
14704 @cindex name service switch
14705 @cindex NSS
14706 The @code{(gnu system nss)} module provides bindings to the
14707 configuration file of the libc @dfn{name service switch} or @dfn{NSS}
14708 (@pxref{NSS Configuration File,,, libc, The GNU C Library Reference
14709 Manual}). In a nutshell, the NSS is a mechanism that allows libc to be
14710 extended with new ``name'' lookup methods for system databases, which
14711 includes host names, service names, user accounts, and more (@pxref{Name
14712 Service Switch, System Databases and Name Service Switch,, libc, The GNU
14713 C Library Reference Manual}).
14714
14715 The NSS configuration specifies, for each system database, which lookup
14716 method is to be used, and how the various methods are chained
14717 together---for instance, under which circumstances NSS should try the
14718 next method in the list. The NSS configuration is given in the
14719 @code{name-service-switch} field of @code{operating-system} declarations
14720 (@pxref{operating-system Reference, @code{name-service-switch}}).
14721
14722 @cindex nss-mdns
14723 @cindex .local, host name lookup
14724 As an example, the declaration below configures the NSS to use the
14725 @uref{http://0pointer.de/lennart/projects/nss-mdns/, @code{nss-mdns}
14726 back-end}, which supports host name lookups over multicast DNS (mDNS)
14727 for host names ending in @code{.local}:
14728
14729 @example
14730 (name-service-switch
14731 (hosts (list %files ;first, check /etc/hosts
14732
14733 ;; If the above did not succeed, try
14734 ;; with 'mdns_minimal'.
14735 (name-service
14736 (name "mdns_minimal")
14737
14738 ;; 'mdns_minimal' is authoritative for
14739 ;; '.local'. When it returns "not found",
14740 ;; no need to try the next methods.
14741 (reaction (lookup-specification
14742 (not-found => return))))
14743
14744 ;; Then fall back to DNS.
14745 (name-service
14746 (name "dns"))
14747
14748 ;; Finally, try with the "full" 'mdns'.
14749 (name-service
14750 (name "mdns")))))
14751 @end example
14752
14753 Do not worry: the @code{%mdns-host-lookup-nss} variable (see below)
14754 contains this configuration, so you will not have to type it if all you
14755 want is to have @code{.local} host lookup working.
14756
14757 Note that, in this case, in addition to setting the
14758 @code{name-service-switch} of the @code{operating-system} declaration,
14759 you also need to use @code{avahi-service} (@pxref{Networking Services,
14760 @code{avahi-service}}), or @var{%desktop-services}, which includes it
14761 (@pxref{Desktop Services}). Doing this makes @code{nss-mdns} accessible
14762 to the name service cache daemon (@pxref{Base Services,
14763 @code{nscd-service}}).
14764
14765 For convenience, the following variables provide typical NSS
14766 configurations.
14767
14768 @defvr {Scheme Variable} %default-nss
14769 This is the default name service switch configuration, a
14770 @code{name-service-switch} object.
14771 @end defvr
14772
14773 @defvr {Scheme Variable} %mdns-host-lookup-nss
14774 This is the name service switch configuration with support for host name
14775 lookup over multicast DNS (mDNS) for host names ending in @code{.local}.
14776 @end defvr
14777
14778 The reference for name service switch configuration is given below. It
14779 is a direct mapping of the configuration file format of the C library , so
14780 please refer to the C library manual for more information (@pxref{NSS
14781 Configuration File,,, libc, The GNU C Library Reference Manual}).
14782 Compared to the configuration file format of libc NSS, it has the advantage
14783 not only of adding this warm parenthetic feel that we like, but also
14784 static checks: you will know about syntax errors and typos as soon as you
14785 run @command{guix system}.
14786
14787 @deftp {Data Type} name-service-switch
14788
14789 This is the data type representation the configuration of libc's name
14790 service switch (NSS). Each field below represents one of the supported
14791 system databases.
14792
14793 @table @code
14794 @item aliases
14795 @itemx ethers
14796 @itemx group
14797 @itemx gshadow
14798 @itemx hosts
14799 @itemx initgroups
14800 @itemx netgroup
14801 @itemx networks
14802 @itemx password
14803 @itemx public-key
14804 @itemx rpc
14805 @itemx services
14806 @itemx shadow
14807 The system databases handled by the NSS. Each of these fields must be a
14808 list of @code{<name-service>} objects (see below).
14809 @end table
14810 @end deftp
14811
14812 @deftp {Data Type} name-service
14813
14814 This is the data type representing an actual name service and the
14815 associated lookup action.
14816
14817 @table @code
14818 @item name
14819 A string denoting the name service (@pxref{Services in the NSS
14820 configuration,,, libc, The GNU C Library Reference Manual}).
14821
14822 Note that name services listed here must be visible to nscd. This is
14823 achieved by passing the @code{#:name-services} argument to
14824 @code{nscd-service} the list of packages providing the needed name
14825 services (@pxref{Base Services, @code{nscd-service}}).
14826
14827 @item reaction
14828 An action specified using the @code{lookup-specification} macro
14829 (@pxref{Actions in the NSS configuration,,, libc, The GNU C Library
14830 Reference Manual}). For example:
14831
14832 @example
14833 (lookup-specification (unavailable => continue)
14834 (success => return))
14835 @end example
14836 @end table
14837 @end deftp
14838
14839 @node Initial RAM Disk
14840 @subsection Initial RAM Disk
14841
14842 @cindex initrd
14843 @cindex initial RAM disk
14844 For bootstrapping purposes, the Linux-Libre kernel is passed an
14845 @dfn{initial RAM disk}, or @dfn{initrd}. An initrd contains a temporary
14846 root file system as well as an initialization script. The latter is
14847 responsible for mounting the real root file system, and for loading any
14848 kernel modules that may be needed to achieve that.
14849
14850 The @code{initrd} field of an @code{operating-system} declaration allows
14851 you to specify which initrd you would like to use. The @code{(gnu
14852 system linux-initrd)} module provides three ways to build an initrd: the
14853 high-level @code{base-initrd} procedure and the low-level
14854 @code{raw-initrd} and @code{expression->initrd} procedures.
14855
14856 The @code{base-initrd} procedure is intended to cover most common uses.
14857 For example, if you want to add a bunch of kernel modules to be loaded
14858 at boot time, you can define the @code{initrd} field of the operating
14859 system declaration like this:
14860
14861 @example
14862 (initrd (lambda (file-systems . rest)
14863 ;; Create a standard initrd that has modules "foo.ko"
14864 ;; and "bar.ko", as well as their dependencies, in
14865 ;; addition to the modules available by default.
14866 (apply base-initrd file-systems
14867 #:extra-modules '("foo" "bar")
14868 rest)))
14869 @end example
14870
14871 The @code{base-initrd} procedure also handles common use cases that
14872 involves using the system as a QEMU guest, or as a ``live'' system with
14873 volatile root file system.
14874
14875 The @code{base-initrd} procedure is built from @code{raw-initrd} procedure.
14876 Unlike @code{base-initrd}, @code{raw-initrd} doesn't do anything high-level,
14877 such as trying to guess which kernel modules and packages should be included
14878 to the initrd. An example use of @code{raw-initrd} is when a user has
14879 a custom Linux kernel configuration and default kernel modules included by
14880 @code{base-initrd} are not available.
14881
14882 The initial RAM disk produced by @code{base-initrd} or @code{raw-initrd}
14883 honors several options passed on the Linux kernel command line
14884 (that is, arguments passed @i{via} the @code{linux} command of GRUB, or the
14885 @code{-append} option of QEMU), notably:
14886
14887 @table @code
14888 @item --load=@var{boot}
14889 Tell the initial RAM disk to load @var{boot}, a file containing a Scheme
14890 program, once it has mounted the root file system.
14891
14892 GuixSD uses this option to yield control to a boot program that runs the
14893 service activation programs and then spawns the GNU@tie{}Shepherd, the
14894 initialization system.
14895
14896 @item --root=@var{root}
14897 Mount @var{root} as the root file system. @var{root} can be a
14898 device name like @code{/dev/sda1}, a partition label, or a partition
14899 UUID.
14900
14901 @item --system=@var{system}
14902 Have @file{/run/booted-system} and @file{/run/current-system} point to
14903 @var{system}.
14904
14905 @item modprobe.blacklist=@var{modules}@dots{}
14906 @cindex module, black-listing
14907 @cindex black list, of kernel modules
14908 Instruct the initial RAM disk as well as the @command{modprobe} command
14909 (from the kmod package) to refuse to load @var{modules}. @var{modules}
14910 must be a comma-separated list of module names---e.g.,
14911 @code{usbkbd,9pnet}.
14912
14913 @item --repl
14914 Start a read-eval-print loop (REPL) from the initial RAM disk before it
14915 tries to load kernel modules and to mount the root file system. Our
14916 marketing team calls it @dfn{boot-to-Guile}. The Schemer in you will
14917 love it. @xref{Using Guile Interactively,,, guile, GNU Guile Reference
14918 Manual}, for more information on Guile's REPL.
14919
14920 @end table
14921
14922 Now that you know all the features that initial RAM disks produced by
14923 @code{base-initrd} and @code{raw-initrd} provide,
14924 here is how to use it and customize it further.
14925
14926 @cindex initrd
14927 @cindex initial RAM disk
14928 @deffn {Monadic Procedure} raw-initrd @var{file-systems} @
14929 [#:linux-modules '()] [#:mapped-devices '()] @
14930 [#:helper-packages '()] [#:qemu-networking? #f] [#:volatile-root? #f]
14931 Return a monadic derivation that builds a raw initrd. @var{file-systems} is
14932 a list of file systems to be mounted by the initrd, possibly in addition to
14933 the root file system specified on the kernel command line via @code{--root}.
14934 @var{linux-modules} is a list of kernel modules to be loaded at boot time.
14935 @var{mapped-devices} is a list of device mappings to realize before
14936 @var{file-systems} are mounted (@pxref{Mapped Devices}).
14937 @var{helper-packages} is a list of packages to be copied in the initrd. It may
14938 include @code{e2fsck/static} or other packages needed by the initrd to check
14939 root partition.
14940
14941 When @var{qemu-networking?} is true, set up networking with the standard QEMU
14942 parameters. When @var{virtio?} is true, load additional modules so that the
14943 initrd can be used as a QEMU guest with para-virtualized I/O drivers.
14944
14945 When @var{volatile-root?} is true, the root file system is writable but any changes
14946 to it are lost.
14947 @end deffn
14948
14949 @deffn {Monadic Procedure} base-initrd @var{file-systems} @
14950 [#:mapped-devices '()] [#:qemu-networking? #f] [#:volatile-root? #f]@
14951 [#:virtio? #t] [#:extra-modules '()]
14952 Return a monadic derivation that builds a generic initrd. @var{file-systems} is
14953 a list of file systems to be mounted by the initrd like for @code{raw-initrd}.
14954 @var{mapped-devices}, @var{qemu-networking?} and @var{volatile-root?}
14955 also behaves as in @code{raw-initrd}.
14956
14957 When @var{virtio?} is true, load additional modules so that the
14958 initrd can be used as a QEMU guest with para-virtualized I/O drivers.
14959
14960 The initrd is automatically populated with all the kernel modules necessary
14961 for @var{file-systems} and for the given options. However, additional kernel
14962 modules can be listed in @var{extra-modules}. They will be added to the initrd, and
14963 loaded at boot time in the order in which they appear.
14964 @end deffn
14965
14966 Needless to say, the initrds we produce and use embed a
14967 statically-linked Guile, and the initialization program is a Guile
14968 program. That gives a lot of flexibility. The
14969 @code{expression->initrd} procedure builds such an initrd, given the
14970 program to run in that initrd.
14971
14972 @deffn {Monadic Procedure} expression->initrd @var{exp} @
14973 [#:guile %guile-static-stripped] [#:name "guile-initrd"]
14974 Return a derivation that builds a Linux initrd (a gzipped cpio archive)
14975 containing @var{guile} and that evaluates @var{exp}, a G-expression,
14976 upon booting. All the derivations referenced by @var{exp} are
14977 automatically copied to the initrd.
14978 @end deffn
14979
14980 @node GRUB Configuration
14981 @subsection GRUB Configuration
14982
14983 @cindex GRUB
14984 @cindex boot loader
14985
14986 The operating system uses GNU@tie{}GRUB as its boot loader
14987 (@pxref{Overview, overview of GRUB,, grub, GNU GRUB Manual}). It is
14988 configured using a @code{grub-configuration} declaration. This data type
14989 is exported by the @code{(gnu system grub)} module and described below.
14990
14991 @deftp {Data Type} grub-configuration
14992 The type of a GRUB configuration declaration.
14993
14994 @table @asis
14995
14996 @item @code{device}
14997 This is a string denoting the boot device. It must be a device name
14998 understood by the @command{grub-install} command, such as
14999 @code{/dev/sda} or @code{(hd0)} (@pxref{Invoking grub-install,,, grub,
15000 GNU GRUB Manual}).
15001
15002 @item @code{menu-entries} (default: @code{()})
15003 A possibly empty list of @code{menu-entry} objects (see below), denoting
15004 entries to appear in the GRUB boot menu, in addition to the current
15005 system entry and the entry pointing to previous system generations.
15006
15007 @item @code{default-entry} (default: @code{0})
15008 The index of the default boot menu entry. Index 0 is for the entry of the
15009 current system.
15010
15011 @item @code{timeout} (default: @code{5})
15012 The number of seconds to wait for keyboard input before booting. Set to
15013 0 to boot immediately, and to -1 to wait indefinitely.
15014
15015 @item @code{theme} (default: @var{%default-theme})
15016 The @code{grub-theme} object describing the theme to use.
15017
15018 @item @code{grub} (default: @code{grub})
15019 The GRUB package to use.
15020 @end table
15021
15022 @end deftp
15023
15024 @cindex dual boot
15025 @cindex boot menu
15026 Should you want to list additional boot menu entries @i{via} the
15027 @code{menu-entries} field above, you will need to create them with the
15028 @code{menu-entry} form. For example, imagine you want to be able to
15029 boot another distro (hard to imagine!), you can define a menu entry
15030 along these lines:
15031
15032 @example
15033 (menu-entry
15034 (label "The Other Distro")
15035 (linux "/boot/old/vmlinux-2.6.32")
15036 (linux-arguments '("root=/dev/sda2"))
15037 (initrd "/boot/old/initrd"))
15038 @end example
15039
15040 Details below.
15041
15042 @deftp {Data Type} menu-entry
15043 The type of an entry in the GRUB boot menu.
15044
15045 @table @asis
15046
15047 @item @code{label}
15048 The label to show in the menu---e.g., @code{"GNU"}.
15049
15050 @item @code{linux}
15051 The Linux kernel image to boot, for example:
15052
15053 @example
15054 (file-append linux-libre "/bzImage")
15055 @end example
15056
15057 It is also possible to specify a device explicitly in the file path
15058 using GRUB's device naming convention (@pxref{Naming convention,,, grub,
15059 GNU GRUB manual}), for example:
15060
15061 @example
15062 "(hd0,msdos1)/boot/vmlinuz"
15063 @end example
15064
15065 If the device is specified explicitly as above, then the @code{device}
15066 field is ignored entirely.
15067
15068 @item @code{linux-arguments} (default: @code{()})
15069 The list of extra Linux kernel command-line arguments---e.g.,
15070 @code{("console=ttyS0")}.
15071
15072 @item @code{initrd}
15073 A G-Expression or string denoting the file name of the initial RAM disk
15074 to use (@pxref{G-Expressions}).
15075
15076 @item @code{device} (default: @code{#f})
15077 The device where the kernel and initrd are to be found---i.e., the GRUB
15078 @dfn{root} for this menu entry (@pxref{root,,, grub, GNU GRUB manual}).
15079
15080 This may be a file system label (a string), a file system UUID (a
15081 bytevector, @pxref{File Systems}), or @code{#f}, in which case GRUB will
15082 search the device containing the file specified by the @code{linux}
15083 field (@pxref{search,,, grub, GNU GRUB manual}). It must @emph{not} be
15084 an OS device name such as @file{/dev/sda1}.
15085
15086 @item @code{device-mount-point} (default: @code{"/"})
15087 The mount point of the above device on the system. You probably do not
15088 need to change the default value. GuixSD uses it to strip the prefix of
15089 store file names for systems where @file{/gnu} or @file{/gnu/store} is
15090 on a separate partition.
15091
15092 @end table
15093 @end deftp
15094
15095 @c FIXME: Write documentation once it's stable.
15096 Themes are created using the @code{grub-theme} form, which is not
15097 documented yet.
15098
15099 @defvr {Scheme Variable} %default-theme
15100 This is the default GRUB theme used by the operating system, with a
15101 fancy background image displaying the GNU and Guix logos.
15102 @end defvr
15103
15104
15105 @node Invoking guix system
15106 @subsection Invoking @code{guix system}
15107
15108 Once you have written an operating system declaration as seen in the
15109 previous section, it can be @dfn{instantiated} using the @command{guix
15110 system} command. The synopsis is:
15111
15112 @example
15113 guix system @var{options}@dots{} @var{action} @var{file}
15114 @end example
15115
15116 @var{file} must be the name of a file containing an
15117 @code{operating-system} declaration. @var{action} specifies how the
15118 operating system is instantiated. Currently the following values are
15119 supported:
15120
15121 @table @code
15122 @item reconfigure
15123 Build the operating system described in @var{file}, activate it, and
15124 switch to it@footnote{This action (and the related actions
15125 @code{switch-generation} and @code{roll-back}) are usable only on
15126 systems already running GuixSD.}.
15127
15128 This effects all the configuration specified in @var{file}: user
15129 accounts, system services, global package list, setuid programs, etc.
15130 The command starts system services specified in @var{file} that are not
15131 currently running; if a service is currently running, it does not
15132 attempt to upgrade it since this would not be possible without stopping it
15133 first.
15134
15135 This command creates a new generation whose number is one greater than
15136 the current generation (as reported by @command{guix system
15137 list-generations}). If that generation already exists, it will be
15138 overwritten. This behavior mirrors that of @command{guix package}
15139 (@pxref{Invoking guix package}).
15140
15141 It also adds a GRUB menu entry for the new OS configuration, and moves
15142 entries for older configurations to a submenu---unless
15143 @option{--no-bootloader} is passed.
15144
15145 @quotation Note
15146 @c The paragraph below refers to the problem discussed at
15147 @c <http://lists.gnu.org/archive/html/guix-devel/2014-08/msg00057.html>.
15148 It is highly recommended to run @command{guix pull} once before you run
15149 @command{guix system reconfigure} for the first time (@pxref{Invoking
15150 guix pull}). Failing to do that you would see an older version of Guix
15151 once @command{reconfigure} has completed.
15152 @end quotation
15153
15154 @item switch-generation
15155 @cindex generations
15156 Switch to an existing system generation. This action atomically
15157 switches the system profile to the specified system generation. It also
15158 rearranges the system's existing GRUB menu entries. It makes the menu
15159 entry for the specified system generation the default, and it moves the
15160 entries for the other generations to a submenu. The next time the
15161 system boots, it will use the specified system generation.
15162
15163 The target generation can be specified explicitly by its generation
15164 number. For example, the following invocation would switch to system
15165 generation 7:
15166
15167 @example
15168 guix system switch-generation 7
15169 @end example
15170
15171 The target generation can also be specified relative to the current
15172 generation with the form @code{+N} or @code{-N}, where @code{+3} means
15173 ``3 generations ahead of the current generation,'' and @code{-1} means
15174 ``1 generation prior to the current generation.'' When specifying a
15175 negative value such as @code{-1}, you must precede it with @code{--} to
15176 prevent it from being parsed as an option. For example:
15177
15178 @example
15179 guix system switch-generation -- -1
15180 @end example
15181
15182 Currently, the effect of invoking this action is @emph{only} to switch
15183 the system profile to an existing generation and rearrange the GRUB menu
15184 entries. To actually start using the target system generation, you must
15185 reboot after running this action. In the future, it will be updated to
15186 do the same things as @command{reconfigure}, like activating and
15187 deactivating services.
15188
15189 This action will fail if the specified generation does not exist.
15190
15191 @item roll-back
15192 @cindex rolling back
15193 Switch to the preceding system generation. The next time the system
15194 boots, it will use the preceding system generation. This is the inverse
15195 of @command{reconfigure}, and it is exactly the same as invoking
15196 @command{switch-generation} with an argument of @code{-1}.
15197
15198 Currently, as with @command{switch-generation}, you must reboot after
15199 running this action to actually start using the preceding system
15200 generation.
15201
15202 @item build
15203 Build the derivation of the operating system, which includes all the
15204 configuration files and programs needed to boot and run the system.
15205 This action does not actually install anything.
15206
15207 @item init
15208 Populate the given directory with all the files necessary to run the
15209 operating system specified in @var{file}. This is useful for first-time
15210 installations of GuixSD. For instance:
15211
15212 @example
15213 guix system init my-os-config.scm /mnt
15214 @end example
15215
15216 copies to @file{/mnt} all the store items required by the configuration
15217 specified in @file{my-os-config.scm}. This includes configuration
15218 files, packages, and so on. It also creates other essential files
15219 needed for the system to operate correctly---e.g., the @file{/etc},
15220 @file{/var}, and @file{/run} directories, and the @file{/bin/sh} file.
15221
15222 This command also installs GRUB on the device specified in
15223 @file{my-os-config}, unless the @option{--no-bootloader} option was passed.
15224
15225 @item vm
15226 @cindex virtual machine
15227 @cindex VM
15228 @anchor{guix system vm}
15229 Build a virtual machine that contains the operating system declared in
15230 @var{file}, and return a script to run that virtual machine (VM).
15231 Arguments given to the script are passed to QEMU.
15232
15233 The VM shares its store with the host system.
15234
15235 Additional file systems can be shared between the host and the VM using
15236 the @code{--share} and @code{--expose} command-line options: the former
15237 specifies a directory to be shared with write access, while the latter
15238 provides read-only access to the shared directory.
15239
15240 The example below creates a VM in which the user's home directory is
15241 accessible read-only, and where the @file{/exchange} directory is a
15242 read-write mapping of @file{$HOME/tmp} on the host:
15243
15244 @example
15245 guix system vm my-config.scm \
15246 --expose=$HOME --share=$HOME/tmp=/exchange
15247 @end example
15248
15249 On GNU/Linux, the default is to boot directly to the kernel; this has
15250 the advantage of requiring only a very tiny root disk image since the
15251 store of the host can then be mounted.
15252
15253 The @code{--full-boot} option forces a complete boot sequence, starting
15254 with the bootloader. This requires more disk space since a root image
15255 containing at least the kernel, initrd, and bootloader data files must
15256 be created. The @code{--image-size} option can be used to specify the
15257 size of the image.
15258
15259 @item vm-image
15260 @itemx disk-image
15261 Return a virtual machine or disk image of the operating system declared
15262 in @var{file} that stands alone. Use the @option{--image-size} option
15263 to specify the size of the image.
15264
15265 When using @code{vm-image}, the returned image is in qcow2 format, which
15266 the QEMU emulator can efficiently use. @xref{Running GuixSD in a VM},
15267 for more information on how to run the image in a virtual machine.
15268
15269 When using @code{disk-image}, a raw disk image is produced; it can be
15270 copied as is to a USB stick, for instance. Assuming @code{/dev/sdc} is
15271 the device corresponding to a USB stick, one can copy the image to it
15272 using the following command:
15273
15274 @example
15275 # dd if=$(guix system disk-image my-os.scm) of=/dev/sdc
15276 @end example
15277
15278 @item container
15279 Return a script to run the operating system declared in @var{file}
15280 within a container. Containers are a set of lightweight isolation
15281 mechanisms provided by the kernel Linux-libre. Containers are
15282 substantially less resource-demanding than full virtual machines since
15283 the kernel, shared objects, and other resources can be shared with the
15284 host system; this also means they provide thinner isolation.
15285
15286 Currently, the script must be run as root in order to support more than
15287 a single user and group. The container shares its store with the host
15288 system.
15289
15290 As with the @code{vm} action (@pxref{guix system vm}), additional file
15291 systems to be shared between the host and container can be specified
15292 using the @option{--share} and @option{--expose} options:
15293
15294 @example
15295 guix system container my-config.scm \
15296 --expose=$HOME --share=$HOME/tmp=/exchange
15297 @end example
15298
15299 @quotation Note
15300 This option requires Linux-libre 3.19 or newer.
15301 @end quotation
15302
15303 @end table
15304
15305 @var{options} can contain any of the common build options (@pxref{Common
15306 Build Options}). In addition, @var{options} can contain one of the
15307 following:
15308
15309 @table @option
15310 @item --system=@var{system}
15311 @itemx -s @var{system}
15312 Attempt to build for @var{system} instead of the host system type.
15313 This works as per @command{guix build} (@pxref{Invoking guix build}).
15314
15315 @item --derivation
15316 @itemx -d
15317 Return the derivation file name of the given operating system without
15318 building anything.
15319
15320 @item --image-size=@var{size}
15321 For the @code{vm-image} and @code{disk-image} actions, create an image
15322 of the given @var{size}. @var{size} may be a number of bytes, or it may
15323 include a unit as a suffix (@pxref{Block size, size specifications,,
15324 coreutils, GNU Coreutils}).
15325
15326 @item --root=@var{file}
15327 @itemx -r @var{file}
15328 Make @var{file} a symlink to the result, and register it as a garbage
15329 collector root.
15330
15331 @item --on-error=@var{strategy}
15332 Apply @var{strategy} when an error occurs when reading @var{file}.
15333 @var{strategy} may be one of the following:
15334
15335 @table @code
15336 @item nothing-special
15337 Report the error concisely and exit. This is the default strategy.
15338
15339 @item backtrace
15340 Likewise, but also display a backtrace.
15341
15342 @item debug
15343 Report the error and enter Guile's debugger. From there, you can run
15344 commands such as @code{,bt} to get a backtrace, @code{,locals} to
15345 display local variable values, and more generally inspect the state of the
15346 program. @xref{Debug Commands,,, guile, GNU Guile Reference Manual}, for
15347 a list of available debugging commands.
15348 @end table
15349 @end table
15350
15351 @quotation Note
15352 All the actions above, except @code{build} and @code{init},
15353 can use KVM support in the Linux-libre kernel. Specifically, if the
15354 machine has hardware virtualization support, the corresponding
15355 KVM kernel module should be loaded, and the @file{/dev/kvm} device node
15356 must exist and be readable and writable by the user and by the
15357 build users of the daemon (@pxref{Build Environment Setup}).
15358 @end quotation
15359
15360 Once you have built, configured, re-configured, and re-re-configured
15361 your GuixSD installation, you may find it useful to list the operating
15362 system generations available on disk---and that you can choose from the
15363 GRUB boot menu:
15364
15365 @table @code
15366
15367 @item list-generations
15368 List a summary of each generation of the operating system available on
15369 disk, in a human-readable way. This is similar to the
15370 @option{--list-generations} option of @command{guix package}
15371 (@pxref{Invoking guix package}).
15372
15373 Optionally, one can specify a pattern, with the same syntax that is used
15374 in @command{guix package --list-generations}, to restrict the list of
15375 generations displayed. For instance, the following command displays
15376 generations that are up to 10 days old:
15377
15378 @example
15379 $ guix system list-generations 10d
15380 @end example
15381
15382 @end table
15383
15384 The @command{guix system} command has even more to offer! The following
15385 sub-commands allow you to visualize how your system services relate to
15386 each other:
15387
15388 @anchor{system-extension-graph}
15389 @table @code
15390
15391 @item extension-graph
15392 Emit in Dot/Graphviz format to standard output the @dfn{service
15393 extension graph} of the operating system defined in @var{file}
15394 (@pxref{Service Composition}, for more information on service
15395 extensions.)
15396
15397 The command:
15398
15399 @example
15400 $ guix system extension-graph @var{file} | dot -Tpdf > services.pdf
15401 @end example
15402
15403 produces a PDF file showing the extension relations among services.
15404
15405 @anchor{system-shepherd-graph}
15406 @item shepherd-graph
15407 Emit in Dot/Graphviz format to standard output the @dfn{dependency
15408 graph} of shepherd services of the operating system defined in
15409 @var{file}. @xref{Shepherd Services}, for more information and for an
15410 example graph.
15411
15412 @end table
15413
15414 @node Running GuixSD in a VM
15415 @subsection Running GuixSD in a Virtual Machine
15416
15417 @cindex virtual machine
15418 One way to run GuixSD in a virtual machine (VM) is to build a GuixSD
15419 virtual machine image using @command{guix system vm-image}
15420 (@pxref{Invoking guix system}). The returned image is in qcow2 format,
15421 which the @uref{http://qemu.org/, QEMU emulator} can efficiently use.
15422
15423 @cindex QEMU
15424 To run the image in QEMU, copy it out of the store (@pxref{The Store})
15425 and give yourself permission to write to the copy. When invoking QEMU,
15426 you must choose a system emulator that is suitable for your hardware
15427 platform. Here is a minimal QEMU invocation that will boot the result
15428 of @command{guix system vm-image} on x86_64 hardware:
15429
15430 @example
15431 $ qemu-system-x86_64 \
15432 -net user -net nic,model=virtio \
15433 -enable-kvm -m 256 /tmp/qemu-image
15434 @end example
15435
15436 Here is what each of these options means:
15437
15438 @table @code
15439 @item qemu-system-x86_64
15440 This specifies the hardware platform to emulate. This should match the
15441 host.
15442
15443 @item -net user
15444 Enable the unprivileged user-mode network stack. The guest OS can
15445 access the host but not vice versa. This is the simplest way to get the
15446 guest OS online.
15447
15448 @item -net nic,model=virtio
15449 You must create a network interface of a given model. If you do not
15450 create a NIC, the boot will fail. Assuming your hardware platform is
15451 x86_64, you can get a list of available NIC models by running
15452 @command{qemu-system-x86_64 -net nic,model=help}.
15453
15454 @item -enable-kvm
15455 If your system has hardware virtualization extensions, enabling the
15456 virtual machine support (KVM) of the Linux kernel will make things run
15457 faster.
15458
15459 @item -m 256
15460 RAM available to the guest OS, in mebibytes. Defaults to 128@tie{}MiB,
15461 which may be insufficient for some operations.
15462
15463 @item /tmp/qemu-image
15464 The file name of the qcow2 image.
15465 @end table
15466
15467 The default @command{run-vm.sh} script that is returned by an invocation of
15468 @command{guix system vm} does not add a @command{-net user} flag by default.
15469 To get network access from within the vm add the @code{(dhcp-client-service)}
15470 to your system definition and start the VM using
15471 @command{`guix system vm config.scm` -net user}. An important caveat of using
15472 @command{-net user} for networking is that @command{ping} will not work, because
15473 it uses the ICMP protocol. You'll have to use a different command to check for
15474 network connectivity, like for example @command{curl}.
15475
15476 @subsubsection Connecting Through SSH
15477
15478 @cindex SSH
15479 @cindex SSH server
15480 To enable SSH inside a VM you need to add a SSH server like @code{(dropbear-service)}
15481 or @code{(lsh-service)} to your VM. The @code{(lsh-service}) doesn't currently
15482 boot unsupervised. It requires you to type some characters to initialize the
15483 randomness generator. In addition you need to forward the SSH port, 22 by
15484 default, to the host. You can do this with
15485
15486 @example
15487 `guix system vm config.scm` -net user,hostfwd=tcp::10022-:22
15488 @end example
15489
15490 To connect to the VM you can run
15491
15492 @example
15493 ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -p 10022
15494 @end example
15495
15496 The @command{-p} tells @command{ssh} the port you want to connect to.
15497 @command{-o UserKnownHostsFile=/dev/null} prevents @command{ssh} from complaining
15498 every time you modify your @command{config.scm} file and the
15499 @command{-o StrictHostKeyChecking=no} prevents you from having to allow a
15500 connection to an unknown host every time you connect.
15501
15502 @subsubsection Using @command{virt-viewer} with Spice
15503
15504 As an alternative to the default @command{qemu} graphical client you can
15505 use the @command{remote-viewer} from the @command{virt-viewer} package. To
15506 connect pass the @command{-spice port=5930,disable-ticketing} flag to
15507 @command{qemu}. See previous section for further information on how to do this.
15508
15509 Spice also allows you to do some nice stuff like share your clipboard with your
15510 VM. To enable that you'll also have to pass the following flags to @command{qemu}:
15511
15512 @example
15513 -device virtio-serial-pci,id=virtio-serial0,max_ports=16,bus=pci.0,addr=0x5
15514 -chardev spicevmc,name=vdagent,id=vdagent
15515 -device virtserialport,nr=1,bus=virtio-serial0.0,chardev=vdagent,
15516 name=com.redhat.spice.0
15517 @end example
15518
15519 You'll also need to add the @pxref{Miscellaneous Services, Spice service}.
15520
15521 @node Defining Services
15522 @subsection Defining Services
15523
15524 The previous sections show the available services and how one can combine
15525 them in an @code{operating-system} declaration. But how do we define
15526 them in the first place? And what is a service anyway?
15527
15528 @menu
15529 * Service Composition:: The model for composing services.
15530 * Service Types and Services:: Types and services.
15531 * Service Reference:: API reference.
15532 * Shepherd Services:: A particular type of service.
15533 @end menu
15534
15535 @node Service Composition
15536 @subsubsection Service Composition
15537
15538 @cindex services
15539 @cindex daemons
15540 Here we define a @dfn{service} as, broadly, something that extends the
15541 functionality of the operating system. Often a service is a process---a
15542 @dfn{daemon}---started when the system boots: a secure shell server, a
15543 Web server, the Guix build daemon, etc. Sometimes a service is a daemon
15544 whose execution can be triggered by another daemon---e.g., an FTP server
15545 started by @command{inetd} or a D-Bus service activated by
15546 @command{dbus-daemon}. Occasionally, a service does not map to a
15547 daemon. For instance, the ``account'' service collects user accounts
15548 and makes sure they exist when the system runs; the ``udev'' service
15549 collects device management rules and makes them available to the eudev
15550 daemon; the @file{/etc} service populates the @file{/etc} directory
15551 of the system.
15552
15553 @cindex service extensions
15554 GuixSD services are connected by @dfn{extensions}. For instance, the
15555 secure shell service @emph{extends} the Shepherd---the GuixSD
15556 initialization system, running as PID@tie{}1---by giving it the command
15557 lines to start and stop the secure shell daemon (@pxref{Networking
15558 Services, @code{lsh-service}}); the UPower service extends the D-Bus
15559 service by passing it its @file{.service} specification, and extends the
15560 udev service by passing it device management rules (@pxref{Desktop
15561 Services, @code{upower-service}}); the Guix daemon service extends the
15562 Shepherd by passing it the command lines to start and stop the daemon,
15563 and extends the account service by passing it a list of required build
15564 user accounts (@pxref{Base Services}).
15565
15566 All in all, services and their ``extends'' relations form a directed
15567 acyclic graph (DAG). If we represent services as boxes and extensions
15568 as arrows, a typical system might provide something like this:
15569
15570 @image{images/service-graph,,5in,Typical service extension graph.}
15571
15572 @cindex system service
15573 At the bottom, we see the @dfn{system service}, which produces the
15574 directory containing everything to run and boot the system, as returned
15575 by the @command{guix system build} command. @xref{Service Reference},
15576 to learn about the other service types shown here.
15577 @xref{system-extension-graph, the @command{guix system extension-graph}
15578 command}, for information on how to generate this representation for a
15579 particular operating system definition.
15580
15581 @cindex service types
15582 Technically, developers can define @dfn{service types} to express these
15583 relations. There can be any number of services of a given type on the
15584 system---for instance, a system running two instances of the GNU secure
15585 shell server (lsh) has two instances of @var{lsh-service-type}, with
15586 different parameters.
15587
15588 The following section describes the programming interface for service
15589 types and services.
15590
15591 @node Service Types and Services
15592 @subsubsection Service Types and Services
15593
15594 A @dfn{service type} is a node in the DAG described above. Let us start
15595 with a simple example, the service type for the Guix build daemon
15596 (@pxref{Invoking guix-daemon}):
15597
15598 @example
15599 (define guix-service-type
15600 (service-type
15601 (name 'guix)
15602 (extensions
15603 (list (service-extension shepherd-root-service-type guix-shepherd-service)
15604 (service-extension account-service-type guix-accounts)
15605 (service-extension activation-service-type guix-activation)))
15606 (default-value (guix-configuration))))
15607 @end example
15608
15609 @noindent
15610 It defines three things:
15611
15612 @enumerate
15613 @item
15614 A name, whose sole purpose is to make inspection and debugging easier.
15615
15616 @item
15617 A list of @dfn{service extensions}, where each extension designates the
15618 target service type and a procedure that, given the parameters of the
15619 service, returns a list of objects to extend the service of that type.
15620
15621 Every service type has at least one service extension. The only
15622 exception is the @dfn{boot service type}, which is the ultimate service.
15623
15624 @item
15625 Optionally, a default value for instances of this type.
15626 @end enumerate
15627
15628 In this example, @var{guix-service-type} extends three services:
15629
15630 @table @var
15631 @item shepherd-root-service-type
15632 The @var{guix-shepherd-service} procedure defines how the Shepherd
15633 service is extended. Namely, it returns a @code{<shepherd-service>}
15634 object that defines how @command{guix-daemon} is started and stopped
15635 (@pxref{Shepherd Services}).
15636
15637 @item account-service-type
15638 This extension for this service is computed by @var{guix-accounts},
15639 which returns a list of @code{user-group} and @code{user-account}
15640 objects representing the build user accounts (@pxref{Invoking
15641 guix-daemon}).
15642
15643 @item activation-service-type
15644 Here @var{guix-activation} is a procedure that returns a gexp, which is
15645 a code snippet to run at ``activation time''---e.g., when the service is
15646 booted.
15647 @end table
15648
15649 A service of this type is instantiated like this:
15650
15651 @example
15652 (service guix-service-type
15653 (guix-configuration
15654 (build-accounts 5)
15655 (use-substitutes? #f)))
15656 @end example
15657
15658 The second argument to the @code{service} form is a value representing
15659 the parameters of this specific service instance.
15660 @xref{guix-configuration-type, @code{guix-configuration}}, for
15661 information about the @code{guix-configuration} data type. When the
15662 value is omitted, the default value specified by
15663 @code{guix-service-type} is used:
15664
15665 @example
15666 (service guix-service-type)
15667 @end example
15668
15669 @var{guix-service-type} is quite simple because it extends other
15670 services but is not extensible itself.
15671
15672 @c @subsubsubsection Extensible Service Types
15673
15674 The service type for an @emph{extensible} service looks like this:
15675
15676 @example
15677 (define udev-service-type
15678 (service-type (name 'udev)
15679 (extensions
15680 (list (service-extension shepherd-root-service-type
15681 udev-shepherd-service)))
15682
15683 (compose concatenate) ;concatenate the list of rules
15684 (extend (lambda (config rules)
15685 (match config
15686 (($ <udev-configuration> udev initial-rules)
15687 (udev-configuration
15688 (udev udev) ;the udev package to use
15689 (rules (append initial-rules rules)))))))))
15690 @end example
15691
15692 This is the service type for the
15693 @uref{https://wiki.gentoo.org/wiki/Project:Eudev, eudev device
15694 management daemon}. Compared to the previous example, in addition to an
15695 extension of @var{shepherd-root-service-type}, we see two new fields:
15696
15697 @table @code
15698 @item compose
15699 This is the procedure to @dfn{compose} the list of extensions to
15700 services of this type.
15701
15702 Services can extend the udev service by passing it lists of rules; we
15703 compose those extensions simply by concatenating them.
15704
15705 @item extend
15706 This procedure defines how the value of the service is @dfn{extended} with
15707 the composition of the extensions.
15708
15709 Udev extensions are composed into a list of rules, but the udev service
15710 value is itself a @code{<udev-configuration>} record. So here, we
15711 extend that record by appending the list of rules it contains to the
15712 list of contributed rules.
15713 @end table
15714
15715 There can be only one instance of an extensible service type such as
15716 @var{udev-service-type}. If there were more, the
15717 @code{service-extension} specifications would be ambiguous.
15718
15719 Still here? The next section provides a reference of the programming
15720 interface for services.
15721
15722 @node Service Reference
15723 @subsubsection Service Reference
15724
15725 We have seen an overview of service types (@pxref{Service Types and
15726 Services}). This section provides a reference on how to manipulate
15727 services and service types. This interface is provided by the
15728 @code{(gnu services)} module.
15729
15730 @deffn {Scheme Procedure} service @var{type} [@var{value}]
15731 Return a new service of @var{type}, a @code{<service-type>} object (see
15732 below.) @var{value} can be any object; it represents the parameters of
15733 this particular service instance.
15734
15735 When @var{value} is omitted, the default value specified by @var{type}
15736 is used; if @var{type} does not specify a default value, an error is
15737 raised.
15738
15739 For instance, this:
15740
15741 @example
15742 (service openssh-service-type)
15743 @end example
15744
15745 @noindent
15746 is equivalent to this:
15747
15748 @example
15749 (service openssh-service-type
15750 (openssh-configuration))
15751 @end example
15752
15753 In both cases the result is an instance of @code{openssh-service-type}
15754 with the default configuration.
15755 @end deffn
15756
15757 @deffn {Scheme Procedure} service? @var{obj}
15758 Return true if @var{obj} is a service.
15759 @end deffn
15760
15761 @deffn {Scheme Procedure} service-kind @var{service}
15762 Return the type of @var{service}---i.e., a @code{<service-type>} object.
15763 @end deffn
15764
15765 @deffn {Scheme Procedure} service-value @var{service}
15766 Return the value associated with @var{service}. It represents its
15767 parameters.
15768 @end deffn
15769
15770 Here is an example of how a service is created and manipulated:
15771
15772 @example
15773 (define s
15774 (service nginx-service-type
15775 (nginx-configuration
15776 (nginx nginx)
15777 (log-directory log-directory)
15778 (run-directory run-directory)
15779 (file config-file))))
15780
15781 (service? s)
15782 @result{} #t
15783
15784 (eq? (service-kind s) nginx-service-type)
15785 @result{} #t
15786 @end example
15787
15788 The @code{modify-services} form provides a handy way to change the
15789 parameters of some of the services of a list such as
15790 @var{%base-services} (@pxref{Base Services, @code{%base-services}}). It
15791 evaluates to a list of services. Of course, you could always use
15792 standard list combinators such as @code{map} and @code{fold} to do that
15793 (@pxref{SRFI-1, List Library,, guile, GNU Guile Reference Manual});
15794 @code{modify-services} simply provides a more concise form for this
15795 common pattern.
15796
15797 @deffn {Scheme Syntax} modify-services @var{services} @
15798 (@var{type} @var{variable} => @var{body}) @dots{}
15799
15800 Modify the services listed in @var{services} according to the given
15801 clauses. Each clause has the form:
15802
15803 @example
15804 (@var{type} @var{variable} => @var{body})
15805 @end example
15806
15807 where @var{type} is a service type---e.g.,
15808 @code{guix-service-type}---and @var{variable} is an identifier that is
15809 bound within the @var{body} to the service parameters---e.g., a
15810 @code{guix-configuration} instance---of the original service of that
15811 @var{type}.
15812
15813 The @var{body} should evaluate to the new service parameters, which will
15814 be used to configure the new service. This new service will replace the
15815 original in the resulting list. Because a service's service parameters
15816 are created using @code{define-record-type*}, you can write a succinct
15817 @var{body} that evaluates to the new service parameters by using the
15818 @code{inherit} feature that @code{define-record-type*} provides.
15819
15820 @xref{Using the Configuration System}, for example usage.
15821
15822 @end deffn
15823
15824 Next comes the programming interface for service types. This is
15825 something you want to know when writing new service definitions, but not
15826 necessarily when simply looking for ways to customize your
15827 @code{operating-system} declaration.
15828
15829 @deftp {Data Type} service-type
15830 @cindex service type
15831 This is the representation of a @dfn{service type} (@pxref{Service Types
15832 and Services}).
15833
15834 @table @asis
15835 @item @code{name}
15836 This is a symbol, used only to simplify inspection and debugging.
15837
15838 @item @code{extensions}
15839 A non-empty list of @code{<service-extension>} objects (see below).
15840
15841 @item @code{compose} (default: @code{#f})
15842 If this is @code{#f}, then the service type denotes services that cannot
15843 be extended---i.e., services that do not receive ``values'' from other
15844 services.
15845
15846 Otherwise, it must be a one-argument procedure. The procedure is called
15847 by @code{fold-services} and is passed a list of values collected from
15848 extensions. It must return a value that is a valid parameter value for
15849 the service instance.
15850
15851 @item @code{extend} (default: @code{#f})
15852 If this is @code{#f}, services of this type cannot be extended.
15853
15854 Otherwise, it must be a two-argument procedure: @code{fold-services}
15855 calls it, passing it the initial value of the service as the first argument
15856 and the result of applying @code{compose} to the extension values as the
15857 second argument.
15858 @end table
15859
15860 @xref{Service Types and Services}, for examples.
15861 @end deftp
15862
15863 @deffn {Scheme Procedure} service-extension @var{target-type} @
15864 @var{compute}
15865 Return a new extension for services of type @var{target-type}.
15866 @var{compute} must be a one-argument procedure: @code{fold-services}
15867 calls it, passing it the value associated with the service that provides
15868 the extension; it must return a valid value for the target service.
15869 @end deffn
15870
15871 @deffn {Scheme Procedure} service-extension? @var{obj}
15872 Return true if @var{obj} is a service extension.
15873 @end deffn
15874
15875 Occasionally, you might want to simply extend an existing service. This
15876 involves creating a new service type and specifying the extension of
15877 interest, which can be verbose; the @code{simple-service} procedure
15878 provides a shorthand for this.
15879
15880 @deffn {Scheme Procedure} simple-service @var{name} @var{target} @var{value}
15881 Return a service that extends @var{target} with @var{value}. This works
15882 by creating a singleton service type @var{name}, of which the returned
15883 service is an instance.
15884
15885 For example, this extends mcron (@pxref{Scheduled Job Execution}) with
15886 an additional job:
15887
15888 @example
15889 (simple-service 'my-mcron-job mcron-service-type
15890 #~(job '(next-hour (3)) "guix gc -F 2G"))
15891 @end example
15892 @end deffn
15893
15894 At the core of the service abstraction lies the @code{fold-services}
15895 procedure, which is responsible for ``compiling'' a list of services
15896 down to a single directory that contains everything needed to boot and
15897 run the system---the directory shown by the @command{guix system build}
15898 command (@pxref{Invoking guix system}). In essence, it propagates
15899 service extensions down the service graph, updating each node parameters
15900 on the way, until it reaches the root node.
15901
15902 @deffn {Scheme Procedure} fold-services @var{services} @
15903 [#:target-type @var{system-service-type}]
15904 Fold @var{services} by propagating their extensions down to the root of
15905 type @var{target-type}; return the root service adjusted accordingly.
15906 @end deffn
15907
15908 Lastly, the @code{(gnu services)} module also defines several essential
15909 service types, some of which are listed below.
15910
15911 @defvr {Scheme Variable} system-service-type
15912 This is the root of the service graph. It produces the system directory
15913 as returned by the @command{guix system build} command.
15914 @end defvr
15915
15916 @defvr {Scheme Variable} boot-service-type
15917 The type of the ``boot service'', which produces the @dfn{boot script}.
15918 The boot script is what the initial RAM disk runs when booting.
15919 @end defvr
15920
15921 @defvr {Scheme Variable} etc-service-type
15922 The type of the @file{/etc} service. This service can be extended by
15923 passing it name/file tuples such as:
15924
15925 @example
15926 (list `("issue" ,(plain-file "issue" "Welcome!\n")))
15927 @end example
15928
15929 In this example, the effect would be to add an @file{/etc/issue} file
15930 pointing to the given file.
15931 @end defvr
15932
15933 @defvr {Scheme Variable} setuid-program-service-type
15934 Type for the ``setuid-program service''. This service collects lists of
15935 executable file names, passed as gexps, and adds them to the set of
15936 setuid-root programs on the system (@pxref{Setuid Programs}).
15937 @end defvr
15938
15939 @defvr {Scheme Variable} profile-service-type
15940 Type of the service that populates the @dfn{system profile}---i.e., the
15941 programs under @file{/run/current-system/profile}. Other services can
15942 extend it by passing it lists of packages to add to the system profile.
15943 @end defvr
15944
15945
15946 @node Shepherd Services
15947 @subsubsection Shepherd Services
15948
15949 @cindex shepherd services
15950 @cindex PID 1
15951 @cindex init system
15952 The @code{(gnu services shepherd)} module provides a way to define
15953 services managed by the GNU@tie{}Shepherd, which is the GuixSD
15954 initialization system---the first process that is started when the
15955 system boots, also known as PID@tie{}1
15956 (@pxref{Introduction,,, shepherd, The GNU Shepherd Manual}).
15957
15958 Services in the Shepherd can depend on each other. For instance, the
15959 SSH daemon may need to be started after the syslog daemon has been
15960 started, which in turn can only happen once all the file systems have
15961 been mounted. The simple operating system defined earlier (@pxref{Using
15962 the Configuration System}) results in a service graph like this:
15963
15964 @image{images/shepherd-graph,,5in,Typical shepherd service graph.}
15965
15966 You can actually generate such a graph for any operating system
15967 definition using the @command{guix system shepherd-graph} command
15968 (@pxref{system-shepherd-graph, @command{guix system shepherd-graph}}).
15969
15970 The @var{%shepherd-root-service} is a service object representing
15971 PID@tie{}1, of type @var{shepherd-root-service-type}; it can be extended
15972 by passing it lists of @code{<shepherd-service>} objects.
15973
15974 @deftp {Data Type} shepherd-service
15975 The data type representing a service managed by the Shepherd.
15976
15977 @table @asis
15978 @item @code{provision}
15979 This is a list of symbols denoting what the service provides.
15980
15981 These are the names that may be passed to @command{herd start},
15982 @command{herd status}, and similar commands (@pxref{Invoking herd,,,
15983 shepherd, The GNU Shepherd Manual}). @xref{Slots of services, the
15984 @code{provides} slot,, shepherd, The GNU Shepherd Manual}, for details.
15985
15986 @item @code{requirements} (default: @code{'()})
15987 List of symbols denoting the Shepherd services this one depends on.
15988
15989 @item @code{respawn?} (default: @code{#t})
15990 Whether to restart the service when it stops, for instance when the
15991 underlying process dies.
15992
15993 @item @code{start}
15994 @itemx @code{stop} (default: @code{#~(const #f)})
15995 The @code{start} and @code{stop} fields refer to the Shepherd's
15996 facilities to start and stop processes (@pxref{Service De- and
15997 Constructors,,, shepherd, The GNU Shepherd Manual}). They are given as
15998 G-expressions that get expanded in the Shepherd configuration file
15999 (@pxref{G-Expressions}).
16000
16001 @item @code{documentation}
16002 A documentation string, as shown when running:
16003
16004 @example
16005 herd doc @var{service-name}
16006 @end example
16007
16008 where @var{service-name} is one of the symbols in @var{provision}
16009 (@pxref{Invoking herd,,, shepherd, The GNU Shepherd Manual}).
16010
16011 @item @code{modules} (default: @var{%default-modules})
16012 This is the list of modules that must be in scope when @code{start} and
16013 @code{stop} are evaluated.
16014
16015 @end table
16016 @end deftp
16017
16018 @defvr {Scheme Variable} shepherd-root-service-type
16019 The service type for the Shepherd ``root service''---i.e., PID@tie{}1.
16020
16021 This is the service type that extensions target when they want to create
16022 shepherd services (@pxref{Service Types and Services}, for an example).
16023 Each extension must pass a list of @code{<shepherd-service>}.
16024 @end defvr
16025
16026 @defvr {Scheme Variable} %shepherd-root-service
16027 This service represents PID@tie{}1.
16028 @end defvr
16029
16030
16031 @node Documentation
16032 @section Documentation
16033
16034 @cindex documentation, searching for
16035 @cindex searching for documentation
16036 @cindex Info, documentation format
16037 @cindex man pages
16038 @cindex manual pages
16039 In most cases packages installed with Guix come with documentation.
16040 There are two main documentation formats: ``Info'', a browseable
16041 hypertext format used for GNU software, and ``manual pages'' (or ``man
16042 pages''), the linear documentation format traditionally found on Unix.
16043 Info manuals are accessed with the @command{info} command or with Emacs,
16044 and man pages are accessed using @command{man}.
16045
16046 You can look for documentation of software installed on your system by
16047 keyword. For example, the following command searches for information
16048 about ``TLS'' in Info manuals:
16049
16050 @example
16051 $ info -k TLS
16052 "(emacs)Network Security" -- STARTTLS
16053 "(emacs)Network Security" -- TLS
16054 "(gnutls)Core TLS API" -- gnutls_certificate_set_verify_flags
16055 "(gnutls)Core TLS API" -- gnutls_certificate_set_verify_function
16056 @dots{}
16057 @end example
16058
16059 @noindent
16060 The command below searches for the same keyword in man pages:
16061
16062 @example
16063 $ man -k TLS
16064 SSL (7) - OpenSSL SSL/TLS library
16065 certtool (1) - GnuTLS certificate tool
16066 @dots {}
16067 @end example
16068
16069 These searches are purely local to your computer so you have the
16070 guarantee that documentation you find corresponds to what you have
16071 actually installed, you can access it off-line, and your privacy is
16072 respected.
16073
16074 Once you have these results, you can view the relevant documentation by
16075 running, say:
16076
16077 @example
16078 $ info "(gnutls)Core TLS API"
16079 @end example
16080
16081 @noindent
16082 or:
16083
16084 @example
16085 $ man certtool
16086 @end example
16087
16088 Info manuals contain sections and indices as well as hyperlinks like
16089 those found in Web pages. The @command{info} reader (@pxref{Top, Info
16090 reader,, info-stnd, Stand-alone GNU Info}) and its Emacs counterpart
16091 (@pxref{Misc Help,,, emacs, The GNU Emacs Manual}) provide intuitive key
16092 bindings to navigate manuals. @xref{Getting Started,,, info, Info: An
16093 Introduction}, for an introduction to Info navigation.
16094
16095 @node Installing Debugging Files
16096 @section Installing Debugging Files
16097
16098 @cindex debugging files
16099 Program binaries, as produced by the GCC compilers for instance, are
16100 typically written in the ELF format, with a section containing
16101 @dfn{debugging information}. Debugging information is what allows the
16102 debugger, GDB, to map binary code to source code; it is required to
16103 debug a compiled program in good conditions.
16104
16105 The problem with debugging information is that is takes up a fair amount
16106 of disk space. For example, debugging information for the GNU C Library
16107 weighs in at more than 60 MiB. Thus, as a user, keeping all the
16108 debugging info of all the installed programs is usually not an option.
16109 Yet, space savings should not come at the cost of an impediment to
16110 debugging---especially in the GNU system, which should make it easier
16111 for users to exert their computing freedom (@pxref{GNU Distribution}).
16112
16113 Thankfully, the GNU Binary Utilities (Binutils) and GDB provide a
16114 mechanism that allows users to get the best of both worlds: debugging
16115 information can be stripped from the binaries and stored in separate
16116 files. GDB is then able to load debugging information from those files,
16117 when they are available (@pxref{Separate Debug Files,,, gdb, Debugging
16118 with GDB}).
16119
16120 The GNU distribution takes advantage of this by storing debugging
16121 information in the @code{lib/debug} sub-directory of a separate package
16122 output unimaginatively called @code{debug} (@pxref{Packages with
16123 Multiple Outputs}). Users can choose to install the @code{debug} output
16124 of a package when they need it. For instance, the following command
16125 installs the debugging information for the GNU C Library and for GNU
16126 Guile:
16127
16128 @example
16129 guix package -i glibc:debug guile:debug
16130 @end example
16131
16132 GDB must then be told to look for debug files in the user's profile, by
16133 setting the @code{debug-file-directory} variable (consider setting it
16134 from the @file{~/.gdbinit} file, @pxref{Startup,,, gdb, Debugging with
16135 GDB}):
16136
16137 @example
16138 (gdb) set debug-file-directory ~/.guix-profile/lib/debug
16139 @end example
16140
16141 From there on, GDB will pick up debugging information from the
16142 @code{.debug} files under @file{~/.guix-profile/lib/debug}.
16143
16144 In addition, you will most likely want GDB to be able to show the source
16145 code being debugged. To do that, you will have to unpack the source
16146 code of the package of interest (obtained with @code{guix build
16147 --source}, @pxref{Invoking guix build}), and to point GDB to that source
16148 directory using the @code{directory} command (@pxref{Source Path,
16149 @code{directory},, gdb, Debugging with GDB}).
16150
16151 @c XXX: keep me up-to-date
16152 The @code{debug} output mechanism in Guix is implemented by the
16153 @code{gnu-build-system} (@pxref{Build Systems}). Currently, it is
16154 opt-in---debugging information is available only for the packages
16155 with definitions explicitly declaring a @code{debug} output. This may be
16156 changed to opt-out in the future if our build farm servers can handle
16157 the load. To check whether a package has a @code{debug} output, use
16158 @command{guix package --list-available} (@pxref{Invoking guix package}).
16159
16160
16161 @node Security Updates
16162 @section Security Updates
16163
16164 @cindex security updates
16165 @cindex security vulnerabilities
16166 Occasionally, important security vulnerabilities are discovered in software
16167 packages and must be patched. Guix developers try hard to keep track of
16168 known vulnerabilities and to apply fixes as soon as possible in the
16169 @code{master} branch of Guix (we do not yet provide a ``stable'' branch
16170 containing only security updates.) The @command{guix lint} tool helps
16171 developers find out about vulnerable versions of software packages in the
16172 distribution:
16173
16174 @smallexample
16175 $ guix lint -c cve
16176 gnu/packages/base.scm:652:2: glibc-2.21: probably vulnerable to CVE-2015-1781, CVE-2015-7547
16177 gnu/packages/gcc.scm:334:2: gcc-4.9.3: probably vulnerable to CVE-2015-5276
16178 gnu/packages/image.scm:312:2: openjpeg-2.1.0: probably vulnerable to CVE-2016-1923, CVE-2016-1924
16179 @dots{}
16180 @end smallexample
16181
16182 @xref{Invoking guix lint}, for more information.
16183
16184 @quotation Note
16185 As of version @value{VERSION}, the feature described below is considered
16186 ``beta''.
16187 @end quotation
16188
16189 Guix follows a functional
16190 package management discipline (@pxref{Introduction}), which implies
16191 that, when a package is changed, @emph{every package that depends on it}
16192 must be rebuilt. This can significantly slow down the deployment of
16193 fixes in core packages such as libc or Bash, since basically the whole
16194 distribution would need to be rebuilt. Using pre-built binaries helps
16195 (@pxref{Substitutes}), but deployment may still take more time than
16196 desired.
16197
16198 @cindex grafts
16199 To address this, Guix implements @dfn{grafts}, a mechanism that allows
16200 for fast deployment of critical updates without the costs associated
16201 with a whole-distribution rebuild. The idea is to rebuild only the
16202 package that needs to be patched, and then to ``graft'' it onto packages
16203 explicitly installed by the user and that were previously referring to
16204 the original package. The cost of grafting is typically very low, and
16205 order of magnitudes lower than a full rebuild of the dependency chain.
16206
16207 @cindex replacements of packages, for grafts
16208 For instance, suppose a security update needs to be applied to Bash.
16209 Guix developers will provide a package definition for the ``fixed''
16210 Bash, say @var{bash-fixed}, in the usual way (@pxref{Defining
16211 Packages}). Then, the original package definition is augmented with a
16212 @code{replacement} field pointing to the package containing the bug fix:
16213
16214 @example
16215 (define bash
16216 (package
16217 (name "bash")
16218 ;; @dots{}
16219 (replacement bash-fixed)))
16220 @end example
16221
16222 From there on, any package depending directly or indirectly on Bash---as
16223 reported by @command{guix gc --requisites} (@pxref{Invoking guix
16224 gc})---that is installed is automatically ``rewritten'' to refer to
16225 @var{bash-fixed} instead of @var{bash}. This grafting process takes
16226 time proportional to the size of the package, usually less than a
16227 minute for an ``average'' package on a recent machine. Grafting is
16228 recursive: when an indirect dependency requires grafting, then grafting
16229 ``propagates'' up to the package that the user is installing.
16230
16231 Currently, the length of the name and version of the graft and that of
16232 the package it replaces (@var{bash-fixed} and @var{bash} in the example
16233 above) must be equal. This restriction mostly comes from the fact that
16234 grafting works by patching files, including binary files, directly.
16235 Other restrictions may apply: for instance, when adding a graft to a
16236 package providing a shared library, the original shared library and its
16237 replacement must have the same @code{SONAME} and be binary-compatible.
16238
16239 The @option{--no-grafts} command-line option allows you to forcefully
16240 avoid grafting (@pxref{Common Build Options, @option{--no-grafts}}).
16241 Thus, the command:
16242
16243 @example
16244 guix build bash --no-grafts
16245 @end example
16246
16247 @noindent
16248 returns the store file name of the original Bash, whereas:
16249
16250 @example
16251 guix build bash
16252 @end example
16253
16254 @noindent
16255 returns the store file name of the ``fixed'', replacement Bash. This
16256 allows you to distinguish between the two variants of Bash.
16257
16258 To verify which Bash your whole profile refers to, you can run
16259 (@pxref{Invoking guix gc}):
16260
16261 @example
16262 guix gc -R `readlink -f ~/.guix-profile` | grep bash
16263 @end example
16264
16265 @noindent
16266 @dots{} and compare the store file names that you get with those above.
16267 Likewise for a complete GuixSD system generation:
16268
16269 @example
16270 guix gc -R `guix system build my-config.scm` | grep bash
16271 @end example
16272
16273 Lastly, to check which Bash running processes are using, you can use the
16274 @command{lsof} command:
16275
16276 @example
16277 lsof | grep /gnu/store/.*bash
16278 @end example
16279
16280
16281 @node Package Modules
16282 @section Package Modules
16283
16284 From a programming viewpoint, the package definitions of the
16285 GNU distribution are provided by Guile modules in the @code{(gnu packages
16286 @dots{})} name space@footnote{Note that packages under the @code{(gnu
16287 packages @dots{})} module name space are not necessarily ``GNU
16288 packages''. This module naming scheme follows the usual Guile module
16289 naming convention: @code{gnu} means that these modules are distributed
16290 as part of the GNU system, and @code{packages} identifies modules that
16291 define packages.} (@pxref{Modules, Guile modules,, guile, GNU Guile
16292 Reference Manual}). For instance, the @code{(gnu packages emacs)}
16293 module exports a variable named @code{emacs}, which is bound to a
16294 @code{<package>} object (@pxref{Defining Packages}).
16295
16296 The @code{(gnu packages @dots{})} module name space is
16297 automatically scanned for packages by the command-line tools. For
16298 instance, when running @code{guix package -i emacs}, all the @code{(gnu
16299 packages @dots{})} modules are scanned until one that exports a package
16300 object whose name is @code{emacs} is found. This package search
16301 facility is implemented in the @code{(gnu packages)} module.
16302
16303 @cindex customization, of packages
16304 @cindex package module search path
16305 Users can store package definitions in modules with different
16306 names---e.g., @code{(my-packages emacs)}@footnote{Note that the file
16307 name and module name must match. For instance, the @code{(my-packages
16308 emacs)} module must be stored in a @file{my-packages/emacs.scm} file
16309 relative to the load path specified with @option{--load-path} or
16310 @code{GUIX_PACKAGE_PATH}. @xref{Modules and the File System,,,
16311 guile, GNU Guile Reference Manual}, for details.}. These package definitions
16312 will not be visible by default. Users can invoke commands such as
16313 @command{guix package} and @command{guix build} with the
16314 @code{-e} option so that they know where to find the package. Better
16315 yet, they can use the
16316 @code{-L} option of these commands to make those modules visible
16317 (@pxref{Invoking guix build, @code{--load-path}}), or define the
16318 @code{GUIX_PACKAGE_PATH} environment variable. This environment
16319 variable makes it easy to extend or customize the distribution and is
16320 honored by all the user interfaces.
16321
16322 @defvr {Environment Variable} GUIX_PACKAGE_PATH
16323 This is a colon-separated list of directories to search for additional
16324 package modules. Directories listed in this variable take precedence
16325 over the own modules of the distribution.
16326 @end defvr
16327
16328 The distribution is fully @dfn{bootstrapped} and @dfn{self-contained}:
16329 each package is built based solely on other packages in the
16330 distribution. The root of this dependency graph is a small set of
16331 @dfn{bootstrap binaries}, provided by the @code{(gnu packages
16332 bootstrap)} module. For more information on bootstrapping,
16333 @pxref{Bootstrapping}.
16334
16335 @node Packaging Guidelines
16336 @section Packaging Guidelines
16337
16338 @cindex packages, creating
16339 The GNU distribution is nascent and may well lack some of your favorite
16340 packages. This section describes how you can help make the distribution
16341 grow. @xref{Contributing}, for additional information on how you can
16342 help.
16343
16344 Free software packages are usually distributed in the form of
16345 @dfn{source code tarballs}---typically @file{tar.gz} files that contain
16346 all the source files. Adding a package to the distribution means
16347 essentially two things: adding a @dfn{recipe} that describes how to
16348 build the package, including a list of other packages required to build
16349 it, and adding @dfn{package metadata} along with that recipe, such as a
16350 description and licensing information.
16351
16352 In Guix all this information is embodied in @dfn{package definitions}.
16353 Package definitions provide a high-level view of the package. They are
16354 written using the syntax of the Scheme programming language; in fact,
16355 for each package we define a variable bound to the package definition,
16356 and export that variable from a module (@pxref{Package Modules}).
16357 However, in-depth Scheme knowledge is @emph{not} a prerequisite for
16358 creating packages. For more information on package definitions,
16359 @pxref{Defining Packages}.
16360
16361 Once a package definition is in place, stored in a file in the Guix
16362 source tree, it can be tested using the @command{guix build} command
16363 (@pxref{Invoking guix build}). For example, assuming the new package is
16364 called @code{gnew}, you may run this command from the Guix build tree
16365 (@pxref{Running Guix Before It Is Installed}):
16366
16367 @example
16368 ./pre-inst-env guix build gnew --keep-failed
16369 @end example
16370
16371 Using @code{--keep-failed} makes it easier to debug build failures since
16372 it provides access to the failed build tree. Another useful
16373 command-line option when debugging is @code{--log-file}, to access the
16374 build log.
16375
16376 If the package is unknown to the @command{guix} command, it may be that
16377 the source file contains a syntax error, or lacks a @code{define-public}
16378 clause to export the package variable. To figure it out, you may load
16379 the module from Guile to get more information about the actual error:
16380
16381 @example
16382 ./pre-inst-env guile -c '(use-modules (gnu packages gnew))'
16383 @end example
16384
16385 Once your package builds correctly, please send us a patch
16386 (@pxref{Contributing}). Well, if you need help, we will be happy to
16387 help you too. Once the patch is committed in the Guix repository, the
16388 new package automatically gets built on the supported platforms by
16389 @url{http://hydra.gnu.org/jobset/gnu/master, our continuous integration
16390 system}.
16391
16392 @cindex substituter
16393 Users can obtain the new package definition simply by running
16394 @command{guix pull} (@pxref{Invoking guix pull}). When
16395 @code{hydra.gnu.org} is done building the package, installing the
16396 package automatically downloads binaries from there
16397 (@pxref{Substitutes}). The only place where human intervention is
16398 needed is to review and apply the patch.
16399
16400
16401 @menu
16402 * Software Freedom:: What may go into the distribution.
16403 * Package Naming:: What's in a name?
16404 * Version Numbers:: When the name is not enough.
16405 * Synopses and Descriptions:: Helping users find the right package.
16406 * Python Modules:: A touch of British comedy.
16407 * Perl Modules:: Little pearls.
16408 * Java Packages:: Coffee break.
16409 * Fonts:: Fond of fonts.
16410 @end menu
16411
16412 @node Software Freedom
16413 @subsection Software Freedom
16414
16415 @c Adapted from http://www.gnu.org/philosophy/philosophy.html.
16416 @cindex free software
16417 The GNU operating system has been developed so that users can have
16418 freedom in their computing. GNU is @dfn{free software}, meaning that
16419 users have the @url{http://www.gnu.org/philosophy/free-sw.html,four
16420 essential freedoms}: to run the program, to study and change the program
16421 in source code form, to redistribute exact copies, and to distribute
16422 modified versions. Packages found in the GNU distribution provide only
16423 software that conveys these four freedoms.
16424
16425 In addition, the GNU distribution follow the
16426 @url{http://www.gnu.org/distros/free-system-distribution-guidelines.html,free
16427 software distribution guidelines}. Among other things, these guidelines
16428 reject non-free firmware, recommendations of non-free software, and
16429 discuss ways to deal with trademarks and patents.
16430
16431 Some otherwise free upstream package sources contain a small and optional
16432 subset that violates the above guidelines, for instance because this subset
16433 is itself non-free code. When that happens, the offending items are removed
16434 with appropriate patches or code snippets in the @code{origin} form of the
16435 package (@pxref{Defining Packages}). This way, @code{guix
16436 build --source} returns the ``freed'' source rather than the unmodified
16437 upstream source.
16438
16439
16440 @node Package Naming
16441 @subsection Package Naming
16442
16443 @cindex package name
16444 A package has actually two names associated with it:
16445 First, there is the name of the @emph{Scheme variable}, the one following
16446 @code{define-public}. By this name, the package can be made known in the
16447 Scheme code, for instance as input to another package. Second, there is
16448 the string in the @code{name} field of a package definition. This name
16449 is used by package management commands such as
16450 @command{guix package} and @command{guix build}.
16451
16452 Both are usually the same and correspond to the lowercase conversion of
16453 the project name chosen upstream, with underscores replaced with
16454 hyphens. For instance, GNUnet is available as @code{gnunet}, and
16455 SDL_net as @code{sdl-net}.
16456
16457 We do not add @code{lib} prefixes for library packages, unless these are
16458 already part of the official project name. But @pxref{Python
16459 Modules} and @ref{Perl Modules} for special rules concerning modules for
16460 the Python and Perl languages.
16461
16462 Font package names are handled differently, @pxref{Fonts}.
16463
16464
16465 @node Version Numbers
16466 @subsection Version Numbers
16467
16468 @cindex package version
16469 We usually package only the latest version of a given free software
16470 project. But sometimes, for instance for incompatible library versions,
16471 two (or more) versions of the same package are needed. These require
16472 different Scheme variable names. We use the name as defined
16473 in @ref{Package Naming}
16474 for the most recent version; previous versions use the same name, suffixed
16475 by @code{-} and the smallest prefix of the version number that may
16476 distinguish the two versions.
16477
16478 The name inside the package definition is the same for all versions of a
16479 package and does not contain any version number.
16480
16481 For instance, the versions 2.24.20 and 3.9.12 of GTK+ may be packaged as follows:
16482
16483 @example
16484 (define-public gtk+
16485 (package
16486 (name "gtk+")
16487 (version "3.9.12")
16488 ...))
16489 (define-public gtk+-2
16490 (package
16491 (name "gtk+")
16492 (version "2.24.20")
16493 ...))
16494 @end example
16495 If we also wanted GTK+ 3.8.2, this would be packaged as
16496 @example
16497 (define-public gtk+-3.8
16498 (package
16499 (name "gtk+")
16500 (version "3.8.2")
16501 ...))
16502 @end example
16503
16504 @c See <https://lists.gnu.org/archive/html/guix-devel/2016-01/msg00425.html>,
16505 @c for a discussion of what follows.
16506 @cindex version number, for VCS snapshots
16507 Occasionally, we package snapshots of upstream's version control system
16508 (VCS) instead of formal releases. This should remain exceptional,
16509 because it is up to upstream developers to clarify what the stable
16510 release is. Yet, it is sometimes necessary. So, what should we put in
16511 the @code{version} field?
16512
16513 Clearly, we need to make the commit identifier of the VCS snapshot
16514 visible in the version string, but we also need to make sure that the
16515 version string is monotonically increasing so that @command{guix package
16516 --upgrade} can determine which version is newer. Since commit
16517 identifiers, notably with Git, are not monotonically increasing, we add
16518 a revision number that we increase each time we upgrade to a newer
16519 snapshot. The resulting version string looks like this:
16520
16521 @example
16522 2.0.11-3.cabba9e
16523 ^ ^ ^
16524 | | `-- upstream commit ID
16525 | |
16526 | `--- Guix package revision
16527 |
16528 latest upstream version
16529 @end example
16530
16531 It is a good idea to strip commit identifiers in the @code{version}
16532 field to, say, 7 digits. It avoids an aesthetic annoyance (assuming
16533 aesthetics have a role to play here) as well as problems related to OS
16534 limits such as the maximum shebang length (127 bytes for the Linux
16535 kernel.) It is best to use the full commit identifiers in
16536 @code{origin}s, though, to avoid ambiguities. A typical package
16537 definition may look like this:
16538
16539 @example
16540 (define my-package
16541 (let ((commit "c3f29bc928d5900971f65965feaae59e1272a3f7")
16542 (revision "1")) ;Guix package revision
16543 (package
16544 (version (string-append "0.9-" revision "."
16545 (string-take commit 7)))
16546 (source (origin
16547 (method git-fetch)
16548 (uri (git-reference
16549 (url "git://example.org/my-package.git")
16550 (commit commit)))
16551 (sha256 (base32 "1mbikn@dots{}"))
16552 (file-name (string-append "my-package-" version
16553 "-checkout"))))
16554 ;; @dots{}
16555 )))
16556 @end example
16557
16558 @node Synopses and Descriptions
16559 @subsection Synopses and Descriptions
16560
16561 @cindex package description
16562 @cindex package synopsis
16563 As we have seen before, each package in GNU@tie{}Guix includes a
16564 synopsis and a description (@pxref{Defining Packages}). Synopses and
16565 descriptions are important: They are what @command{guix package
16566 --search} searches, and a crucial piece of information to help users
16567 determine whether a given package suits their needs. Consequently,
16568 packagers should pay attention to what goes into them.
16569
16570 Synopses must start with a capital letter and must not end with a
16571 period. They must not start with ``a'' or ``the'', which usually does
16572 not bring anything; for instance, prefer ``File-frobbing tool'' over ``A
16573 tool that frobs files''. The synopsis should say what the package
16574 is---e.g., ``Core GNU utilities (file, text, shell)''---or what it is
16575 used for---e.g., the synopsis for GNU@tie{}grep is ``Print lines
16576 matching a pattern''.
16577
16578 Keep in mind that the synopsis must be meaningful for a very wide
16579 audience. For example, ``Manipulate alignments in the SAM format''
16580 might make sense for a seasoned bioinformatics researcher, but might be
16581 fairly unhelpful or even misleading to a non-specialized audience. It
16582 is a good idea to come up with a synopsis that gives an idea of the
16583 application domain of the package. In this example, this might give
16584 something like ``Manipulate nucleotide sequence alignments'', which
16585 hopefully gives the user a better idea of whether this is what they are
16586 looking for.
16587
16588 Descriptions should take between five and ten lines. Use full
16589 sentences, and avoid using acronyms without first introducing them.
16590 Please avoid marketing phrases such as ``world-leading'',
16591 ``industrial-strength'', and ``next-generation'', and avoid superlatives
16592 like ``the most advanced''---they are not helpful to users looking for a
16593 package and may even sound suspicious. Instead, try to be factual,
16594 mentioning use cases and features.
16595
16596 @cindex Texinfo markup, in package descriptions
16597 Descriptions can include Texinfo markup, which is useful to introduce
16598 ornaments such as @code{@@code} or @code{@@dfn}, bullet lists, or
16599 hyperlinks (@pxref{Overview,,, texinfo, GNU Texinfo}). However you
16600 should be careful when using some characters for example @samp{@@} and
16601 curly braces which are the basic special characters in Texinfo
16602 (@pxref{Special Characters,,, texinfo, GNU Texinfo}). User interfaces
16603 such as @command{guix package --show} take care of rendering it
16604 appropriately.
16605
16606 Synopses and descriptions are translated by volunteers
16607 @uref{http://translationproject.org/domain/guix-packages.html, at the
16608 Translation Project} so that as many users as possible can read them in
16609 their native language. User interfaces search them and display them in
16610 the language specified by the current locale.
16611
16612 Translation is a lot of work so, as a packager, please pay even more
16613 attention to your synopses and descriptions as every change may entail
16614 additional work for translators. In order to help them, it is possible
16615 to make recommendations or instructions visible to them by inserting
16616 special comments like this (@pxref{xgettext Invocation,,, gettext, GNU
16617 Gettext}):
16618
16619 @example
16620 ;; TRANSLATORS: "X11 resize-and-rotate" should not be translated.
16621 (description "ARandR is designed to provide a simple visual front end
16622 for the X11 resize-and-rotate (RandR) extension. @dots{}")
16623 @end example
16624
16625
16626 @node Python Modules
16627 @subsection Python Modules
16628
16629 @cindex python
16630 We currently package Python 2 and Python 3, under the Scheme variable names
16631 @code{python-2} and @code{python} as explained in @ref{Version Numbers}.
16632 To avoid confusion and naming clashes with other programming languages, it
16633 seems desirable that the name of a package for a Python module contains
16634 the word @code{python}.
16635
16636 Some modules are compatible with only one version of Python, others with both.
16637 If the package Foo compiles only with Python 3, we name it
16638 @code{python-foo}; if it compiles only with Python 2, we name it
16639 @code{python2-foo}. If it is compatible with both versions, we create two
16640 packages with the corresponding names.
16641
16642 If a project already contains the word @code{python}, we drop this;
16643 for instance, the module python-dateutil is packaged under the names
16644 @code{python-dateutil} and @code{python2-dateutil}. If the project name
16645 starts with @code{py} (e.g. @code{pytz}), we keep it and prefix it as
16646 described above.
16647
16648 @subsubsection Specifying Dependencies
16649 @cindex inputs, for Python packages
16650
16651 Dependency information for Python packages is usually available in the
16652 package source tree, with varying degrees of accuracy: in the
16653 @file{setup.py} file, in @file{requirements.txt}, or in @file{tox.ini}.
16654
16655 Your mission, when writing a recipe for a Python package, is to map
16656 these dependencies to the appropriate type of ``input'' (@pxref{package
16657 Reference, inputs}). Although the @code{pypi} importer normally does a
16658 good job (@pxref{Invoking guix import}), you may want to check the
16659 following check list to determine which dependency goes where.
16660
16661 @itemize
16662
16663 @item
16664 We currently package Python 2 with @code{setuptools} and @code{pip}
16665 installed like Python 3.4 has per default. Thus you don't need to
16666 specify either of these as an input. @command{guix lint} will warn you
16667 if you do.
16668
16669 @item
16670 Python dependencies required at run time go into
16671 @code{propagated-inputs}. They are typically defined with the
16672 @code{install_requires} keyword in @file{setup.py}, or in the
16673 @file{requirements.txt} file.
16674
16675 @item
16676 Python packages required only at build time---e.g., those listed with
16677 the @code{setup_requires} keyword in @file{setup.py}---or only for
16678 testing---e.g., those in @code{tests_require}---go into
16679 @code{native-inputs}. The rationale is that (1) they do not need to be
16680 propagated because they are not needed at run time, and (2) in a
16681 cross-compilation context, it's the ``native'' input that we'd want.
16682
16683 Examples are the @code{pytest}, @code{mock}, and @code{nose} test
16684 frameworks. Of course if any of these packages is also required at
16685 run-time, it needs to go to @code{propagated-inputs}.
16686
16687 @item
16688 Anything that does not fall in the previous categories goes to
16689 @code{inputs}, for example programs or C libraries required for building
16690 Python packages containing C extensions.
16691
16692 @item
16693 If a Python package has optional dependencies (@code{extras_require}),
16694 it is up to you to decide whether to add them or not, based on their
16695 usefulness/overhead ratio (@pxref{Submitting Patches, @command{guix
16696 size}}).
16697
16698 @end itemize
16699
16700
16701 @node Perl Modules
16702 @subsection Perl Modules
16703
16704 @cindex perl
16705 Perl programs standing for themselves are named as any other package,
16706 using the lowercase upstream name.
16707 For Perl packages containing a single class, we use the lowercase class name,
16708 replace all occurrences of @code{::} by dashes and prepend the prefix
16709 @code{perl-}.
16710 So the class @code{XML::Parser} becomes @code{perl-xml-parser}.
16711 Modules containing several classes keep their lowercase upstream name and
16712 are also prepended by @code{perl-}. Such modules tend to have the word
16713 @code{perl} somewhere in their name, which gets dropped in favor of the
16714 prefix. For instance, @code{libwww-perl} becomes @code{perl-libwww}.
16715
16716
16717 @node Java Packages
16718 @subsection Java Packages
16719
16720 @cindex java
16721 Java programs standing for themselves are named as any other package,
16722 using the lowercase upstream name.
16723
16724 To avoid confusion and naming clashes with other programming languages,
16725 it is desirable that the name of a package for a Java package is
16726 prefixed with @code{java-}. If a project already contains the word
16727 @code{java}, we drop this; for instance, the package @code{ngsjava} is
16728 packaged under the name @code{java-ngs}.
16729
16730 For Java packages containing a single class or a small class hierarchy,
16731 we use the lowercase class name, replace all occurrences of @code{.} by
16732 dashes and prepend the prefix @code{java-}. So the class
16733 @code{apache.commons.cli} becomes package
16734 @code{java-apache-commons-cli}.
16735
16736
16737 @node Fonts
16738 @subsection Fonts
16739
16740 @cindex fonts
16741 For fonts that are in general not installed by a user for typesetting
16742 purposes, or that are distributed as part of a larger software package,
16743 we rely on the general packaging rules for software; for instance, this
16744 applies to the fonts delivered as part of the X.Org system or fonts that
16745 are part of TeX Live.
16746
16747 To make it easier for a user to search for fonts, names for other packages
16748 containing only fonts are constructed as follows, independently of the
16749 upstream package name.
16750
16751 The name of a package containing only one font family starts with
16752 @code{font-}; it is followed by the foundry name and a dash @code{-}
16753 if the foundry is known, and the font family name, in which spaces are
16754 replaced by dashes (and as usual, all upper case letters are transformed
16755 to lower case).
16756 For example, the Gentium font family by SIL is packaged under the name
16757 @code{font-sil-gentium}.
16758
16759 For a package containing several font families, the name of the collection
16760 is used in the place of the font family name.
16761 For instance, the Liberation fonts consist of three families,
16762 Liberation Sans, Liberation Serif and Liberation Mono.
16763 These could be packaged separately under the names
16764 @code{font-liberation-sans} and so on; but as they are distributed together
16765 under a common name, we prefer to package them together as
16766 @code{font-liberation}.
16767
16768 In the case where several formats of the same font family or font collection
16769 are packaged separately, a short form of the format, prepended by a dash,
16770 is added to the package name. We use @code{-ttf} for TrueType fonts,
16771 @code{-otf} for OpenType fonts and @code{-type1} for PostScript Type 1
16772 fonts.
16773
16774
16775
16776 @node Bootstrapping
16777 @section Bootstrapping
16778
16779 @c Adapted from the ELS 2013 paper.
16780
16781 @cindex bootstrapping
16782
16783 Bootstrapping in our context refers to how the distribution gets built
16784 ``from nothing''. Remember that the build environment of a derivation
16785 contains nothing but its declared inputs (@pxref{Introduction}). So
16786 there's an obvious chicken-and-egg problem: how does the first package
16787 get built? How does the first compiler get compiled? Note that this is
16788 a question of interest only to the curious hacker, not to the regular
16789 user, so you can shamelessly skip this section if you consider yourself
16790 a ``regular user''.
16791
16792 @cindex bootstrap binaries
16793 The GNU system is primarily made of C code, with libc at its core. The
16794 GNU build system itself assumes the availability of a Bourne shell and
16795 command-line tools provided by GNU Coreutils, Awk, Findutils, `sed', and
16796 `grep'. Furthermore, build programs---programs that run
16797 @code{./configure}, @code{make}, etc.---are written in Guile Scheme
16798 (@pxref{Derivations}). Consequently, to be able to build anything at
16799 all, from scratch, Guix relies on pre-built binaries of Guile, GCC,
16800 Binutils, libc, and the other packages mentioned above---the
16801 @dfn{bootstrap binaries}.
16802
16803 These bootstrap binaries are ``taken for granted'', though we can also
16804 re-create them if needed (more on that later).
16805
16806 @unnumberedsubsec Preparing to Use the Bootstrap Binaries
16807
16808 @c As of Emacs 24.3, Info-mode displays the image, but since it's a
16809 @c large image, it's hard to scroll. Oh well.
16810 @image{images/bootstrap-graph,6in,,Dependency graph of the early bootstrap derivations}
16811
16812 The figure above shows the very beginning of the dependency graph of the
16813 distribution, corresponding to the package definitions of the @code{(gnu
16814 packages bootstrap)} module. A similar figure can be generated with
16815 @command{guix graph} (@pxref{Invoking guix graph}), along the lines of:
16816
16817 @example
16818 guix graph -t derivation \
16819 -e '(@@@@ (gnu packages bootstrap) %bootstrap-gcc)' \
16820 | dot -Tps > t.ps
16821 @end example
16822
16823 At this level of detail, things are
16824 slightly complex. First, Guile itself consists of an ELF executable,
16825 along with many source and compiled Scheme files that are dynamically
16826 loaded when it runs. This gets stored in the @file{guile-2.0.7.tar.xz}
16827 tarball shown in this graph. This tarball is part of Guix's ``source''
16828 distribution, and gets inserted into the store with @code{add-to-store}
16829 (@pxref{The Store}).
16830
16831 But how do we write a derivation that unpacks this tarball and adds it
16832 to the store? To solve this problem, the @code{guile-bootstrap-2.0.drv}
16833 derivation---the first one that gets built---uses @code{bash} as its
16834 builder, which runs @code{build-bootstrap-guile.sh}, which in turn calls
16835 @code{tar} to unpack the tarball. Thus, @file{bash}, @file{tar},
16836 @file{xz}, and @file{mkdir} are statically-linked binaries, also part of
16837 the Guix source distribution, whose sole purpose is to allow the Guile
16838 tarball to be unpacked.
16839
16840 Once @code{guile-bootstrap-2.0.drv} is built, we have a functioning
16841 Guile that can be used to run subsequent build programs. Its first task
16842 is to download tarballs containing the other pre-built binaries---this
16843 is what the @code{.tar.xz.drv} derivations do. Guix modules such as
16844 @code{ftp-client.scm} are used for this purpose. The
16845 @code{module-import.drv} derivations import those modules in a directory
16846 in the store, using the original layout. The
16847 @code{module-import-compiled.drv} derivations compile those modules, and
16848 write them in an output directory with the right layout. This
16849 corresponds to the @code{#:modules} argument of
16850 @code{build-expression->derivation} (@pxref{Derivations}).
16851
16852 Finally, the various tarballs are unpacked by the
16853 derivations @code{gcc-bootstrap-0.drv}, @code{glibc-bootstrap-0.drv},
16854 etc., at which point we have a working C tool chain.
16855
16856
16857 @unnumberedsubsec Building the Build Tools
16858
16859 Bootstrapping is complete when we have a full tool chain that does not
16860 depend on the pre-built bootstrap tools discussed above. This
16861 no-dependency requirement is verified by checking whether the files of
16862 the final tool chain contain references to the @file{/gnu/store}
16863 directories of the bootstrap inputs. The process that leads to this
16864 ``final'' tool chain is described by the package definitions found in
16865 the @code{(gnu packages commencement)} module.
16866
16867 The @command{guix graph} command allows us to ``zoom out'' compared to
16868 the graph above, by looking at the level of package objects instead of
16869 individual derivations---remember that a package may translate to
16870 several derivations, typically one derivation to download its source,
16871 one to build the Guile modules it needs, and one to actually build the
16872 package from source. The command:
16873
16874 @example
16875 guix graph -t bag \
16876 -e '(@@@@ (gnu packages commencement)
16877 glibc-final-with-bootstrap-bash)' | dot -Tps > t.ps
16878 @end example
16879
16880 @noindent
16881 produces the dependency graph leading to the ``final'' C
16882 library@footnote{You may notice the @code{glibc-intermediate} label,
16883 suggesting that it is not @emph{quite} final, but as a good
16884 approximation, we will consider it final.}, depicted below.
16885
16886 @image{images/bootstrap-packages,6in,,Dependency graph of the early packages}
16887
16888 @c See <http://lists.gnu.org/archive/html/gnu-system-discuss/2012-10/msg00000.html>.
16889 The first tool that gets built with the bootstrap binaries is
16890 GNU@tie{}Make---noted @code{make-boot0} above---which is a prerequisite
16891 for all the following packages. From there Findutils and Diffutils get
16892 built.
16893
16894 Then come the first-stage Binutils and GCC, built as pseudo cross
16895 tools---i.e., with @code{--target} equal to @code{--host}. They are
16896 used to build libc. Thanks to this cross-build trick, this libc is
16897 guaranteed not to hold any reference to the initial tool chain.
16898
16899 From there the final Binutils and GCC (not shown above) are built.
16900 GCC uses @code{ld}
16901 from the final Binutils, and links programs against the just-built libc.
16902 This tool chain is used to build the other packages used by Guix and by
16903 the GNU Build System: Guile, Bash, Coreutils, etc.
16904
16905 And voilà! At this point we have the complete set of build tools that
16906 the GNU Build System expects. These are in the @code{%final-inputs}
16907 variable of the @code{(gnu packages commencement)} module, and are
16908 implicitly used by any package that uses @code{gnu-build-system}
16909 (@pxref{Build Systems, @code{gnu-build-system}}).
16910
16911
16912 @unnumberedsubsec Building the Bootstrap Binaries
16913
16914 @cindex bootstrap binaries
16915 Because the final tool chain does not depend on the bootstrap binaries,
16916 those rarely need to be updated. Nevertheless, it is useful to have an
16917 automated way to produce them, should an update occur, and this is what
16918 the @code{(gnu packages make-bootstrap)} module provides.
16919
16920 The following command builds the tarballs containing the bootstrap
16921 binaries (Guile, Binutils, GCC, libc, and a tarball containing a mixture
16922 of Coreutils and other basic command-line tools):
16923
16924 @example
16925 guix build bootstrap-tarballs
16926 @end example
16927
16928 The generated tarballs are those that should be referred to in the
16929 @code{(gnu packages bootstrap)} module mentioned at the beginning of
16930 this section.
16931
16932 Still here? Then perhaps by now you've started to wonder: when do we
16933 reach a fixed point? That is an interesting question! The answer is
16934 unknown, but if you would like to investigate further (and have
16935 significant computational and storage resources to do so), then let us
16936 know.
16937
16938 @node Porting
16939 @section Porting to a New Platform
16940
16941 As discussed above, the GNU distribution is self-contained, and
16942 self-containment is achieved by relying on pre-built ``bootstrap
16943 binaries'' (@pxref{Bootstrapping}). These binaries are specific to an
16944 operating system kernel, CPU architecture, and application binary
16945 interface (ABI). Thus, to port the distribution to a platform that is
16946 not yet supported, one must build those bootstrap binaries, and update
16947 the @code{(gnu packages bootstrap)} module to use them on that platform.
16948
16949 Fortunately, Guix can @emph{cross compile} those bootstrap binaries.
16950 When everything goes well, and assuming the GNU tool chain supports the
16951 target platform, this can be as simple as running a command like this
16952 one:
16953
16954 @example
16955 guix build --target=armv5tel-linux-gnueabi bootstrap-tarballs
16956 @end example
16957
16958 For this to work, the @code{glibc-dynamic-linker} procedure in
16959 @code{(gnu packages bootstrap)} must be augmented to return the right
16960 file name for libc's dynamic linker on that platform; likewise,
16961 @code{system->linux-architecture} in @code{(gnu packages linux)} must be
16962 taught about the new platform.
16963
16964 Once these are built, the @code{(gnu packages bootstrap)} module needs
16965 to be updated to refer to these binaries on the target platform. That
16966 is, the hashes and URLs of the bootstrap tarballs for the new platform
16967 must be added alongside those of the currently supported platforms. The
16968 bootstrap Guile tarball is treated specially: it is expected to be
16969 available locally, and @file{gnu/local.mk} has rules do download it for
16970 the supported architectures; a rule for the new platform must be added
16971 as well.
16972
16973 In practice, there may be some complications. First, it may be that the
16974 extended GNU triplet that specifies an ABI (like the @code{eabi} suffix
16975 above) is not recognized by all the GNU tools. Typically, glibc
16976 recognizes some of these, whereas GCC uses an extra @code{--with-abi}
16977 configure flag (see @code{gcc.scm} for examples of how to handle this).
16978 Second, some of the required packages could fail to build for that
16979 platform. Lastly, the generated binaries could be broken for some
16980 reason.
16981
16982 @c *********************************************************************
16983 @include contributing.texi
16984
16985 @c *********************************************************************
16986 @node Acknowledgments
16987 @chapter Acknowledgments
16988
16989 Guix is based on the @uref{http://nixos.org/nix/, Nix package manager},
16990 which was designed and
16991 implemented by Eelco Dolstra, with contributions from other people (see
16992 the @file{nix/AUTHORS} file in Guix.) Nix pioneered functional package
16993 management, and promoted unprecedented features, such as transactional
16994 package upgrades and rollbacks, per-user profiles, and referentially
16995 transparent build processes. Without this work, Guix would not exist.
16996
16997 The Nix-based software distributions, Nixpkgs and NixOS, have also been
16998 an inspiration for Guix.
16999
17000 GNU@tie{}Guix itself is a collective work with contributions from a
17001 number of people. See the @file{AUTHORS} file in Guix for more
17002 information on these fine people. The @file{THANKS} file lists people
17003 who have helped by reporting bugs, taking care of the infrastructure,
17004 providing artwork and themes, making suggestions, and more---thank you!
17005
17006
17007 @c *********************************************************************
17008 @node GNU Free Documentation License
17009 @appendix GNU Free Documentation License
17010 @cindex license, GNU Free Documentation License
17011 @include fdl-1.3.texi
17012
17013 @c *********************************************************************
17014 @node Concept Index
17015 @unnumbered Concept Index
17016 @printindex cp
17017
17018 @node Programming Index
17019 @unnumbered Programming Index
17020 @syncodeindex tp fn
17021 @syncodeindex vr fn
17022 @printindex fn
17023
17024 @bye
17025
17026 @c Local Variables:
17027 @c ispell-local-dictionary: "american";
17028 @c End: