Skip to content

Commit

Permalink
systems: Add rde channel
Browse files Browse the repository at this point in the history
  • Loading branch information
daviwil committed Oct 3, 2021
1 parent 0e034eb commit 9c459d3
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 29 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ fonts/truetype/.uuid
.config/shepherd/init.scm
.config/mimeapps.list
.bin/update-screens
.bin/update-channels
.config/dunst/dunstrc
.config/polybar/player-status.sh
.config/polybar/config
Expand All @@ -48,6 +47,7 @@ fonts/truetype/.uuid
.emacs.d/tangle-dotfiles.el
.bin/update-dotfiles
.bin/sync-dotfiles
.bin/update-channels
.bin/update-profiles
.bin/activate-profiles
.config/guix/systems/install.scm
Expand All @@ -62,7 +62,7 @@ fonts/truetype/.uuid
.config/guix/systems/base-system.scm
.config/guix/systems/base-system.scm
.config/guix/channels.scm
.config/guix/channels.scm
.config/guix/base-channels.scm
.config/guix/manifests/mail.scm
.mbsyncrc
.emacs.d/lisp/dw-mail.el
Expand Down
62 changes: 35 additions & 27 deletions Systems.org
Original file line number Diff line number Diff line change
Expand Up @@ -44,33 +44,41 @@ I also generate my real =.config/guix/channels.scm= file based on this =base-cha

#+begin_src scheme :tangle .config/guix/base-channels.scm

;; NOTE: This file is generated from ~/.dotfiles/System.org. Please see commentary there.

(list (channel
(name 'channel-x)
(url "file:///home/daviwil/Projects/Code/channel-x"))
(channel
(name 'flat)
(url "https://github.com/flatwhatson/guix-channel.git")
(commit
"7b8353ebbcf486e3344924d1cac0fa7ba47c371d")
(introduction
(make-channel-introduction
"33f86a4b48205c0dc19d7c036c85393f0766f806"
(openpgp-fingerprint
"736A C00E 1254 378B A982 7AF6 9DBE 8265 81B6 4490"))))
(channel
(name 'nonguix)
(url "https://gitlab.com/nonguix/nonguix"))
(channel
(name 'guix)
(url "https://git.savannah.gnu.org/git/guix.git")
;; (url "file:///home/daviwil/Projects/Code/guix"))
(introduction
(make-channel-introduction
"9edb3f66fd807b096b48283debdcddccfea34bad"
(openpgp-fingerprint
"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))))
;; NOTE: This file is generated from ~/.dotfiles/System.org. Please see commentary there.

(list (channel
(name 'channel-x)
(url "file:///home/daviwil/Projects/Code/channel-x"))
(channel
(name 'flat)
(url "https://github.com/flatwhatson/guix-channel.git")
(commit
"7b8353ebbcf486e3344924d1cac0fa7ba47c371d")
(introduction
(make-channel-introduction
"33f86a4b48205c0dc19d7c036c85393f0766f806"
(openpgp-fingerprint
"736A C00E 1254 378B A982 7AF6 9DBE 8265 81B6 4490"))))
(channel
(name 'rde)
(url "https://git.sr.ht/~abcdw/rde")
(introduction
(make-channel-introduction
"257cebd587b66e4d865b3537a9a88cccd7107c95"
(openpgp-fingerprint
"2841 9AC6 5038 7440 C7E9 2FFA 2208 D209 58C1 DEB0"))))
(channel
(name 'nonguix)
(url "https://gitlab.com/nonguix/nonguix"))
(channel
(name 'guix)
(url "https://git.savannah.gnu.org/git/guix.git")
;; (url "file:///home/daviwil/Projects/Code/guix"))
(introduction
(make-channel-introduction
"9edb3f66fd807b096b48283debdcddccfea34bad"
(openpgp-fingerprint
"BBB0 2DDF 2CEA F6A8 0D1D E643 A2A0 6DF2 A33A 54FA")))))

#+end_src

Expand Down

0 comments on commit 9c459d3

Please sign in to comment.