Nix: Allow insecure dotnet.
This commit is contained in:
parent
32a0bfd63c
commit
afd3d5d80e
|
@ -1,5 +1,10 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
nixpkgs.config.allowUnfree = true;
|
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"
|
||||||
|
];
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
auto-optimise-store = true;
|
auto-optimise-store = true;
|
||||||
keep-derivations = true;
|
keep-derivations = true;
|
||||||
|
|
Loading…
Reference in a new issue