diff options
-rw-r--r-- | channels.scm | 8 |
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 |