channel

My GNU Guix channel
Log | Files | Refs | README

commit 28fc834342ea3616f01246e39f8e776bd5f92b6e
Author: Luke Willis <lukejw@loquat.dev>
Date:   Tue, 17 Jun 2025 21:00:32 -0400

Setup channels

Diffstat:
Aloquat/channels.scm | 29+++++++++++++++++++++++++++++
1 file changed, 29 insertions(+), 0 deletions(-)

diff --git a/loquat/channels.scm b/loquat/channels.scm @@ -0,0 +1,29 @@ +(define-module (loquat channels) + #:use-module (gnu services base) + #:use-module (guix channels) + #:use-module (guix gexp)) + +(define %loquat-channels + (cons* (channel + (name 'nonguix) + (url "https://gitlab.com/nonguix/nonguix") + (introduction + (make-channel-introduction + "897c1a470da759236cc11798f4e0a5f7d4d59fbc" + (openpgp-fingerprint + "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) + %default-channels)) + +(define %loquat-substitute-urls + `(,@%default-substitute-urls + "https://nonguix-proxy.ditigal.xyz")) ;; This is a temporary proxy. + +(define %loquat-authorized-guix-keys + (cons* + (plain-file "nonguix.pub" "\ +(public-key + (ecc + (curve Ed25519) + (q #C1FD53E5D4CE971933EC50C9F307AE2171A2D3B52C804642A7A35F84F3A4EA98#)))") + %default-authorized-guix-keys)) +