From db67cddbda284f53acd3f818779000b3a98bc831 Mon Sep 17 00:00:00 2001 From: notohh Date: Tue, 14 Jan 2025 13:52:08 -0500 Subject: [PATCH] nix: add insecure packages --- modules/nix.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/nix.nix b/modules/nix.nix index 6ef94f0..6dd4078 100644 --- a/modules/nix.nix +++ b/modules/nix.nix @@ -11,10 +11,14 @@ inputs.hyprwayland-scanner.overlays.default inputs.atuin.overlays.default inputs.eww.overlays.default - inputs.hyprpanel.overlay ]; config = { allowUnfree = true; + permittedInsecurePackages = [ + # for sonarr + "dotnet-sdk-6.0.428" + "aspnetcore-runtime-6.0.36" + ]; }; };