summaryrefslogtreecommitdiff
path: root/modules/tor.nix
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2025-12-18 21:04:00 +0100
committeradikro <adikro@disroot.org>2025-12-18 21:04:00 +0100
commite60410393cea222b16743a1a87f29c06b9b3543b (patch)
tree8a574048613f6b13024795bd710b824b40f5db18 /modules/tor.nix
parentea3bf9c87ee72d6da5ea2316b229082c7fc9cdf6 (diff)
rewrite of system modules, hm modules are next
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" ];
-}