diff --git a/.config/guix/channels.scm b/.config/guix/channels.scm new file mode 100644 index 00000000..9c7fe335 --- /dev/null +++ b/.config/guix/channels.scm @@ -0,0 +1,14 @@ +(use-modules (srfi srfi-1)) + +(cons* (channel + (name 'guix-chromium) + (url "https://gitlab.com/mbakke/guix-chromium.git") + (branch "master")) + ;; The following channel can be used as an alternative to + ;; %default-channels to avoid rebuilding Guix on =guix pull=. + ;; (list + ;; (channel + ;; (inherit (first %default-channels)) + ;; ;; Get commit from =guix describe -f channels=. + ;; (commit "6df215f8c8ad0ed4afd8c32a0414cf2ac7ec8983"))) + %default-channels)