summaryrefslogtreecommitdiff
path: root/channels.scm
blob: 3fd2601ad130032c96393958eae4212d8faa3f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
( 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")

(define deployment
  (channel
   (name 'deployment)
   (url "https://git.marekpasnikowski.pl/git/deployment.git")
   (introduction
    (make-channel-introduction
     "c24ce7cb11e74da13d491f9de3c4b7040a069f43"
     (openpgp-fingerprint marekpasnikowski-fingerprint)))))

(define-public izumi-channels-service-type
  (service
   home-channels-service-type
   (cons
    %default-guix-channel
    (list deployment))))