infrastructure/home/applications/firefox.nix

17 lines
402 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;
};
};
2023-04-08 13:53:58 +00:00
};
};
}