summaryrefslogtreecommitdiff
path: root/channels.scm
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-18 14:49:03 +0100
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2024-03-18 14:49:03 +0100
commitad88bd01fca5702cd15b63a5d12b29a3404a2454 (patch)
tree4ed4838a8f70887ca46b6145eb00cdeb3f5a6750 /channels.scm
parent6f180b491f201596e82435ebda7ea48cfe14d57a (diff)
Modularize the channel list in the channels file
Diffstat (limited to 'channels.scm')
-rw-r--r--channels.scm8
1 files changed, 5 insertions, 3 deletions
diff --git a/channels.scm b/channels.scm
index 220de19..fef2618 100644
--- a/channels.scm
+++ b/channels.scm
@@ -37,8 +37,10 @@
(url "https://git.marekpasnikowski.pl/git/guix.git")
(introduction guix*-introduction)))
+(define channels
+ (list deployment distribution guix*))
+
(define-public izumi-channels-service-type
- (service home-channels-service-type
- (list deployment distribution guix*)))
+ (service home-channels-service-type channels))
-(list deployment distribution guix*)
+channels