From 8715cfe47cb9c32dabcf8d9671bc333f5a66a96b Mon Sep 17 00:00:00 2001 From: Sense T Date: Thu, 29 Jun 2023 08:39:38 +0800 Subject: [PATCH] use proxychains with wsproxy --- global/software-configuration.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/global/software-configuration.nix b/global/software-configuration.nix index 4bd5064..d88837b 100644 --- a/global/software-configuration.nix +++ b/global/software-configuration.nix @@ -59,6 +59,19 @@ }; }; + proxychains = { + enable = true; + quietMode = true; + proxies = { + default = { + type = "socks5"; + port = 1089; + host = "127.0.0.1"; + enable = true; + }; + }; + }; + git.enable = true; zsh.enable = true; light.enable = true;