tor: added tor client
This commit is contained in:
parent
88e751e41a
commit
591fc79ada
20
profiles/tor-client.nix
Normal file
20
profiles/tor-client.nix
Normal 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
|
||||
];
|
||||
|
||||
}
|
Loading…
Reference in a new issue