system-configuration/homes/.config/guix/channels.scm

channels.scm

1
(cons*
2
  (channel
3
    (name 'nonguix)
4
    (url "https://gitlab.com/nonguix/nonguix")
5
    (introduction
6
      (make-channel-introduction
7
        "897c1a470da759236cc11798f4e0a5f7d4d59fbc"
8
        (openpgp-fingerprint
9
          "2A39 3FFF 68F4 EF7A 3D29  12AF 6F51 20A0 22FB B2D5"))))
10
  (channel
11
    (name 'guix-gaming-games)
12
    (url "https://gitlab.com/guix-gaming-channels/games.git")
13
    (introduction
14
      (make-channel-introduction
15
        "c23d64f1b8cc086659f8781b27ab6c7314c5cca5"
16
        (openpgp-fingerprint
17
          "50F3 3E2E 5B0C 3D90 0424  ABE8 9BDC F497 A4BB CC7F"))))
18
  #;(channel
19
    (name 'more)
20
    (url "https://git.lepiller.eu/git/guix-more.git"))
21
  %default-channels)
22