2023-04-14 22:24:19 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
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";
|
2023-04-14 22:24:19 +02:00
|
|
|
defaultPackage = pkgs.tor-browser-bundle-bin;
|
|
|
|
defaultPackageName = "pkgs.tor-browser-bundle-bin";
|
|
|
|
isSecure = true;
|
|
|
|
}
|