From 2fbf1f8ee62541c7c0abfc4e358053d5f5398a7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 27 Oct 2020 12:03:56 +0100 Subject: [PATCH] feat: tor --- configs/default.nix | 1 + configs/tor.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 configs/tor.nix diff --git a/configs/default.nix b/configs/default.nix index fbb947c..b79dee2 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -314,6 +314,7 @@ in { ./themes/mac-os.nix ./theming.nix ./tmux.nix + ./tor.nix ./todo-txt.nix ./traadfri.nix ./unclutter.nix diff --git a/configs/tor.nix b/configs/tor.nix new file mode 100644 index 0000000..99115db --- /dev/null +++ b/configs/tor.nix @@ -0,0 +1,4 @@ +{ + services.tor.enable = true; + services.tor.torsocks.enable = true; +}