summaryrefslogtreecommitdiff
path: root/modules/tor.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/tor.nix')
-rw-r--r--modules/tor.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/modules/tor.nix b/modules/tor.nix
deleted file mode 100644
index bef081c..0000000
--- a/modules/tor.nix
+++ /dev/null
@@ -1,41 +0,0 @@
-{ pkgs, ... }:
-{
- # networking.proxy.default = "https://127.0.0.1:8118";
- services = {
- tor = {
- enable = true;
- # openFirewall = true;
- torsocks.enable = true;
- # torsocks.allowInbound = true;
- client.enable = true;
- # client = {
- # enable = true;
- # dns.enable = true;
- # };
-
- # settings.DNSPort = [{
- # addr = "127.0.0.1";
- # port = 53;
- # }];
-
- # torsocks.enable = true;
- };
- privoxy = {
- enable = true;
- enableTor = true;
- };
- };
-
- environment.systemPackages = with pkgs; [
- tor
- torsocks
- tor-browser
- torctl
- vanguards
- tractor
- onioncircuits
- oniux
- ];
-
- # networking.nameservers = [ "127.0.0.1" ];
-}