From 4d7b08c7ac5fd57cc3d042dc29e597b2cefb815c Mon Sep 17 00:00:00 2001 From: Rutherther Date: Fri, 16 Aug 2024 12:53:03 +0200 Subject: [PATCH] fix: add nonguix channel introduction --- channels.scm | 32 +++++++++++++++++++------------- 1 file changed, 19 insertions(+), 13 deletions(-) diff --git a/channels.scm b/channels.scm index deafcea..d0c65e1 100644 --- a/channels.scm +++ b/channels.scm @@ -1,15 +1,21 @@ -(list - (channel - (name 'nonguix) - (url "https://gitlab.com/nonguix/nonguix") - (branch "master")) +(define-module (channels) + #:use-module (guix channels)) - (channel - (name 'ruther) - (url "https://github.com/Rutherther/guix-exprs") - (branch "main")) +(define-public my-channels + (cons* + (channel + (name 'nonguix) + (url "https://gitlab.com/nonguix/nonguix") + (branch "master") + (introduction + (make-channel-introduction + "897c1a470da759236cc11798f4e0a5f7d4d59fbc" + (openpgp-fingerprint + "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) + (channel + (name 'ruther) + (url "https://github.com/Rutherther/guix-exprs") + (branch "main")) + %default-channels)) - (channel - (name 'guix) - (url "https://git.savannah.gnu.org/git/guix.git") - (branch "master"))) +my-channels -- 2.48.1