mio-ops/profiles/tor-client.nix
2021-11-16 17:53:38 +10:00

17 lines
247 B
Nix

# NixOps configuration for the hosts running TOR clients
{ config, pkgs, lib, ... }:
{
services = {
tor = {
enable = true;
client = { enable = true; };
};
};
environment.systemPackages = with pkgs; [ torbrowser ];
}