diff options
author | Christopher Baines <mail@cbaines.net> | 2020-03-01 20:56:37 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-03-08 23:35:03 +0000 |
commit | d8ab68b92941ca0286697b87a88254023a0b2dc9 (patch) | |
tree | 08ce1fcc385d39fb52f9303320988bad79f59207 /doc | |
parent | 67d21e2b08f61972b79e643bd7de1c65a8002837 (diff) | |
download | patches-d8ab68b92941ca0286697b87a88254023a0b2dc9.tar patches-d8ab68b92941ca0286697b87a88254023a0b2dc9.tar.gz |
services: guix-data-service: Allow passing extra options.
This is so that the options supported by the service configuration don't have
to always be changed. Generally though all options should be explicitly
supported and documented, so this is mostly to facilitate experimentation.
* gnu/services/guix.scm (<guix-data-service-configuration>): Add extra-options
and extra-process-jobs-options to the record type.
(guix-data-service-shepherd-services): Handle these new configuration record
fields.
* doc/guix.texi (Guix Data Service): Document these new options.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index 2278cb6a53..b192118566 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -25250,6 +25250,12 @@ If set, this is the @code{getmail-retriever-configuration} object with which to configure getmail to fetch mail from the guix-commits mailing list. +@item @code{extra-options} (default: @var{'()}) +Extra command line options for @code{guix-data-service}. + +@item @code{extra-process-jobs-options} (default: @var{'()}) +Extra command line options for @code{guix-data-service-process-jobs}. + @end table @end deftp |