mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 04:44:03 +01:00
3119b789f8
Alejandra is written in Rust, has more tests than nixfmt, and handles non-trivial code examples in Nix better.
24 lines
505 B
Nix
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;
|
|
};
|
|
};
|
|
}
|
|
];
|
|
}
|