Firefox fix

This commit is contained in:
LarsZauberer 2024-04-13 19:16:54 +02:00
commit 76e432cc2e
2 changed files with 10 additions and 4 deletions

View file

@ -44,6 +44,12 @@
firefox = {
enable = true;
extensions = {
"support@lastpass.com" = {
install_url = "https://addons.mozilla.org/de/firefox/addon/lastpass-password-manager/";
installation_mode = "force_installed";
};
};
};
};

View file

@ -14,17 +14,17 @@ in {
config = mkIf cfg.enable {
home-manager.users.${username} = {
programs.firefox = lib.mkMerge [{
programs.firefox = {
enable = true;
policies = {
ExtensionSettings = {
ExtensionSettings = lib.mkMerge [{
"uBlock0@raymondhill.net" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
installation_mode = "force_installed";
};
};
} cfg.extensions];
};
} cfg.extensions];
};
};
};
}