firefox override is back to normal
This commit is contained in:
parent
00b84a4d8f
commit
c7e4f2ab00
|
@ -2,11 +2,11 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1731676054,
|
"lastModified": 1732014248,
|
||||||
"narHash": "sha256-OZiZ3m8SCMfh3B6bfGC/Bm4x3qc1m2SVEAlkV6iY7Yg=",
|
"narHash": "sha256-y/MEyuJ5oBWrWAic/14LaIr/u5E0wRVzyYsouYY3W6w=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "5e4fbfb6b3de1aa2872b76d49fafc942626e2add",
|
"rev": "23e89b7da85c3640bbc2173fe04f4bd114342367",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -9,14 +9,14 @@
|
||||||
packages.x86_64-linux = rec {
|
packages.x86_64-linux = rec {
|
||||||
default = firefox-patched-unwrapped;
|
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;
|
geolocationSupport = false;
|
||||||
googleAPISupport = false;
|
googleAPISupport = false;
|
||||||
drmSupport = false;
|
drmSupport = false;
|
||||||
|
|
||||||
requireSigning = false;
|
requireSigning = false;
|
||||||
allowAddonSideload = true;
|
allowAddonSideload = true;
|
||||||
})).overrideAttrs (oldAttrs: rec {
|
}).overrideAttrs (oldAttrs: rec {
|
||||||
patches = oldAttrs.patches ++ [
|
patches = oldAttrs.patches ++ [
|
||||||
# I want to preconfigure the search engine settings to make
|
# I want to preconfigure the search engine settings to make
|
||||||
# DuckDuckGo the default search engine and remove most of the
|
# DuckDuckGo the default search engine and remove most of the
|
||||||
|
@ -33,7 +33,6 @@
|
||||||
./allow-debugging.patch
|
./allow-debugging.patch
|
||||||
];
|
];
|
||||||
});
|
});
|
||||||
}));
|
|
||||||
};
|
};
|
||||||
|
|
||||||
overlay = final: prev: {
|
overlay = final: prev: {
|
||||||
|
|
Loading…
Reference in a new issue