From caad40d9d22706e3bf8a4ac77341851e81e05f62 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Mon, 1 Nov 2021 09:42:24 -0400 Subject: [PATCH] services/privoxy: change envvar to networking.proxy --- profiles/services/privoxy.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/profiles/services/privoxy.nix b/profiles/services/privoxy.nix index 5ca6eef..fbae55d 100644 --- a/profiles/services/privoxy.nix +++ b/profiles/services/privoxy.nix @@ -18,8 +18,5 @@ }; }; - environment.variables = { - HTTP_PROXY = config.services.privoxy.settings.listen-address; - HTTPS_PROXY = config.services.privoxy.settings.listen-address; - }; + networking.proxy.default = config.services.privoxy.settings.listen-address; }