mio-ops/profiles/tor-client.nix

21 lines
267 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
];
}