feat: configure zen browsers extensions and policies
This commit is contained in:
parent
2202cd39cd
commit
b07f9ab600
3 changed files with 91 additions and 0 deletions
43
home.nix
43
home.nix
|
|
@ -286,6 +286,29 @@
|
|||
enable = true;
|
||||
suppressXdgMigrationWarning = true;
|
||||
policies = {
|
||||
DisableTelemetry = true;
|
||||
DisableFirefoxStudies = true;
|
||||
DisablePocket = true;
|
||||
DontCheckDefaultBrowser = true;
|
||||
DisableAppUpdate = true;
|
||||
DisableMasterPasswordCreation = true;
|
||||
DisablePasswordReveal = true;
|
||||
DisableProfileImport = true;
|
||||
ExtensionUpdate = false;
|
||||
OfferToSaveLogins = false;
|
||||
DisableFirefoxAccounts = true;
|
||||
DisableFormHistory = true;
|
||||
DisableSafeMode = true;
|
||||
DisableSetDesktopBackground = true;
|
||||
EnableTrackingProtection = {
|
||||
Value = true;
|
||||
Locked = true;
|
||||
Cryptomining = true;
|
||||
Fingerprinting = true;
|
||||
};
|
||||
HardwareAcceleration = true;
|
||||
NoDefaultBookmarks = true;
|
||||
PasswordManagerEnabled = false;
|
||||
Preferences = {
|
||||
"zen.theme.border-radius" = 0;
|
||||
"zen.theme.content-element-separation" = 0;
|
||||
|
|
@ -293,6 +316,26 @@
|
|||
};
|
||||
profiles.default = {
|
||||
isDefault = true;
|
||||
settings = {
|
||||
"identity.fxaccounts.enabled" = false;
|
||||
};
|
||||
extensions.packages = with pkgs.nur.repos.rycee.firefox-addons; [
|
||||
ublock-origin
|
||||
onepassword-password-manager
|
||||
sponsorblock
|
||||
darkreader
|
||||
vimium
|
||||
return-youtube-dislikes
|
||||
react-devtools
|
||||
firefox-color
|
||||
pay-by-privacy
|
||||
translate-web-pages
|
||||
user-agent-string-switcher
|
||||
copy-selected-tabs-to-clipboard
|
||||
dearrow
|
||||
violentmonkey
|
||||
tst-indent-line
|
||||
];
|
||||
search = {
|
||||
default = "SearXNG";
|
||||
privateDefault = "SearXNG";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue