13 lines
345 B
Nix
13 lines
345 B
Nix
{ ... }: {
|
|
programs.librewolf = {
|
|
enable = true;
|
|
# Enable WebGL, cookies and history
|
|
settings = {
|
|
"webgl.disabled" = false;
|
|
"privacy.resistFingerprinting" = false;
|
|
"privacy.clearOnShutdown.history" = false;
|
|
"privacy.clearOnShutdown.cookies" = false;
|
|
"network.cookie.lifetimePolicy" = 0;
|
|
};
|
|
};
|
|
}
|