mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 00:03:55 +01:00
0f5f85c61d
Removes the useless DuckDuckGo suggestion when starting a search with "d".
29 lines
782 B
Nix
29 lines
782 B
Nix
{
|
|
programs.librewolf = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
"middlemouse.paste" = false;
|
|
|
|
"ui.use_activity_cursor" = true;
|
|
|
|
"browser.download.useDownloadDir" = true;
|
|
"browser.tabs.insertAfterCurrent" = true;
|
|
"browser.tabs.warnOnClose" = true;
|
|
"browser.toolbars.bookmarks.visibility" = "never";
|
|
"browser.quitShortcut.disabled" = true;
|
|
"browser.sessionstore.restore_pinned_tabs_on_demand" = true;
|
|
|
|
"browser.urlbar.suggest.bookmark" = false;
|
|
"browser.urlbar.suggest.engines" = false;
|
|
"browser.urlbar.suggest.history" = false;
|
|
"browser.urlbar.suggest.topsites" = false;
|
|
|
|
"sidebar.position_start" = false;
|
|
"findbar.highlightAll" = true;
|
|
|
|
"xpinstall.signatures.required" = false;
|
|
};
|
|
};
|
|
}
|