about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2024-04-10 13:04:08 +0200
committerAlyssa Ross <hi@alyssa.is>2024-04-10 20:41:59 +0200
commitc8aee4b4363b6bf905a521b05b7476960e8286c8 (patch)
treed1404aa0ed0012aae053454b7dff5dc29e9cd8b2 /modules
parenta25e46a66224b6fdbeddd1027e651a5ef88d88d2 (diff)
downloadnixlib-c8aee4b4363b6bf905a521b05b7476960e8286c8.tar
nixlib-c8aee4b4363b6bf905a521b05b7476960e8286c8.tar.gz
nixlib-c8aee4b4363b6bf905a521b05b7476960e8286c8.tar.bz2
nixlib-c8aee4b4363b6bf905a521b05b7476960e8286c8.tar.lz
nixlib-c8aee4b4363b6bf905a521b05b7476960e8286c8.tar.xz
nixlib-c8aee4b4363b6bf905a521b05b7476960e8286c8.tar.zst
nixlib-c8aee4b4363b6bf905a521b05b7476960e8286c8.zip
sys/atuin: disable tor
I don't have the spare CPU for this any more. :(
Diffstat (limited to 'modules')
-rw-r--r--modules/server/tor/default.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/server/tor/default.nix b/modules/server/tor/default.nix
deleted file mode 100644
index 3e93309835b6..000000000000
--- a/modules/server/tor/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ lib, config, ... }:
-
-{
-  networking.firewall.allowedTCPPorts = [ 143 ];
-
-  services.tor.enable = true;
-
-  services.tor.settings.AccountingMax =
-    lib.mkDefault (throw "Set tor accountingMax!!");
-
-  services.tor.settings.AccountingStart =
-    lib.mkDefault (throw "Set tor accountingStart!!");
-
-  services.tor.relay.enable = true;
-  services.tor.relay.role = "relay";
-  services.tor.settings.ContactInfo = "hi@alyssa.is";
-  services.tor.settings.Nickname = lib.mkDefault config.networking.hostName;
-  services.tor.settings.ORPort = [ 143 ];
-}