18 lines
367 B
Nix
18 lines
367 B
Nix
{ outputs, ... }:
|
|
{
|
|
nixpkgs = {
|
|
# Add all overlays defined in the overlays directory
|
|
overlays = builtins.attrValues outputs.overlays;
|
|
|
|
config.allowUnfree = true;
|
|
|
|
config.permittedInsecurePackages = [
|
|
"electron-25.9.0"
|
|
"nix-2.15.3"
|
|
"dotnet-runtime-6.0.36"
|
|
"dotnet-sdk-wrapped-6.0.428"
|
|
"dotnet-sdk-6.0.428"
|
|
];
|
|
};
|
|
}
|