This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/firefox/default.nix

64 lines
1.5 KiB
Nix
Raw Normal View History

2024-01-19 11:17:30 +00:00
{
config,
inputs,
pkgs,
...
}: {
2022-11-14 11:58:04 +00:00
programs.firefox = {
enable = true;
2024-01-19 11:17:30 +00:00
# package = inputs.firefox-nightly.packages.${pkgs.system}.firefox-nightly-bin;
2023-12-31 23:48:18 +00:00
profiles.${config.home.username} = {
extensions = with config.nur.repos.rycee.firefox-addons; [
augmented-steam
2024-01-11 03:47:13 +00:00
bitwarden
blocktube
2023-12-31 23:48:18 +00:00
bypass-paywalls-clean
darkreader
gruvbox-dark-theme
2024-01-11 03:47:13 +00:00
indie-wiki-buddy
istilldontcareaboutcookies
2023-12-31 23:48:18 +00:00
nitter-redirect
2024-01-11 03:47:13 +00:00
privacy-badger
2023-12-31 23:48:18 +00:00
redirector
2024-01-11 03:47:13 +00:00
return-youtube-dislikes
2023-12-31 23:48:18 +00:00
sponsorblock
2024-01-11 03:47:13 +00:00
stylus
tampermonkey
2023-12-31 23:48:18 +00:00
ublock-origin
youtube-shorts-block
];
settings = {
2024-01-11 03:47:13 +00:00
"general.smoothScroll" = false;
2023-12-31 23:48:18 +00:00
"media.hardwaremediakeys.enabled" = false;
};
2024-01-11 03:47:13 +00:00
bookmarks = [
{
toolbar = true;
bookmarks = [
{
name = "NixOS";
bookmarks = [
{
name = "NixOS Search";
url = "https://search.nixos.org";
}
{
name = "Home Manager Options List";
url = "https://nix-community.github.io/home-manager/options.xhtml";
}
{
name = "Home Manager Options Search";
url = "https://mipmip.github.io/home-manager-option-search";
}
];
}
];
}
];
2023-12-31 23:48:18 +00:00
};
2022-11-14 11:58:04 +00:00
};
2024-01-15 09:34:41 +00:00
}