security_hellmachine/modules/nixos/default.nix
2025-01-29 15:27:13 +03:00

14 lines
185 B
Nix

{ overlays }:
{
fixMallocPkgs = import ./fixMallocPkgs.nix;
overlayNixpkgsForThisInstance =
{ pkgs, ... }:
{
nixpkgs = {
inherit overlays;
};
};
}