mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
feat(firefox): Use betterfox
This commit is contained in:
parent
f80d83bbd7
commit
28797f148f
12 changed files with 273 additions and 118 deletions
20
nixcfgs/users/js0ny/programs/firefox/default.nix
Normal file
20
nixcfgs/users/js0ny/programs/firefox/default.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue