From d2302af01d27d7eaf9f93af590b73f3d96581ba7 Mon Sep 17 00:00:00 2001 From: SouthFox Date: Tue, 26 Nov 2024 15:16:47 +0800 Subject: [PATCH] [feat] use mirror to avoid DDOS... Signed-off-by: SouthFox --- channels.scm | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/channels.scm b/channels.scm index 413b075..cc701b0 100644 --- a/channels.scm +++ b/channels.scm @@ -1,4 +1,7 @@ -(append (list (channel - (name 'fox-channel) - (url "https://git.southfox.me/southfox/guix-config"))) - %default-channels) +(list (channel + (inherit (car %default-channels)) + (url "https://git.southfox.me/mirror/guix")) + (channel + (name 'fox-channel) + (url "https://git.southfox.me/southfox/guix-config")) + )