summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2014-07-14 15:51:22 +0200
committerLudovic Courtès <ludo@gnu.org>2014-07-14 15:51:22 +0200
commitc11a6eb1e5064271c21306de2f4633d83e224320 (patch)
tree190a1d6210f4984525a5b1031c24e5f8a7d13211 /doc
parent55e70e655dfc70ff8c30bcd7161b717f5d9b6a57 (diff)
downloadpatches-c11a6eb1e5064271c21306de2f4633d83e224320.tar
patches-c11a6eb1e5064271c21306de2f4633d83e224320.tar.gz
services: Add options to 'guix-service'.
* gnu/services/base.scm (guix-service): Add #:use-substitutes? and #:extra-options parameters, and honor them. * doc/guix.texi (Base Services): Adjust accordingly.
Diffstat (limited to 'doc')
-rw-r--r--doc/guix.texi10
1 files changed, 9 insertions, 1 deletions
diff --git a/doc/guix.texi b/doc/guix.texi
index 7ea40e5f48..05268f47bf 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -3434,13 +3434,21 @@ settings.
@deffn {Monadic Procedure} guix-service [#:guix guix] @
[#:builder-group "guixbuild"] [#:build-accounts 10] @
- [#:authorize-hydra-key? #f]
+ [#:authorize-hydra-key? #f] [#:use-substitutes? #t] @
+ [#:extra-options '()]
Return a service that runs the build daemon from @var{guix}, and has
@var{build-accounts} user accounts available under @var{builder-group}.
When @var{authorize-hydra-key?} is true, the @code{hydra.gnu.org} public key
provided by @var{guix} is authorized upon activation, meaning that substitutes
from @code{hydra.gnu.org} are used by default.
+
+If @var{use-substitutes?} is false, the daemon is run with
+@option{--no-substitutes} (@pxref{Invoking guix-daemon,
+@option{--no-substitutes}}).
+
+Finally, @var{extra-options} is a list of additional command-line options
+passed to @command{guix-daemon}.
@end deffn
@deffn {Monadic Procedure} udev-service [#:udev udev]