nix-config/modules/librewolf/default.nix
Donovan Glover 3119b789f8
nix: Format with alejandra
Alejandra is written in Rust, has more tests than nixfmt, and handles
non-trivial code examples in Nix better.
2023-06-05 20:50:10 -04:00

24 lines
505 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;
};
};
}
];
}