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
{
2022-03-07 14:26:15 +00:00
config,
pkgs,
lib,
...
}: {
2021-09-28 05:51:51 +00:00
services = {
tor = {
enable = true;
2022-03-07 14:26:15 +00:00
client = {enable = true;};
2021-09-28 05:51:51 +00:00
};
};
2022-03-07 14:26:15 +00:00
environment.systemPackages = with pkgs; [torbrowser];
2021-09-28 05:51:51 +00:00
}