mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
20 lines
485 B
Nix
20 lines
485 B
Nix
# 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;
|
|
};
|
|
};
|
|
};
|
|
}
|