Nix: Allow insecure dotnet.

This commit is contained in:
Dmitry Voronin 2024-12-02 01:29:11 +03:00
parent 32a0bfd63c
commit 473c12d45f

View file

@ -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;