My custom guix package files
Find a file
Tom Willemse 401dc308f1
Fix import for latest Guix
The package ‘go-golang-org-x-sys’ was moved from ‘(gnu packages golang)’ to
‘(gnu packages golang-build)’.
2024-03-12 12:15:46 -07:00
oni/packages Fix import for latest Guix 2024-03-12 12:15:46 -07:00
.guix-authorizations Add ‘.guix-authorizations’ 2021-06-22 20:54:41 -07:00
README.org Add guix-home instructions in README 2023-03-30 23:11:11 -07:00
scsh-nonstring-search-path.patch Add patch file for SCSH 2022-11-17 22:35:33 -08:00

My Guix Packages

To use this channel (although I dont see why you would want to) add the following channel to your channels.scm:

  (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"))))

Or, if you're using Guix Home to configure your user profile, you can do it like this:

  (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"))))))))
   ;; ...
   )