Nix: Allow insecure packages.

This commit is contained in:
Dmitry Voronin 2024-12-02 01:37:29 +03:00
parent afd3d5d80e
commit 843d71d0f7
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -1,10 +1,6 @@
{ ... }: {
nixpkgs.config.allowUnfree = true;
nixpkgs.config.permittedInsecurePackages = [
"dotnet-runtime-6.0.36" # HACK: I hate Nix for this.
"dotnet-sdk-wrapped-6.0.428"
"dotnet-sdk-6.0.428"
];
nixpkgs.config.allowInsecurePredicate = x: true; # HACK: Nix is fucking annoying.
nix.settings = {
auto-optimise-store = true;
keep-derivations = true;