nixos-config/config/programs/firefox.nix

37 lines
966 B
Nix
Raw Normal View History

2023-10-10 08:14:59 +00:00
{
pkgs,
firefox,
...
}: {
2022-01-18 13:12:43 +00:00
programs.firefox = {
enable = true;
profiles = {
unhardened = {
id = 1;
};
default = {
userChrome = ''
/* Hide tab bar in FF Quantum */
@-moz-document url("chrome://browser/content/browser.xul") {
#TabsToolbar {
visibility: collapse !important;
margin-bottom: 21px !important;
}
#sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
visibility: collapse !important;
}
}
'';
2022-06-13 09:12:58 +00:00
settings = {
"font.default.x-western" = "sans-serif";
"font.name-list.monospace.x-western" = "monospace, nasin-nanpa";
"font.name-list.sans-serif.x-western" = "sans-serif, nasin-nanpa";
"font.name-list.serif.x-western" = "sans-serif, nasin-nanpa";
};
id = 0;
};
};
2022-01-18 13:12:43 +00:00
};
2022-01-19 08:28:39 +00:00
}