From 591fc79ada18cfc94848a661be36a1a167df2df7 Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Tue, 28 Sep 2021 15:51:51 +1000 Subject: [PATCH] tor: added tor client --- profiles/tor-client.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 profiles/tor-client.nix diff --git a/profiles/tor-client.nix b/profiles/tor-client.nix new file mode 100644 index 0000000..ef1d4d7 --- /dev/null +++ b/profiles/tor-client.nix @@ -0,0 +1,20 @@ +# NixOps configuration for the hosts running TOR clients + +{ config, pkgs, lib, ... }: + +{ + + services = { + tor = { + enable = true; + client = { + enable = true; + }; + }; + }; + + environment.systemPackages = with pkgs; [ + torbrowser + ]; + +}