Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 878 Bytes

tips.org

File metadata and controls

41 lines (28 loc) · 878 Bytes

一些技巧

国内网络环境使用 guix pull

Guix源码仓库地址:

在国内网络环境访问官方的Git仓库可能会很慢,很慢的情况下可以使用国内的镜像。

拷贝Guix仓库到本地

git clone https://mirror.guix.org.cn/git/guix.git

保持源码更新

# 同步仓库的更新到本地
cd /path/to/guix && git pull
# 然后运行 guix pull

使用本地的Guix源码运行 guix pull

命令行参数方法:

guix pull --url=/path/to/guix

配置文件方法:

${HOME}/.config/guix/channels.scm 写入以下内容:

(list (channel
       (name 'guix)
       (url "/path/to/guix")))