ambevar-dotfiles/.config/guix/no-rebuild-channel.scm

23 lines
702 B
Scheme

(use-modules (srfi srfi-1))
(cons*
(channel
(name 'non-free-applications)
(url "https://gitlab.com/guix-gaming-channels/applications.git")
(branch "master"))
(channel
(name 'non-free-games)
(url "https://gitlab.com/guix-gaming-channels/games.git")
(branch "master"))
(channel
(name 'non-free-duke-nukem-3d)
(url "https://gitlab.com/guix-gaming-channels/duke-nukem-3d.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 "77f3d3036406b1d1ceaeba8017ae5f597f2a0fb4"))))