Felix Schröter
371c136b38
Mullvad Browser module works as expected. Firefox & Tor Browser might still have some issues.
13 lines
389 B
Nix
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;
|
|
}
|