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

14 lines
189 B
Nix

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