security_hellmachine/modules/nixos/default.nix

14 lines
189 B
Nix
Raw Normal View History

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