security_hellmachine/modules/nixos/default.nix

14 lines
185 B
Nix
Raw Permalink Normal View History

2025-01-29 12:16:47 +00:00
{ overlays }:
{
2025-01-29 12:27:13 +00:00
fixMallocPkgs = import ./fixMallocPkgs.nix;
2025-01-29 12:16:47 +00:00
overlayNixpkgsForThisInstance =
{ pkgs, ... }:
{
nixpkgs = {
inherit overlays;
};
};
}