nixos/home-manager/librewolf.nix
ISnortPennies 6b7ce7d133 fixed refreshrate on desktop
switch to neovim as a pager
added parrot and mining modules
deleted amd module
moved the rest of vfio configuration to vfio.nix
moved git from home-manager to system configuration
2023-01-23 23:32:11 -05:00

18 lines
533 B
Nix

{
programs = {
librewolf = {
enable = true;
settings = {
"webgl.disabled" = true;
"media.peerconnection.ice.no_host" = false;
"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;
};
};
};
}