infrastructure/home/applications/firefox.nix
2024-06-15 17:17:27 +02:00

17 lines
402 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;
};
};
};
};
}