add nginx overlay to overlays.nix

This commit is contained in:
do butterflies cry? 2026-02-16 09:32:40 +10:00
parent 31652ad177
commit 93faff7d9e
2 changed files with 31 additions and 51 deletions

View file

@ -1,5 +1,5 @@
[
(self: super: {
{inputs, ...}: (
self: super: {
angry-oxide = import ../packages/angryoxide {
pkgs = super;
inherit
@ -18,6 +18,10 @@
pkgs = super;
};
# in wake of CVE-2022-3602/CVE-2022-3786
nginxStable = super.nginxStable.override {openssl = super.libressl;};
nginx = super.nginx.override {openssl = super.libressl;};
element-desktop = super.element-desktop.overrideAttrs (final: prev: {
desktopItems = [
((builtins.elemAt prev.desktopItems 0).override {
@ -25,5 +29,5 @@
})
];
});
})
]
}
)