summaryrefslogtreecommitdiff
path: root/channels.scm
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-18 16:54:15 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-18 16:54:15 +0100
commitc2ed6a90f3cdbc725b572b87687a981b20b0ae7c (patch)
tree7f83d05ea9503d7ac3e5a746fd6280d760db3f2b /channels.scm
parente27a011b1a4d77b710973d66b3917ae0da26a2e1 (diff)
In preparation of multiple systems, name the channel list appropriately
Diffstat (limited to 'channels.scm')
-rw-r--r--channels.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/channels.scm b/channels.scm
index 37f535d..01a80f6 100644
--- a/channels.scm
+++ b/channels.scm
@@ -45,14 +45,15 @@
;;; Channel lists
-(define channels
+(define izumi-channels
(list deployment distribution guix*))
;;; Channel services
(define-public izumi-channels-service-type
- (service home-channels-service-type channels))
+ (service home-channels-service-type
+ izumi-channels))
;;; Testing data
-channels
+izumi-channels