rice/programs/firefox.nix

36 lines
717 B
Nix
Raw Normal View History

{
config,
2023-05-02 10:17:29 +00:00
lib,
pkgs,
...
}: {
home-manager.users.buffet = {
programs.firefox = {
enable = true;
package = pkgs.firefox-wayland;
profiles."buffet" = {
extensions = with config.nur.repos.rycee.firefox-addons; [
config.nur.repos.rycee.firefox-addons."10ten-ja-reader"
2023-06-12 10:09:54 +00:00
bitwarden
2023-07-17 14:25:40 +00:00
fediact
istilldontcareaboutcookies
2023-06-12 10:09:54 +00:00
refined-github
sidebery
ublock-origin
];
settings = {
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
};
userChrome = ''
#TabsToolbar {
visibility: collapse !important;
}
'';
};
};
};
}