From f98af9aeef1d2529940006d6ff5b3a49725c2268 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Thu, 17 Aug 2023 12:37:58 +0200 Subject: [PATCH] Don't set all_proxy --- m/common/net.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/m/common/net.nix b/m/common/net.nix index b2c09ca8..9d6a28a2 100644 --- a/m/common/net.nix +++ b/m/common/net.nix @@ -13,6 +13,9 @@ proxy = { default = "http://localhost:23080/"; noProxy = "127.0.0.1,localhost,internal.domain"; + # Don't set all_proxy as go complains and breaks the gitlab runner, see: + # https://github.com/golang/go/issues/16715 + allProxy = null; }; firewall = {