My custom guix package files
Find a file
Tom Willemse f31be59621
Delete ‘remove-temporary-cache’ phase inherited from stumpwm
The originating commit in the Guix project doesn't explain why exactly this is
the right way to go about it, but this package doesn't build with that stage
included.
2023-06-19 23:09:43 -07:00
oni/packages Delete ‘remove-temporary-cache’ phase inherited from stumpwm 2023-06-19 23:09:43 -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"))))))))
   ;; ...
   )