1
0
forked from extern/nix-config
donovanglover-nix-config/applications/librewolf/default.nix
2023-06-04 21:27:03 -04:00

22 lines
471 B
Nix

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