blob: d339ba84c447c4b6b6163c3af65940d835d765f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{ lib, config, pkgs, ... }:
{
programs.librewolf = {
enable = lib.mkDefault config.monorepo.profiles.graphics.enable;
package = pkgs.librewolf;
profiles = {
default = {
id = 0;
name = "default";
isDefault = true;
extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
tree-style-tab
firefox-color
vimium
privacy-redirect
] ++ (lib.optional config.monorepo.profiles.crypto.enable pkgs.nur.repos.rycee.firefox-addons.metamask);
settings = {
"privacy.resistFingerprinting.letterboxing" = true;
};
};
};
};
}
|