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