diff options
-rw-r--r-- | channels.scm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/channels.scm b/channels.scm index f346bcd..3245237 100644 --- a/channels.scm +++ b/channels.scm @@ -55,8 +55,21 @@ (name name) (url url))))) +(define ruby-sweet-moon + (let* ((fingerprint "590E 500F E39D 26B3 E60B 743B 6D81 B120 7711 899F") + (make-channel-introduction + (make-channel-introduction + "1c15421c443c6e1f741c285e58e848beb6754048" + (openpgp-fingerprint fingerprint)))) + (channel + (name 'ruby-sweet-moon) + (url "https://git.marekpasnikowski.pl/git/sweet-moon.git") + (branch "guix") + (introduction make-channel-introduction)))) + (define-public izumi-channels-service-type (service home-channels-service-type (list deployment guix ruby-babosa - ruby-nano-bots))) + ruby-nano-bots + ruby-sweet-moon))) |