diff --git a/hydra/nginx/html/bordeaux/index.html b/hydra/nginx/html/bordeaux/index.html index a74f2e2..f6c904b 100644 --- a/hydra/nginx/html/bordeaux/index.html +++ b/hydra/nginx/html/bordeaux/index.html @@ -36,7 +36,7 @@ arm-linux-gnueabihf availability is limited.

-

Using these substiutes

+

Using these substitutes

The URL to use to fetch substitutes is https://bordeaux.guix.gnu.org, and they're signed with the following key. @@ -47,5 +47,45 @@ ) )

+ +

On a Guix System

+

+ Users of Guix System can start using these substitutes with a + bit of scheme code that looks like: + +

(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)))
+