cogd/channels.scm

channels.scm

1
;;; SPDX-FileCopyrightText: 2025 Evgeny Pisemsky <mail@pisemsky.site>
2
;;;
3
;;; SPDX-License-Identifier: GPL-3.0-or-later
4
5
(list (channel
6
       (name 'guix)
7
       (url "https://codeberg.org/guix/guix")
8
       (introduction
9
        (make-channel-introduction
10
         "9edb3f66fd807b096b48283debdcddccfea34bad"
11
         (openpgp-fingerprint
12
          "BBB02DDF2CEAF6A80D1DE643A2A06DF2A33A54FA"))))
13
      (channel
14
       (name 'cogd)
15
       (url "https://repo.pisemsky.site/git/cogd")
16
       (introduction
17
        (make-channel-introduction
18
         "fcdf9f9ce0d8d0ebd035fa55ec7c1ddd6890e728"
19
         (openpgp-fingerprint
20
          "15FF37F790C1BADB35B3752BE3D3B72AB5733021"))))
21
      (channel
22
       (name 'homeassistant)
23
       (url "https://repo.pisemsky.site/git/guix-homeassistant")
24
       (introduction
25
        (make-channel-introduction
26
         "afdbb5ae25c050882424682eb5474baf00589e27"
27
         (openpgp-fingerprint
28
          "15FF37F790C1BADB35B3752BE3D3B72AB5733021")))))
29