From b23aef3faf7f9923640d96ed04455dc095b8310b Mon Sep 17 00:00:00 2001 From: notohh Date: Sat, 30 Nov 2024 12:02:27 -0500 Subject: [PATCH] nix: allow insecure dotnet packages --- modules/nix.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/nix.nix b/modules/nix.nix index db0aa54..0afaf34 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -13,7 +13,13 @@ ]; config = { allowUnfree = true; - permittedInsecurePackages = []; + permittedInsecurePackages = [ + "dotnet-runtime-6.0.36" + "dotnet-sdk-wrapped-6.0.428" + "dotnet-sdk-6.0.428" + "aspnetcore-runtime-wrapped-6.0.36" + "aspnetcore-runtime-6.0.36" + ]; }; };