Added firefox extensions

This commit is contained in:
LarsZauberer 2024-04-17 15:56:38 +02:00
commit f07cd55c58
2 changed files with 32 additions and 22 deletions

View file

@ -61,6 +61,14 @@
install_url = "https://addons.mozilla.org/firefox/downloads/file/4231522/new_tab_override-16.0.0.xpi"; install_url = "https://addons.mozilla.org/firefox/downloads/file/4231522/new_tab_override-16.0.0.xpi";
installation_mode = "force_installed"; installation_mode = "force_installed";
}; };
"keepassxc-browser@keepassxc.org" = {
install_url = "https://addons.mozilla.org/firefox/downloads/file/4257616/keepassxc_browser-1.9.0.3.xpi";
installation_mode = "force_installed";
};
"{7be2ba16-0f1e-4d93-9ebc-5164397477a9}" = {
install_url = "https://addons.mozilla.org/firefox/downloads/file/3756025/videospeed-0.6.3.3.xpi";
installation_mode = "force_installed";
};
}; };
}; };

View file

@ -18,7 +18,7 @@ in {
enable = true; enable = true;
policies = { policies = {
DisableTelemetry = true; DisableTelemetry = true;
DisableFirefoxStudies = true; DisableFirefoxStudies = true;
EnableTrackingProtection = { EnableTrackingProtection = {
Value= true; Value= true;
@ -36,28 +36,30 @@ in {
DisplayBookmarksToolbar = "never"; # alternatives: "always" or "newtab" DisplayBookmarksToolbar = "never"; # alternatives: "always" or "newtab"
DisplayMenuBar = "default-off"; # alternatives: "always", "never" or "default-on" DisplayMenuBar = "default-off"; # alternatives: "always", "never" or "default-on"
SearchBar = "unified"; # alternative: "separate" SearchBar = "unified"; # alternative: "separate"
FirefoxSuggest = { FirefoxSuggest = {
WebSuggestions = true; WebSuggestions = true;
ImproveSuggest = true; ImproveSuggest = true;
Locked = true; Locked = true;
}; };
SearchSuggestEnabled = true; SearchSuggestEnabled = true;
theme = { theme = {
colors = { colors = {
background-darker = "181825"; background-darker = "181825";
background = "1e1e2e"; background = "1e1e2e";
foreground = "cdd6f4"; foreground = "cdd6f4";
}; };
}; };
font = "Lexend"; OfferToSaveLogins = false;
ExtensionSettings = lib.mkMerge [{
"uBlock0@raymondhill.net" = { font = "Lexend";
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"; ExtensionSettings = lib.mkMerge [{
installation_mode = "force_installed"; "uBlock0@raymondhill.net" = {
}; install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
} cfg.extensions]; installation_mode = "force_installed";
}; };
} cfg.extensions];
};
}; };
}; };
}; };