Skip to content

Commit

Permalink
add firefox extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterStolz committed Nov 3, 2024
1 parent 989fbb6 commit 8a65666
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions home-manager/firefox.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ in
OverridePostUpdatePage = "";

# ---- EXTENSIONS ----
# check about:support for ext ids
ExtensionSettings = {
"*".installation_mode = "blocked"; # blocks all addons except the ones specified below
# uBlock Origin:
Expand All @@ -41,11 +42,20 @@ in
install_url = "https://addons.mozilla.org/firefox/downloads/latest/privacy-badger17/latest.xpi";
installation_mode = "force_installed";
};
# 1Password:
"{d634138d-c276-4fc8-924b-40a0ea21d284}" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/1password-x-password-manager/latest.xpi";
# Bitwarden:
"{446900e4-71c2-419f-a6a7-df9c091e268b}" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/bitwarden-password-manager/latest.xpi";
installation_mode = "force_installed";
};
# I still don't care about cookies
"[email protected]"{
install_url = "https://addons.mozilla.org/firefox/downloads/latest/istilldontcareaboutcookies/latest.xpi";
installation_mode = "force_installed";
}
"@react-devtools"{
install_url = "https://addons.mozilla.org/firefox/downloads/latest/react-devtools/latest.xpi";
installation_mode = "force_installed";
}
};

# ---- PREFERENCES ----
Expand Down

0 comments on commit 8a65666

Please sign in to comment.