niksos/options/desktop/dev/malloc-perturb.nix

6 lines
143 B
Nix
Raw Normal View History

2024-07-16 00:26:09 +02:00
{
2024-02-29 01:38:00 +01:00
environment.sessionVariables = {
2024-07-13 22:44:57 +02:00
MALLOC_PERTURB_ = "$(($(head -200 /dev/urandom | cksum | cut -f1 -d ' ') % 255 + 1))";
2024-02-29 01:38:00 +01:00
};
}