mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-08 17:34:03 +01:00
13157341b1
Makes it easier for me to see bookmarks.
24 lines
583 B
Nix
24 lines
583 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;
|
|
"browser.urlbar.suggest.history" = false;
|
|
|
|
"sidebar.position_start" = false;
|
|
"findbar.highlightAll" = true;
|
|
};
|
|
};
|
|
}
|