1
0
forked from extern/nix-config
donovanglover-nix-config/applications/librewolf/default.nix
Donovan Glover 508450dd49
librewolf: Show sidebar on right by default
This allows the sidebar to be used as a reference while the more
important content is shown on the left side.
2023-05-31 10:40:11 -04:00

17 lines
466 B
Nix

{
home-manager.sharedModules = [{
programs.librewolf = {
enable = true;
settings = {
"middlemouse.paste" = false;
"browser.download.useDownloadDir" = true;
"ui.use_activity_cursor" = true;
"browser.tabs.insertAfterCurrent" = true;
"browser.toolbars.bookmarks.visibility" = "never";
"privacy.resistFingerprinting.letterboxing" = true;
"sidebar.position_start" = false;
};
};
}];
}