tor: added tor client

This commit is contained in:
Serĉanto de Scio 2021-09-28 15:51:51 +10:00
parent 88e751e41a
commit 591fc79ada
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

20
profiles/tor-client.nix Normal file
View file

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