infrastructure/home/applications/firefox.nix

26 lines
668 B
Nix

{...}: {
programs.firefox = {
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;
}
'';
};
};
};
}