Skip to content

Commit 60b3295

Browse files
committed
nix: allow potentially insecure ventoy package
1 parent c27a515 commit 60b3295

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

configuration.nix

+5-1
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,17 @@ in {
2929
# HACK: Allow all insecure electron versions
3030
name
3131
== "electron"
32+
# HACK: Ventoy uses opaque binary blobs, causing security concerns
33+
# https://github.com/NixOS/nixpkgs/issues/404663
34+
|| name == "ventoy"
3235
# HACK: Some Matrix clients rely on libolm, which is deprecated
3336
# https://github.com/NixOS/nixpkgs/pull/334638
3437
|| name == "cinny"
3538
|| name == "cinny-unwrapped"
3639
|| name == "fluffychat-linux"
3740
|| name == "olm"
38-
|| name == "openssl"; # Cisco Packet Tracer
41+
# Cisco Packet Tracer
42+
|| name == "openssl";
3943
};
4044
in {
4145
inherit config;

0 commit comments

Comments
 (0)