nixos-config/home/modules/firefox/tor-browser.nix
Felix Schröter 371c136b38
feat: add modules for Firefox-based browsers
Mullvad Browser module works as expected.
Firefox & Tor Browser might still have some issues.
2023-04-15 00:47:18 +02:00

13 lines
389 B
Nix

{ config, lib, pkgs, ... }:
let common = import ./common.nix { inherit config lib pkgs; };
in common.mkModule {
name = "tor-browser";
displayName = "Tor Browser";
# @TODO is this correct?
dataConfigPath = ".local/share/tor-browser/TorBrowser/Data/Browser";
defaultPackage = pkgs.tor-browser-bundle-bin;
defaultPackageName = "pkgs.tor-browser-bundle-bin";
isSecure = true;
}