1
0
forked from extern/nix-config
donovanglover-nix-config/applications/librewolf/default.nix
2023-05-31 10:39:55 -04:00

16 lines
424 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;
};
};
}];
}