From c1b777b689246343357f127c6005b8739365d74c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 29 Mar 2022 20:10:12 +0200 Subject: [PATCH] feat(tor): enable --- configs/default.nix | 1 + configs/tor.nix | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/configs/default.nix b/configs/default.nix index 013b87a..630767c 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -262,5 +262,6 @@ in { ./vscode.nix ./watson.nix ./zsh.nix + ./tor.nix ]; } diff --git a/configs/tor.nix b/configs/tor.nix index 99115db..152f268 100644 --- a/configs/tor.nix +++ b/configs/tor.nix @@ -1,4 +1,4 @@ -{ +{pkgs, ...}: { services.tor.enable = true; - services.tor.torsocks.enable = true; + environment.systemPackages = [pkgs.tor]; }