From df80d3a16aa0b96936788ac0d3568fd26c75b3a2 Mon Sep 17 00:00:00 2001 From: s0me1newithhand7s Date: Sun, 3 May 2026 15:36:08 +0300 Subject: [PATCH] kyra(hardening): hardened malloc init Signed-off-by: s0me1newithhand7s --- kyra/environment/memoryAllocator.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 kyra/environment/memoryAllocator.nix diff --git a/kyra/environment/memoryAllocator.nix b/kyra/environment/memoryAllocator.nix new file mode 100644 index 0000000..2f171ec --- /dev/null +++ b/kyra/environment/memoryAllocator.nix @@ -0,0 +1,7 @@ +{pkgs, ...}: { + environment = { + memoryAllocator = { + provider = pkgs.graphene-hardened; + }; + }; +}