From 2a17fef2a90bdcedb371e4cd3a6814dd52eb6a2b Mon Sep 17 00:00:00 2001 From: Hilton Chain Date: Wed, 11 Feb 2026 14:20:07 +0800 Subject: [PATCH] examples: Add channels.scm. * modules/rosenthal/examples/guix/channels.scm: New file. --- modules/rosenthal/examples/guix/channels.scm | 26 ++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 modules/rosenthal/examples/guix/channels.scm diff --git a/modules/rosenthal/examples/guix/channels.scm b/modules/rosenthal/examples/guix/channels.scm new file mode 100644 index 0000000..6d06659 --- /dev/null +++ b/modules/rosenthal/examples/guix/channels.scm @@ -0,0 +1,26 @@ +;; info "(guix) Channels" +;; https://guix.gnu.org/manual/devel/en/html_node/Channels.html + +(list (channel + (inherit %default-guix-channel) + (name 'guix) + (url "https://git.guix.gnu.org/guix.git")) + + (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")))) + + (channel + (name 'rosenthal) + (url "https://codeberg.org/hako/rosenthal.git") + (branch "trunk") + (introduction + (make-channel-introduction + "7677db76330121a901604dfbad19077893865f35" + (openpgp-fingerprint + "13E7 6CD6 E649 C28C 3385 4DF5 5E5A A665 6149 17F7")))))