We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f426344 commit 6f91b26Copy full SHA for 6f91b26
Linux/guix.channels.keyless.scm
@@ -0,0 +1,19 @@
1
+(use-modules (guix ci)
2
+ (guix channels))
3
+
4
+(define %guix-mirror-channel
5
+ (channel
6
+ (name 'guix)
7
+ (url "https://github.com/Millak/guix")))
8
9
+(define %nonguix-channel
10
11
+ (name 'nonguix)
12
+ (url "https://gitlab.com/nonguix/nonguix")))
13
14
+(append (list (channel-with-substitutes-available
15
+ %guix-mirror-channel
16
+ "https://ci.guix.gnu.org"))
17
+ (list (channel-with-substitutes-available
18
+ %nonguix-channel
19
+ "https://ci.guix.gnu.org")))
0 commit comments