mio-ops/profiles/tor-client.nix

17 lines
247 B
Nix
Raw Normal View History

2021-09-28 05:51:51 +00:00
# NixOps configuration for the hosts running TOR clients
{ config, pkgs, lib, ... }:
{
services = {
tor = {
enable = true;
2021-11-16 04:57:23 +00:00
client = { enable = true; };
2021-09-28 05:51:51 +00:00
};
};
2021-11-16 04:57:23 +00:00
environment.systemPackages = with pkgs; [ torbrowser ];
2021-09-28 05:51:51 +00:00
}