I can't keep writing these comments, they're boring

This commit is contained in:
KoenDR06 2024-04-02 20:37:37 +00:00
parent 021124b584
commit 517df8e725
7 changed files with 60 additions and 143 deletions

24
pkgs/firefox.nix Normal file
View file

@ -0,0 +1,24 @@
{
config,
pkgs,
...
}: {
programs.firefox = {
enable = true;
policies = {
ExtensionSettings = {
"*".installation_mode = "blocked";
# uBlock Origin:
"uBlock0@raymondhill.net" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
installation_mode = "force_installed";
};
# Bitwarden
"{446900e4-71c2-419f-a6a7-df9c091e268b}" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/bitwarden-password-manager/latest.xpi";
installation_mode = "force_installed";
};
};
};
};
}