diff options
author | Thanos Apollo <[email protected]> | 2024-11-10 14:24:30 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-11-10 14:24:30 +0200 |
commit | 0e97c641bcfd33df07ba56a92cc79ea4749e0c88 (patch) | |
tree | 5b66a1670cb52763108ea79a37bfb6dffe0e5ad8 /.config | |
parent | c8d431920f0a2d69bc208d2897570106c737f2fa (diff) |
guix: move channels.scm under .config/guix
Diffstat (limited to '.config')
-rw-r--r-- | .config/guix/channels.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/.config/guix/channels.scm b/.config/guix/channels.scm new file mode 100644 index 0000000..4c01a9f --- /dev/null +++ b/.config/guix/channels.scm @@ -0,0 +1,29 @@ +(cons* + (channel + (name 'nonguix) + (url "https://gitlab.com/nonguix/nonguix") + (introduction + (make-channel-introduction + "897c1a470da759236cc11798f4e0a5f7d4d59fbc" + (openpgp-fingerprint + "2A39 3FFF 68F4 EF7A 3D29 12AF 6F51 20A0 22FB B2D5")))) + (channel + (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")))) + (channel + (name 'hecate) + ;; (url "https://git.thanosapollo.org/hecate") + (url (string-append "file://" (getenv "HOME") + "/Dev/guile/hecate")) + (introduction + (make-channel-introduction + "6d40e319e46eddc6a3e1a97b1dd1dafedb785889" + (openpgp-fingerprint + "62B7 58D0 F671 9938 BC09 CECA 339F 736C 3A72 0928")))) + %default-channels) |