aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Nipper <nipsy@bitgnome.net>2024-11-30 00:14:02 -0800
committerMark Nipper <nipsy@bitgnome.net>2024-11-30 00:14:02 -0800
commitb3c341bd23e496e71ac32ddb24895ebc1cd278c7 (patch)
tree398eebe91889cffa698e9ab53f1ff31e732f527f
parent249df96caf018b20ff246f4e145ecbb70b5b3b8b (diff)
downloadnix-b3c341bd23e496e71ac32ddb24895ebc1cd278c7.tar
nix-b3c341bd23e496e71ac32ddb24895ebc1cd278c7.tar.gz
nix-b3c341bd23e496e71ac32ddb24895ebc1cd278c7.tar.bz2
nix-b3c341bd23e496e71ac32ddb24895ebc1cd278c7.tar.lz
nix-b3c341bd23e496e71ac32ddb24895ebc1cd278c7.tar.xz
nix-b3c341bd23e496e71ac32ddb24895ebc1cd278c7.tar.zst
nix-b3c341bd23e496e71ac32ddb24895ebc1cd278c7.zip
Allow insecure *arr dotnet dependency
-rw-r--r--hosts/arrakis/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/hosts/arrakis/default.nix b/hosts/arrakis/default.nix
index 92ebf31..1918b97 100644
--- a/hosts/arrakis/default.nix
+++ b/hosts/arrakis/default.nix
@@ -211,7 +211,12 @@
};
nixpkgs = {
- config.allowUnfree = true;
+ config = {
+ allowUnfree = true;
+ permittedInsecurePackages = [
+ aspnetcore-runtime-wrapped-6.0.36
+ ];
+ };
hostPlatform = "x86_64-linux";
overlays = [
inputs.nvidia-patch.overlays.default