7 lines
125 B
Nix
7 lines
125 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
tor-browser-bundle-bin
|
|
];
|
|
services.tor.enable = true;
|
|
}
|