aboutsummaryrefslogtreecommitdiff
path: root/src/infrastructure/guix/channels.scm
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2022-11-25 16:28:56 -0300
committerEuAndreh <eu@euandre.org>2022-11-25 16:28:56 -0300
commit1a83a3ba00e11a6508880174129a144dec3f1cc0 (patch)
treedd1461effd6c9b03dd1c154ad64f57fe5e175070 /src/infrastructure/guix/channels.scm
parentrm -rf aux/ (diff)
downloadtoph-1a83a3ba00e11a6508880174129a144dec3f1cc0.tar.gz
toph-1a83a3ba00e11a6508880174129a144dec3f1cc0.tar.xz
src/infrastructure/guix/system.scm: Add working version of toph OS
Diffstat (limited to 'src/infrastructure/guix/channels.scm')
-rw-r--r--src/infrastructure/guix/channels.scm20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/infrastructure/guix/channels.scm b/src/infrastructure/guix/channels.scm
new file mode 100644
index 0000000..eb9ef5e
--- /dev/null
+++ b/src/infrastructure/guix/channels.scm
@@ -0,0 +1,20 @@
+(append
+ (list
+ (channel
+ (name 'org-arrobaponto)
+ (url "git://arrobaponto.org/package-repository")
+ (branch "main")
+ (introduction
+ (make-channel-introduction
+ "d749e053e6db365069cb9b2ef47a78b06f9e7361"
+ (openpgp-fingerprint
+ "5BDA E9B8 B2F6 C6BC BB0D 6CE5 81F9 0EC3 CD35 6060"))))
+ (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")))))
+ %default-channels)