From bba542d936807d522ab055509ebe63c342ad6f2e Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Tue, 12 Feb 2019 20:02:10 +0100 Subject: [PATCH] config/guix: Init no-rebuild-channel --- .config/guix/channels.scm | 9 --------- .config/guix/no-rebuild-channel.scm | 13 +++++++++++++ 2 files changed, 13 insertions(+), 9 deletions(-) create mode 100644 .config/guix/no-rebuild-channel.scm diff --git a/.config/guix/channels.scm b/.config/guix/channels.scm index 9c7fe335..9b15eab5 100644 --- a/.config/guix/channels.scm +++ b/.config/guix/channels.scm @@ -1,14 +1,5 @@ -(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) diff --git a/.config/guix/no-rebuild-channel.scm b/.config/guix/no-rebuild-channel.scm new file mode 100644 index 00000000..aa52fe92 --- /dev/null +++ b/.config/guix/no-rebuild-channel.scm @@ -0,0 +1,13 @@ +(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"))))