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 + ]; + +}