switched to librewolf

This commit is contained in:
ISnortPennies 2022-08-10 22:01:28 -04:00 committed by ISnortPennies
parent 30b43b8bc7
commit 2b7d2bf54e
3 changed files with 20 additions and 20 deletions

View file

@ -1,19 +0,0 @@
{pkgs, ...}:{
programs = {
firefox = {
enable = true;
profiles = {
gerg = {
name = "gerg";
extraConfig = ( builtins.readFile
(pkgs.fetchFromGitHub {
owner = "ISnortPennies";
repo = "user.js";
rev = "master";
sha256 = "9hmYqb5R8KOILNYylTspMr6CEmlLMg24JCGDFH0KA9k=";
} + "/user.js") );
};
};
};
};
}

View file

@ -1,7 +1,7 @@
{config, pkgs, ...}: {config, pkgs, ...}:
{ {
imports = [ imports = [
./firefox.nix ./librewolf.nix
./bspwm.nix ./bspwm.nix
./sxhkd.nix ./sxhkd.nix
./rofi.nix ./rofi.nix

View file

@ -0,0 +1,19 @@
{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;
};
};
};
}