nixos/home-manager/librewolf.nix
2022-08-16 00:14:40 -04:00

19 lines
591 B
Nix

{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;
};
};
};
}