nixos-config/home/modules/firefox/tor-browser.nix

19 lines
344 B
Nix
Raw Normal View History

2024-05-26 16:45:38 +02:00
{
config,
lib,
pkgs,
...
}:
2024-05-26 16:45:38 +02:00
let
common = import ./common.nix { inherit config lib pkgs; };
in
common.mkModule {
name = "tor-browser";
displayName = "Tor Browser";
2024-03-07 20:01:02 +01:00
dataConfigPath = ".tor project/firefox";
defaultPackage = pkgs.tor-browser-bundle-bin;
defaultPackageName = "pkgs.tor-browser-bundle-bin";
isSecure = true;
}