mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
45 lines
1.7 KiB
Nix
45 lines
1.7 KiB
Nix
{
|
|
programs.firefox = {
|
|
enable = true;
|
|
policies = {
|
|
DisableTelemetry = true;
|
|
DisableFirefoxStudies = true;
|
|
DisablePocket = true;
|
|
DisableFirefoxAccounts = true;
|
|
OfferToSaveLogins = false;
|
|
PasswordManagerEnabled = false;
|
|
ExtensionSettings = {
|
|
# KeePassXC-Browser
|
|
"keepassxc-browser@keepassxc.org" = {
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/keepassxc-browser/latest.xpi";
|
|
installation_mode = "normal_installed";
|
|
};
|
|
# Vimium C
|
|
"vimium-c@gdh1995.cn" = {
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/vimium-c/latest.xpi";
|
|
installation_mode = "normal_installed";
|
|
};
|
|
# uBlock Origin
|
|
"uBlock0@raymondhill.net" = {
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
|
|
installation_mode = "normal_installed";
|
|
};
|
|
# RoGold
|
|
"{048bba8c-c62d-4967-963d-d663cae75d3f}" = {
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/rogold/latest.xpi";
|
|
installation_mode = "normal_installed";
|
|
};
|
|
# RoSeal
|
|
"{f4f4223a-ff30-4961-b9c0-6a71b7a32aaf}" = {
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/roseal/latest.xpi";
|
|
installation_mode = "normal_installed";
|
|
};
|
|
# Raindrop.io
|
|
"jid0-adyhmvsP91nUO8pRv0Mn2VKeB84@jetpack" = {
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/raindropio/latest.xpi";
|
|
installation_mode = "normal_installed";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|