config/guix/channels: Init

master
Pierre Neidhardt 2019-02-12 19:52:57 +01:00
parent 3ca98b91dc
commit 04ec97afc2
1 changed files with 14 additions and 0 deletions

14
.config/guix/channels.scm Normal file
View File

@ -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)