mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-19 03:01:27 +01:00
This allows the sidebar to be used as a reference while the more important content is shown on the left side.
17 lines
466 B
Nix
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;
|
|
};
|
|
};
|
|
}];
|
|
}
|