From 473c12d45f01e40ac6b781bc4e69dd060785dbb8 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Mon, 2 Dec 2024 01:29:11 +0300 Subject: [PATCH] Nix: Allow insecure dotnet. --- system/Nix.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/system/Nix.nix b/system/Nix.nix index 3a4d4fe..4361509 100644 --- a/system/Nix.nix +++ b/system/Nix.nix @@ -1,5 +1,9 @@ { ... }: { nixpkgs.config.allowUnfree = true; + nixpkgs.config.permittedInsecurePackages = [ + "dotnet-runtime-6.0.36" # HACK: I hate Nix for this. + "dotnet-sdk-wrapped-6.0.428" + ]; nix.settings = { auto-optimise-store = true; keep-derivations = true;