services: guix: #:authorize-hydra-key? now defaults to #t.
* gnu/services/base.scm (guix-service): Change AUTHORIZE-HYDRA-KEY? default value to #t.
This commit is contained in:
parent
ca79e42ea2
commit
02bb6b45e4
|
@ -4385,7 +4385,7 @@ settings.
|
|||
|
||||
@deffn {Monadic Procedure} guix-service [#:guix guix] @
|
||||
[#:builder-group "guixbuild"] [#:build-accounts 10] @
|
||||
[#:authorize-hydra-key? #f] [#:use-substitutes? #t] @
|
||||
[#:authorize-hydra-key? #t] [#: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}.
|
||||
|
|
|
@ -598,7 +598,7 @@ GUIX."
|
|||
failed to register hydra.gnu.org public key: ~a~%" status))))))))
|
||||
|
||||
(define* (guix-service #:key (guix guix) (builder-group "guixbuild")
|
||||
(build-accounts 10) authorize-hydra-key?
|
||||
(build-accounts 10) (authorize-hydra-key? #t)
|
||||
(use-substitutes? #t)
|
||||
(extra-options '()))
|
||||
"Return a service that runs the build daemon from @var{guix}, and has
|
||||
|
|
Loading…
Reference in New Issue