Revert "Firefox: add proton-pass, remove browserpass and simplelogin"

This reverts commit db7d968f49.
This commit is contained in:
Evie Litherland-Smith 2024-10-05 16:24:23 +01:00
parent db7d968f49
commit 9864acd7e9

View file

@ -1,7 +1,12 @@
{ pkgs, ... }:
{
stylix.targets.firefox.profileNames = [ "default" ];
programs.firefox = {
programs = {
browserpass = {
enable = true;
browsers = [ "firefox" ];
};
firefox = {
enable = true;
policies = {
BlockAboutProfiles = true;
@ -39,10 +44,15 @@
installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
};
# Proton Pass
"78272b6fa58f4a1abaac99321d503a20@proton.me" = {
# Browserpass
"browserpass@maximbaz.com" = {
installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/proton-pass/latest.xpi";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/browserpass-ce/latest.xpi";
};
# SimpleLogin
"addon@simplelogin" = {
installation_mode = "force_installed";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/simplelogin/latest.xpi";
};
# Consent-O-Matic
"gdpr@cavi.au.dk" = {
@ -202,4 +212,5 @@
};
};
};
};
}