switched to librewolf

This commit is contained in:
ISnortPennies 2022-08-10 22:01:28 -04:00 committed by ISnortPennies
parent 30b43b8bc7
commit 2b7d2bf54e
3 changed files with 20 additions and 20 deletions

View file

@ -0,0 +1,19 @@
{pkgs, ...}:{
programs = {
librewolf = {
enable = true;
settings = {
"webgl.disabled" = true;
"media.peerconnection.ice.no_host" = false;
"identity.fxaccounts.enabled" = true;
"browser.sessionstore.resume_from_crash" = false;
"security.OCSP.require" = false;
"network.dns.disableIPv6" = true;
"privacy.resistFingerprinting" = true;
"privacy.resistFingerprinting.letterboxing" = true;
"privacy.clearOnShutdown.history" = true;
"privacy.clearOnShutdown.downloads" = true;
};
};
};
}