security-workarounds: add comments to openSSL 3 fixes

This commit is contained in:
lassulus 2022-11-01 11:16:19 +01:00
parent a5c08e9699
commit e536b3343f

View File

@ -1,5 +1,6 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
{ {
# OpenSSL pre-3.0.7 vulnerabilities
nixpkgs.overlays = [ nixpkgs.overlays = [
(self: super: { (self: super: {
exim = exim =
@ -16,5 +17,6 @@
}); });
}) })
]; ];
# OpenSSL pre-3.0.7 vulnerabilities
services.nginx.package = lib.mkDefault (pkgs.nginxStable.override { openssl = pkgs.libressl; }); services.nginx.package = lib.mkDefault (pkgs.nginxStable.override { openssl = pkgs.libressl; });
} }