summaryrefslogtreecommitdiff
path: root/channels.scm
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-18 16:11:34 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-18 16:11:34 +0100
commite27a011b1a4d77b710973d66b3917ae0da26a2e1 (patch)
tree44b2d7093019b43ea295d4b193ca3b13535c9722 /channels.scm
parentad88bd01fca5702cd15b63a5d12b29a3404a2454 (diff)
Comment the channels file
Diffstat (limited to 'channels.scm')
-rw-r--r--channels.scm12
1 files changed, 12 insertions, 0 deletions
diff --git a/channels.scm b/channels.scm
index fef2618..37f535d 100644
--- a/channels.scm
+++ b/channels.scm
@@ -3,12 +3,16 @@
#:use-module (gnu services)
#:use-module (guix channels))
+;;; Fingerprints
+
(define marekpasnikowski-fingerprint
(openpgp-fingerprint "590E 500F E39D 26B3 E60B 743B 6D81 B120 7711 899F"))
(define mbakke-fingerprint
(openpgp-fingerprint "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA"))
+;;; Introductions
+
(define deployment-introduction
(make-channel-introduction "c24ce7cb11e74da13d491f9de3c4b7040a069f43"
marekpasnikowski-fingerprint))
@@ -21,6 +25,8 @@
(make-channel-introduction "9edb3f66fd807b096b48283debdcddccfea34bad"
mbakke-fingerprint))
+;;; Channels
+
(define deployment
(channel (name 'deployment)
(url "https://git.marekpasnikowski.pl/git/deployment.git")
@@ -37,10 +43,16 @@
(url "https://git.marekpasnikowski.pl/git/guix.git")
(introduction guix*-introduction)))
+;;; Channel lists
+
(define channels
(list deployment distribution guix*))
+;;; Channel services
+
(define-public izumi-channels-service-type
(service home-channels-service-type channels))
+;;; Testing data
+
channels