diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-03-21 21:38:19 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-03-21 21:38:19 -0400 |
commit | 49b350fafc2c3ea1db66461b73d4e304cd13ec92 (patch) | |
tree | 9b9b1a4a383b5175241ae6b91b83de0590f13983 /doc/guix-cookbook.texi | |
parent | 03b5668a035ba96c9690476078c5ee1d5793f3e2 (diff) | |
parent | e584a093f943be216fdc93895281fde835836b8d (diff) |
Merge branch 'master' into staging.
Diffstat (limited to 'doc/guix-cookbook.texi')
-rw-r--r-- | doc/guix-cookbook.texi | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/guix-cookbook.texi b/doc/guix-cookbook.texi index d2ce525998..d89ce66017 100644 --- a/doc/guix-cookbook.texi +++ b/doc/guix-cookbook.texi @@ -7,6 +7,9 @@ @settitle GNU Guix Cookbook @c %**end of header +@c Onion service for ci.guix.gnu.org. +@set SUBSTITUTE-TOR-URL https://4zwzi66wwdaalbhgnix55ea3ab4pvvw66ll2ow53kjub6se4q2bclcyd.onion + @copying Copyright @copyright{} 2019 Ricardo Wurmus@* Copyright @copyright{} 2019 Efraim Flashner@* @@ -2354,7 +2357,8 @@ follow: config => (guix-configuration (inherit config) ;; ci.guix.gnu.org's Onion service - (substitute-urls "https://bp7o7ckwlewr4slm.onion") + (substitute-urls + "@value{SUBSTITUTE-TOR-URL}") (http-proxy "http://localhost:9250"))))))) @end lisp @@ -2372,7 +2376,8 @@ want to get a substitute from the Tor tunnel run: @example sudo herd set-http-proxy guix-daemon http://localhost:9250 -guix build --substitute-urls=https://bp7o7ckwlewr4slm.onion … +guix build \ + --substitute-urls=@value{SUBSTITUTE-TOR-URL} @dots{} @end example @node Setting up NGINX with Lua |