infrastructure/home/applications/firefox.nix

26 lines
668 B
Nix
Raw Normal View History

2023-12-15 15:18:36 +00:00
{...}: {
programs.firefox = {
2023-04-08 13:53:58 +00:00
enable = true;
profiles = {
laurent = {
isDefault = true;
settings = {
"browser.startup.page" = 3; # always restore tabs
"privacy.donottrackheader.enabled" = true;
"browser.ctrlTab.sortByRecentlyUsed" = true; # change Ctrl+Tab behaviour
"general.autoScroll" = true;
# enable vertical tabs
"sidebar.revamp" = true;
"sidebar.verticalTabs" = true;
"sidebar.visibility" = "hide-sidebar";
};
userChrome = ''
#titlebar {
display: none !important;
}
'';
};
2023-04-08 13:53:58 +00:00
};
};
}