We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c27a515 commit 60b3295Copy full SHA for 60b3295
configuration.nix
@@ -29,13 +29,17 @@ in {
29
# HACK: Allow all insecure electron versions
30
name
31
== "electron"
32
+ # HACK: Ventoy uses opaque binary blobs, causing security concerns
33
+ # https://github.com/NixOS/nixpkgs/issues/404663
34
+ || name == "ventoy"
35
# HACK: Some Matrix clients rely on libolm, which is deprecated
36
# https://github.com/NixOS/nixpkgs/pull/334638
37
|| name == "cinny"
38
|| name == "cinny-unwrapped"
39
|| name == "fluffychat-linux"
40
|| name == "olm"
- || name == "openssl"; # Cisco Packet Tracer
41
+ # Cisco Packet Tracer
42
+ || name == "openssl";
43
};
44
in {
45
inherit config;
0 commit comments