nixos/home-manager/firefox.nix
Noratrieb 9427f3dc3e update firefox profile name
this accidentally deleted all my browser date because i did this wrong
2024-10-27 11:45:23 +01:00

40 lines
912 B
Nix

{ pkgs, ... }: {
programs.firefox = {
enable = true;
profiles = {
nora = {
id = 0;
name = "nora";
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";
}
];
}
];
};
};
};
}