32 lines
611 B
Nix
32 lines
611 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home-manager.users.buffet = {
|
|
programs.firefox = {
|
|
enable = true;
|
|
package = pkgs.firefox-wayland;
|
|
|
|
extensions = with config.nur.repos.rycee.firefox-addons; [
|
|
bitwarden
|
|
i-dont-care-about-cookies
|
|
refined-github
|
|
sidebery
|
|
ublock-origin
|
|
];
|
|
|
|
profiles."buffet" = {
|
|
settings = {
|
|
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
|
};
|
|
|
|
userChrome = ''
|
|
#TabsToolbar {
|
|
visibility: collapse !important;
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
}
|