summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--channels.scm34
1 files changed, 20 insertions, 14 deletions
diff --git a/channels.scm b/channels.scm
index cfc6d61..7b0ae94 100644
--- a/channels.scm
+++ b/channels.scm
@@ -1,32 +1,38 @@
-( define-module ( channels )
- #:use-module ( gnu home services guix )
- #:use-module ( gnu services )
- #:use-module ( guix channels ) )
+(define-module (channels)
+ #:use-module (gnu home services guix)
+ #:use-module (gnu services)
+ #:use-module (guix channels))
(define marekpasnikowski-fingerprint
- "590E 500F E39D 26B3 E60B 743B 6D81 B120 7711 899F")
+ (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"))
+
+(define deployment-introduction
+ (make-channel-introduction "c24ce7cb11e74da13d491f9de3c4b7040a069f43"
+ marekpasnikowski-fingerprint))
+
+(define guix*-introduction
+ (make-channel-introduction "9edb3f66fd807b096b48283debdcddccfea34bad"
+ mbakke-fingerprint))
(define deployment
(channel
(name 'deployment)
(url "https://git.marekpasnikowski.pl/git/deployment.git")
- (introduction
- (make-channel-introduction
- "c24ce7cb11e74da13d491f9de3c4b7040a069f43"
- (openpgp-fingerprint marekpasnikowski-fingerprint)))))
+ (introduction deployment-introduction)))
(define guix*
(channel
(name 'guix)
(branch "private")
(url "https://git.marekpasnikowski.pl/git/guix.git")
- (introduction
- (make-channel-introduction
- "9edb3f66fd807b096b48283debdcddccfea34bad" ;2020-05-26
- (openpgp-fingerprint ;mbakke
- "BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))))
+ (introduction guix*-introduction)))
(define-public izumi-channels-service-type
(service
home-channels-service-type
(list deployment guix*)))
+
+(list deployment guix*)