Skip to content

Commit

Permalink
firefox: re-add firefox-addons to extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Jan 25, 2025
1 parent 55f9d31 commit 32d8816
Showing 1 changed file with 18 additions and 21 deletions.
39 changes: 18 additions & 21 deletions modules/home/programs/graphical/browsers/firefox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,27 +26,24 @@ in
options.${namespace}.programs.graphical.browsers.firefox = with types; {
enable = mkBoolOpt false "Whether or not to enable Firefox.";

extensions =
mkOpt (listOf package) [ ]
# (with config.nur.repos.rycee.firefox-addons; [
# angular-devtools
# auto-tab-discard
# bitwarden
# # NOTE: annoying new page and permissions
# # bypass-paywalls-clean
# darkreader
# firefox-color
# firenvim
# onepassword-password-manager
# react-devtools
# reduxdevtools
# sidebery
# sponsorblock
# stylus
# ublock-origin
# user-agent-string-switcher
# ])
"Extensions to install";
extensions = mkOpt (listOf package) (with pkgs.firefox-addons; [
angular-devtools
auto-tab-discard
bitwarden
# NOTE: annoying new page and permissions
# bypass-paywalls-clean
darkreader
firefox-color
firenvim
onepassword-password-manager
react-devtools
reduxdevtools
sidebery
sponsorblock
stylus
ublock-origin
user-agent-string-switcher
]) "Extensions to install";

extraConfig = mkOpt str "" "Extra configuration for the user profile JS file.";
gpuAcceleration = mkBoolOpt false "Enable GPU acceleration.";
Expand Down

0 comments on commit 32d8816

Please sign in to comment.