nix-config/home/librewolf.nix
Donovan Glover 251581d3a8
librewolf: Ensure warning on close when multiple tabs
Don't know when the default option for this was changed but it should
help prevent accidentally closing the browser.
2024-03-30 12:24:48 -04:00

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;
};
};
}