From 2e23add5dc90b33cf77e0b63cf82000c69f56e95 Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Sat, 13 Jul 2024 22:40:05 +0200 Subject: [PATCH] I forgot to remove the echo xd --- options/desktop/dev/malloc-perturb.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options/desktop/dev/malloc-perturb.nix b/options/desktop/dev/malloc-perturb.nix index f2695a6..3c988a1 100644 --- a/options/desktop/dev/malloc-perturb.nix +++ b/options/desktop/dev/malloc-perturb.nix @@ -1,5 +1,5 @@ _: { environment.sessionVariables = { - MALLOC_PERTURB_ = "echo $(($(head -200 /dev/urandom | cksum | cut -f1 -d " ") % 255 + 1))"; + MALLOC_PERTURB_ = "$(($(head -200 /dev/urandom | cksum | cut -f1 -d " ") % 255 + 1))"; }; }