mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
251581d3a8
Don't know when the default option for this was changed but it should help prevent accidentally closing the browser.
22 lines
520 B
Nix
22 lines
520 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.urlbar.suggest.history" = false;
|
|
|
|
"sidebar.position_start" = false;
|
|
"findbar.highlightAll" = true;
|
|
};
|
|
};
|
|
}
|