From aaa21d78cf30e4f1a670a0b897801c0f95f5b16d Mon Sep 17 00:00:00 2001 From: bdunahu Date: Mon, 5 Jan 2026 01:23:35 -0700 Subject: Configure hel to use non-guix channel (home-channels-service-type) --- kolwynia/channels.scm | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 kolwynia/channels.scm (limited to 'kolwynia/channels.scm') diff --git a/kolwynia/channels.scm b/kolwynia/channels.scm new file mode 100644 index 0000000..a638d25 --- /dev/null +++ b/kolwynia/channels.scm @@ -0,0 +1,42 @@ +;;; Copyright © 2026 bdunahu +(define-module (kolwynia channels) + #:use-module (guix channels) + #:export (guix + tanelorn + nonguix)) + +;;; Commentary: +;;; Code: + +(define guix + (channel + (name 'guix) + (url "https://codeberg.org/guix/guix") + (branch "master") + (introduction + (make-channel-introduction + "9edb3f66fd807b096b48283debdcddccfea34bad" + (openpgp-fingerprint + "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))))) + +(define tanelorn + (channel + (name 'tanelorn) + (url "https://git.operationnull.com/tanelorn.git") + (introduction + (make-channel-introduction + "3960d45383c672f8aacab8e354824793256c9d29" + (openpgp-fingerprint + "5550 5CA6 9DE5 D342 7F31 F9AE 5F86 6C65 2A34 C996"))))) + +(define nonguix + (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"))))) + +;;; channels.scm ends here -- cgit v1.2.3