From cbca62bc0a73e8de64878d1dcf479bf2c8ffdf54 Mon Sep 17 00:00:00 2001 From: Thanos Apollo Date: Wed, 15 May 2024 07:03:53 +0300 Subject: Move channels.scm under /guix --- guix/channels.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 guix/channels.scm (limited to 'guix') diff --git a/guix/channels.scm b/guix/channels.scm new file mode 100644 index 0000000..04f7954 --- /dev/null +++ b/guix/channels.scm @@ -0,0 +1,17 @@ +(cons* (channel + (name 'nonguix) + (url "https://gitlab.com/nonguix/nonguix") + ;; Enable signature verification: + (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")) + %default-channels) -- cgit v1.2.3