nixos/home-manager/firefox.nix
Noratrieb 9bf00e43ae Update
Since this brings in new NVidia drivers, also update Firefox to beta
130, which fixes the bug with it.
2024-08-21 13:48:34 +02:00

42 lines
973 B
Nix

{ pkgs, ... }: {
programs.firefox = {
enable = true;
# see configuration.nix
package = pkgs.firefox-beta;
profiles = {
nils = {
id = 0;
name = "nils";
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
bitwarden
tampermonkey
sidebery
darkreader
];
bookmarks = [
{
name = "Nix sites";
toolbar = true;
bookmarks = [
{
name = "NixOS options";
url = "https://search.nixos.org/options";
}
{
name = "home-manager options";
url = "https://rycee.gitlab.io/home-manager/options.html";
}
{
name = "nixpkgs search";
url = "https://search.nixos.org/packages";
}
];
}
];
};
};
};
}