feat(firefox): Use betterfox

This commit is contained in:
js0ny 2025-11-15 02:39:56 +00:00
parent f80d83bbd7
commit 28797f148f
12 changed files with 273 additions and 118 deletions

View file

@ -0,0 +1,20 @@
# Run nightly:
# nix run "github:nix-community/flake-firefox-nightly#firefox-nightly-bin"
{...}: {
imports = [
./addons.nix
./search.nix
./betterfox.nix
];
programs.firefox = {
enable = true;
profiles.default = {
settings = {
"extensions.update.enabled" = true;
"sidebar.expandOnHover" = true;
"sidebar.visibility" = "expand-on-hover";
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
};
};
};
}