firefox override is back to normal

This commit is contained in:
xenofem 2024-11-21 03:08:14 -05:00
parent 00b84a4d8f
commit c7e4f2ab00
2 changed files with 5 additions and 6 deletions

View file

@ -2,11 +2,11 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1731676054,
"narHash": "sha256-OZiZ3m8SCMfh3B6bfGC/Bm4x3qc1m2SVEAlkV6iY7Yg=",
"lastModified": 1732014248,
"narHash": "sha256-y/MEyuJ5oBWrWAic/14LaIr/u5E0wRVzyYsouYY3W6w=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "5e4fbfb6b3de1aa2872b76d49fafc942626e2add",
"rev": "23e89b7da85c3640bbc2173fe04f4bd114342367",
"type": "github"
},
"original": {

View file

@ -9,14 +9,14 @@
packages.x86_64-linux = rec {
default = firefox-patched-unwrapped;
firefox-patched-unwrapped = (pkgs.firefox-unwrapped.override (prev: { buildMozillaMach = args: ((prev.buildMozillaMach args).override ({
firefox-patched-unwrapped = (pkgs.firefox-unwrapped.override {
geolocationSupport = false;
googleAPISupport = false;
drmSupport = false;
requireSigning = false;
allowAddonSideload = true;
})).overrideAttrs (oldAttrs: rec {
}).overrideAttrs (oldAttrs: rec {
patches = oldAttrs.patches ++ [
# I want to preconfigure the search engine settings to make
# DuckDuckGo the default search engine and remove most of the
@ -33,7 +33,6 @@
./allow-debugging.patch
];
});
}));
};
overlay = final: prev: {