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