nix: allow insecure dotnet packages
All checks were successful
ci/woodpecker/cron/flake-lock-update Pipeline was successful

This commit is contained in:
notohh 2024-11-30 12:02:27 -05:00
parent 143c899278
commit b23aef3faf
Signed by: notohh
GPG key ID: BD47506D475EE86D

View file

@ -13,7 +13,13 @@
]; ];
config = { config = {
allowUnfree = true; 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"
];
}; };
}; };