14 lines
185 B
Nix
14 lines
185 B
Nix
{ overlays }:
|
|
|
|
{
|
|
fixMallocPkgs = import ./fixMallocPkgs.nix;
|
|
|
|
overlayNixpkgsForThisInstance =
|
|
{ pkgs, ... }:
|
|
{
|
|
nixpkgs = {
|
|
inherit overlays;
|
|
};
|
|
};
|
|
}
|