50 lines
1.5 KiB
Nix
50 lines
1.5 KiB
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.firefox = {
|
|
enable = true;
|
|
package = pkgs.librewolf;
|
|
|
|
policies = {
|
|
DisableTelemetry = true;
|
|
DisableFirefoxStudies = true;
|
|
DisablePocket = true;
|
|
DisableFirefoxAccounts = true;
|
|
|
|
ExtensionSettings = {
|
|
# Bitwarden
|
|
"{446900e4-71c2-419f-a6a7-df9c091e268b}" = {
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/bitwarden-password-manager/latest.xpi";
|
|
installation_mode = "force_installed";
|
|
};
|
|
|
|
# Floccus
|
|
"floccus@handmadeideas.org" = {
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/floccus/latest.xpi";
|
|
installation_mode = "force_installed";
|
|
};
|
|
|
|
# uBlock Origin
|
|
"uBlock0@raymondhill.net" = {
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
|
|
installation_mode = "force_installed";
|
|
};
|
|
|
|
# Catppuccin Theme
|
|
"{15cb5e64-94bd-41aa-91cf-751bb1a84972}" = {
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/catppuccin-macchiato-lavender2/latest.xpi";
|
|
installation_mode = "force_installed";
|
|
};
|
|
};
|
|
|
|
# General Preferences
|
|
Preferences = {
|
|
"browser.startup.homepage" = "about:home";
|
|
"browser.toolbars.bookmarks.visibility" = "newtab";
|
|
"privacy.resistFingerprinting.letterboxing" = true;
|
|
"extensions.autoDisableScopes" = 0;
|
|
};
|
|
};
|
|
};
|
|
}
|