-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
librewolf: defaults to google search engine #344417
Comments
this is concerning to me. not only is google the default search engine, but the problem isn't |
I install the DuckDuckGo extension system-wide, which makes this problem go away for now. I have to do this using Solution approach (click to expand)
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
librewolf
];
programs.firefox = {
enable = true;
policies = {
DisableTelemetry = true;
DisableFirefoxStudies = true;
Preferences = {
"browser.startup.page" = 3; # Open tabs from last session
"cookiebanners.service.mode.privateBrowsing" = 2; # Block cookie banners in private browsing
"cookiebanners.service.mode" = 2; # Block cookie banners
"privacy.donottrackheader.enabled" = true;
"privacy.fingerprintingProtection" = true;
"privacy.resistFingerprinting" = true;
"privacy.trackingprotection.emailtracking.enabled" = true;
"privacy.trackingprotection.enabled" = true;
"privacy.trackingprotection.fingerprinting.enabled" = true;
"privacy.trackingprotection.socialtracking.enabled" = true;
};
ExtensionSettings = {
"jid1-ZAdIEUB7XOzOJw@jetpack" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/duckduckgo-for-firefox/latest.xpi";
installation_mode = "force_installed";
};
"[email protected]" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
installation_mode = "force_installed";
};
};
};
};
} Note that this also installs Firefox. That's part of the game, unfortunately. |
Copied from #338439.
Describe the bug
Default search engine is Google instead of DuckDuckGo.
Steps To Reproduce
Expected behavior
Default search should be DDG, and google shouldn't even be available, per https://librewolf.net/docs/faq/#how-do-i-add-a-search-engine
Screenshots
Additional context
Notify maintainers
@dotlambda @squalus
Metadata
Tested using 33b95d0
Add a 👍 reaction to issues you find important.
The text was updated successfully, but these errors were encountered: