diff options
Diffstat (limited to 'guix')
-rw-r--r-- | guix/channels.scm | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/guix/channels.scm b/guix/channels.scm index 04f7954..524a7cf 100644 --- a/guix/channels.scm +++ b/guix/channels.scm @@ -1,17 +1,18 @@ (cons* (channel (name 'nonguix) (url "https://gitlab.com/nonguix/nonguix") - ;; Enable signature verification: - (introduction + (introduction (make-channel-introduction "897c1a470da759236cc11798f4e0a5f7d4d59fbc" (openpgp-fingerprint "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) (channel - (name 'thanos-channel) - (url (string-append "file://" (getenv "HOME") - "/Dev/guile/guix-channel/"))) - (channel - (name 'guix) - (url "https://git.thanosapollo.org/guix")) + (name 'rosenthal) + (url "https://codeberg.org/hako/rosenthal.git") + (branch "trunk") + (introduction + (make-channel-introduction + "7677db76330121a901604dfbad19077893865f35" + (openpgp-fingerprint + "13E7 6CD6 E649 C28C 3385 4DF5 5E5A A665 6149 17F7")))) %default-channels) |