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
1 changed files with 2 additions and 0 deletions

View File

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