Building now but hm can't start

This commit is contained in:
Bryan Ramos 2023-06-06 21:00:19 -04:00
parent 85ef84040e
commit a2c480f5d9
6 changed files with 41 additions and 29 deletions

View file

@ -0,0 +1,33 @@
{ pkgs, ... }:
{
isDefault = true;
search.default = "Startpage";
extensions = with pkgs.nur.repos.rycee.firefox-addons; [
ublock-origin
darkreader
keepassxc-browser
multi-account-containers
];
settings = {
"extensions.activeThemeID" = "firefox-compact-dark@mozilla.org";
"dom.security.https_only_mode" = true;
"media.peerconnection.enabled" = false;
"browser.formfill.enable" = false;
"privacy.sanitize.sanitizeOnShutdown" = true;
"toolkit.telemetry.enabled" = false;
"toolkit.telemetry.archive.enabled" = false;
"datareporting.healthreport.uploadEnabled" = false;
"browser.ping-centre.telemetry" = false;
"privacy.resistFingerprinting" = true;
"privacy.trackingprotection.fingerprinting.enabled" = true;
"privacy.trackingprotection.cryptomining.enabled" = true;
"geo.enabled" = false;
"privacy.trackingprotection.enabled" = true;
};
}