Christopher Baines <m...@cbaines.net> writes: > Hey, > > While I've been working on the software side of building things for > substitutes through the Guix Build Coordinator for over a year now [1], > I've only been personally pushing to bring the benefits to Guix users by > default for the last few weeks [2]. > > 1: https://lists.gnu.org/archive/html/guix-devel/2020-04/msg00323.html > 2: https://lists.gnu.org/archive/html/guix-devel/2021-05/msg00020.html > > The strategy that currently seems most feasible is to add an additional > default source of substitutes: bordeaux.guix.gnu.org. > > I think things are pretty much ready, you can find some information at > https://bordeaux.guix.gnu.org/ . If you're up for trying out fetching > substitutes from bordeaux.guix.gnu.org, now is a good time to do so, and > please report back in terms of how it's working out for you.
For those of you like me, who have trouble setting up the signing key, here is a snippet that you can use to set up substitutes from bordeaux.guix.gnu.org: #BEGIN_SRC scheme (define %my-desktop-services (modify-services %desktop-services (guix-service-type config => (guix-configuration (inherit config) (substitute-urls (append (list "https://bordeaux.guix.gnu.org/") %default-substitute-urls)) (authorized-keys (append (list (plain-file "bordeaux.guix.gnu.org.signing.key" " (public-key (ecc (curve Ed25519) (q #7D602902D3A2DBB83F8A0FB98602A754C5493B0B778C8D1DD4E0F41DE14DE34F#) ) )")) %default-authorized-guix-keys)))))) (operating-system ... (services (append (list (service dhcp-client-service-type) (service openssh-service-type (openssh-configuration (openssh openssh-sans-x) (port-number 2222)))) %my-desktop-services))) #+END_SRC P.S. Thanks to Christopher for helping me set this up in irc! -- Joshua Branson (joshuaBPMan in #guix) Sent from Emacs and Gnus https://gnucode.me https://video.hardlimit.com/accounts/joshua_branson/video-channels https://propernaming.org "You can have whatever you want, as long as you help enough other people get what they want." - Zig Ziglar