From b84cc156236ecd4fbe0c9d458e46078df625cb47 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 11 Sep 2024 03:34:29 -0700 Subject: Bump: move networking module --- modules/software/networking/tor.nix | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 modules/software/networking/tor.nix (limited to 'modules/software/networking/tor.nix') diff --git a/modules/software/networking/tor.nix b/modules/software/networking/tor.nix deleted file mode 100644 index dfbfb3a..0000000 --- a/modules/software/networking/tor.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ pkgs, ... }: -{ - services.tor = { - enable = true; - torsocks.enable = true; - - client = { - enable = true; - dns.enable = true; - }; - }; - - programs.proxychains = { - enable = true; - quietMode = false; - proxyDNS = true; - package = pkgs.proxychains-ng; - - proxies = { - tor = { - type = "socks5"; - host = "127.0.0.1"; - port = 9050; - }; - }; - }; -} -- cgit v1.2.3