users/foo-dogsquared: make custom wrapped version of Firefox

This commit is contained in:
Gabriel Arazas 2023-09-04 13:55:29 +08:00
parent 153495b514
commit 8f11ef8b14
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -24,6 +24,34 @@
programs.firefox = {
enable = true;
package = with pkgs; wrapFirefox firefox-unwrapped {
extraPolicies = {
AppAutoUpdate = false;
DisableAppUpdate = true;
DisableMasterPasswordCreation = true;
DisablePocket = true;
DisableSetDesktopBackground = true;
DontCheckDefaultBrowser = true;
FirefoxHome = {
Highlights = false;
Pocket = false;
Snippets = false;
SponsporedPocket = false;
SponsporedTopSites = false;
};
NoDefaultBookmarks = true;
OfferToSaveLoginsDefault = false;
PasswordManagerEnabled = false;
SanitizeOnShutdown = {
Cache = true;
Cookies = true;
FormData = true;
};
UseSystemPrintDialog = true;
};
};
profiles.personal = {
isDefault = true;