mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-27 08:54:05 -05:00
45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
{pkgs, ...}: {
|
|
programs.chromium = {
|
|
enable = true;
|
|
package = pkgs.google-chrome;
|
|
};
|
|
|
|
programs.firefox = {
|
|
enable = true;
|
|
policies = {
|
|
BlockAboutConfig = true;
|
|
DisableFirefoxStudies = true;
|
|
DisableFormHistory = true;
|
|
DisablePasswordReveal = true;
|
|
DisablePocket = true;
|
|
DisableProfileImport = true;
|
|
DontCheckDefaultBrowser = true;
|
|
EnableTrackingProtection = {
|
|
Value = true;
|
|
Locked = true;
|
|
Cryptomining = true;
|
|
Fingerprinting = true;
|
|
};
|
|
OfferToSaveLogins = false;
|
|
PasswordManagerEnabled = false;
|
|
ExtensionSettings = {
|
|
# Bitwarden
|
|
"{446900e4-71c2-419f-a6a7-df9c091e268b}" = {
|
|
installation_mode = "force_installed";
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/{446900e4-71c2-419f-a6a7-df9c091e268b}/latest.xpl";
|
|
default_area = "navbar";
|
|
};
|
|
"uBlock0@raymondhill.net" = {
|
|
installation_mode = "force_installed";
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/uBlock0@raymondhill.net/latest.xpl";
|
|
default_area = "menupanel";
|
|
};
|
|
"sponsorBlocker@ajay.app" = {
|
|
installation_mode = "force_installed";
|
|
install_url = "https://addons.mozilla.org/firefox/downloads/latest/sponsorBlocker@ajay.app/latest.xpl";
|
|
default_area = "menupanel";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|