mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-18 02:05:51 +03:00
tor-browser-bundle: support passing additional extensions
This commit is contained in:
parent
2651602c17
commit
931da53e50
@ -26,6 +26,7 @@
|
||||
|
||||
# Customization
|
||||
, extraPrefs ? ""
|
||||
, extraExtensions ? [ ]
|
||||
}:
|
||||
|
||||
let
|
||||
@ -42,7 +43,12 @@ let
|
||||
|
||||
extensionsEnv = symlinkJoin {
|
||||
name = "tor-browser-extensions";
|
||||
paths = with firefoxExtensions; [ https-everywhere noscript torbutton tor-launcher ];
|
||||
paths = with firefoxExtensions; [
|
||||
https-everywhere
|
||||
noscript
|
||||
torbutton
|
||||
tor-launcher
|
||||
] ++ extraExtensions;
|
||||
};
|
||||
|
||||
fontsEnv = symlinkJoin {
|
||||
|
Loading…
Reference in New Issue
Block a user