mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
20 lines
592 B
Nix
20 lines
592 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;
|
|
};
|
|
};
|
|
};
|
|
}
|