From 1ed36e0d171cc7552c543f609982cf50ccc1992c Mon Sep 17 00:00:00 2001 From: TakeV Date: Sat, 8 Jul 2023 22:37:20 -0700 Subject: [PATCH] Add example channels.scm --- README.org | 2 +- channels.scm | 12 ++++++++++++ hall.scm | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) create mode 100644 channels.scm diff --git a/README.org b/README.org index ee321f0..6bcb7ce 100644 --- a/README.org +++ b/README.org @@ -6,7 +6,7 @@ Utilities to make programming with guix feel like ~magic~. * Install -Currently, the only way to install is with guix. Add this repo as a channel: +Currently, the only way to install is with guix. Add this repo as a channel to your channels.scm: #+BEGIN_SRC scheme (channel diff --git a/channels.scm b/channels.scm new file mode 100644 index 0000000..a4a4ad1 --- /dev/null +++ b/channels.scm @@ -0,0 +1,12 @@ +; Example channnels.scm. +; This file can also be passed as a -C parameter to guix pull/time-machine + +(cons (channel + (name 'guix-cantrips) + (url "https://git.solarpunk.moe/TakeV/guix-cantrips.git") + (branch "main") + (introduction + (make-channel-introduction "eae81890ad657de402acd7e2013f4f02376a7bf0" + (openpgp-fingerprint + "1086 326D E207 068C 1C02 5129 A64F 4134 5C74 00AF")))) + %default-channels) diff --git a/hall.scm b/hall.scm index c663ee4..deae680 100644 --- a/hall.scm +++ b/hall.scm @@ -12,7 +12,7 @@ (dependencies `(("guile-git" ,guile-git) ("guile-config" ,guile-config))) - (skip (".envrc")) + (skip (".envrc" "channels.scm")) (files (libraries ((directory "guix-cantrips"