diff options
-rw-r--r-- | channels.scm | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/channels.scm b/channels.scm index 8fb8dd8..220de19 100644 --- a/channels.scm +++ b/channels.scm @@ -22,27 +22,23 @@ mbakke-fingerprint)) (define deployment - (channel - (name 'deployment) - (url "https://git.marekpasnikowski.pl/git/deployment.git") - (introduction deployment-introduction))) + (channel (name 'deployment) + (url "https://git.marekpasnikowski.pl/git/deployment.git") + (introduction deployment-introduction))) (define distribution - (channel - (name 'distribution) - (url "https://git.marekpasnikowski.pl/git/distribution.git") - (introduction distribution-introduction))) + (channel (name 'distribution) + (url "https://git.marekpasnikowski.pl/git/distribution.git") + (introduction distribution-introduction))) (define guix* - (channel - (name 'guix) - (branch "private") - (url "https://git.marekpasnikowski.pl/git/guix.git") - (introduction guix*-introduction))) + (channel (name 'guix) + (branch "private") + (url "https://git.marekpasnikowski.pl/git/guix.git") + (introduction guix*-introduction))) (define-public izumi-channels-service-type - (service - home-channels-service-type - (list deployment distribution guix*))) + (service home-channels-service-type + (list deployment distribution guix*))) (list deployment distribution guix*) |