mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 09:24:17 +01:00
23 lines
535 B
Nix
23 lines
535 B
Nix
{
|
|
programs.librewolf = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
"middlemouse.paste" = false;
|
|
|
|
"ui.use_activity_cursor" = true;
|
|
|
|
"privacy.resistFingerprinting.letterboxing" = true;
|
|
|
|
"browser.download.useDownloadDir" = true;
|
|
"browser.fullscreen.autohide" = false;
|
|
"browser.tabs.insertAfterCurrent" = true;
|
|
"browser.toolbars.bookmarks.visibility" = "never";
|
|
"browser.quitShortcut.disabled" = true;
|
|
|
|
"sidebar.position_start" = false;
|
|
"findbar.highlightAll" = true;
|
|
};
|
|
};
|
|
}
|