nixconfig/home/gui/firefox/default.nix

24 lines
646 B
Nix
Raw Normal View History

2023-04-12 20:32:07 +02:00
{
config,
...
}: {
programs.firefox = {
enable = true;
profiles = {
main = {
id = 0;
settings = {
"browser.uidensity" = 1;
"privacy.trackingprotection.enabled" = true;
"privacy.trackingprotection.socialtracking.enabled" = true;
"privacy.trackingprotection.socialtracking.annotate.enabled" = true;
"services.sync.declinedEngines" = "passwords";
"services.sync.engine.passwords" = false;
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
};
userChrome = builtins.readFile ./userChrome.css;
};
};
};
}