2021-06-23 06:07:24 +02:00
|
|
|
|
#+TITLE: My Guix Packages
|
|
|
|
|
|
|
|
|
|
To use this channel (although I don’t see why you would want to) add the following channel to your =channels.scm=:
|
|
|
|
|
|
|
|
|
|
#+begin_src scheme
|
|
|
|
|
(channel
|
|
|
|
|
(name 'oni)
|
2023-03-31 08:10:44 +02:00
|
|
|
|
(url "https://code.ryuslash.org/ryuslash/guix-packages.git")
|
2021-06-23 06:07:24 +02:00
|
|
|
|
(introduction
|
|
|
|
|
(make-channel-introduction
|
|
|
|
|
"646573578b7adfbff415645fed201269076cebf6"
|
|
|
|
|
(openpgp-fingerprint
|
|
|
|
|
"061C C5C4 D936 C9A8 AECC 1A17 7D5C 407B 4350 25C1"))))
|
|
|
|
|
#+end_src
|
2023-03-31 08:11:11 +02:00
|
|
|
|
|
|
|
|
|
Or, if you're using Guix Home to configure your user profile, you can do it like this:
|
|
|
|
|
|
|
|
|
|
#+begin_src scheme
|
|
|
|
|
(use-modules ((gnu home services guix)
|
|
|
|
|
#:select (home-channels-service-type))
|
|
|
|
|
((gnu home)
|
|
|
|
|
#:select (home-environment))
|
|
|
|
|
((gnu services)
|
|
|
|
|
#:select (simple-service))
|
|
|
|
|
((guix channels)
|
|
|
|
|
#:select (channel
|
|
|
|
|
make-channel-introduction
|
|
|
|
|
openpgp-fingerprint)))
|
|
|
|
|
|
|
|
|
|
(home-environment
|
|
|
|
|
(services
|
|
|
|
|
(list
|
|
|
|
|
(simple-service
|
|
|
|
|
'my-channel-service
|
|
|
|
|
home-channels-service-type
|
|
|
|
|
(list
|
|
|
|
|
(channel
|
|
|
|
|
(name 'oni)
|
|
|
|
|
(url "https://code.ryuslash.org/ryuslash/guix-packages.git")
|
|
|
|
|
(introduction
|
|
|
|
|
(make-channel-introduction
|
|
|
|
|
"646573578b7adfbff415645fed201269076cebf6"
|
|
|
|
|
(openpgp-fingerprint
|
|
|
|
|
"061C C5C4 D936 C9A8 AECC 1A17 7D5C 407B 4350 25C1"))))))))
|
|
|
|
|
;; ...
|
|
|
|
|
)
|
|
|
|
|
#+end_src
|