summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-09-25 20:05:19 -0400
committerLLLL Colonq <llll@colonq>2025-09-25 20:05:19 -0400
commit811f11463851a0f35835ac72ef09b65b1072de20 (patch)
tree225cee11b86af7662e6319c9864788b92be3dfb1 /flake.nix
parent8e79c8ac42d3fa248174120266ae0988361df212 (diff)
Add runtime freezing, add defun and defmacro
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index eff6434..3f3d960 100644
--- a/flake.nix
+++ b/flake.nix
@@ -9,8 +9,10 @@
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.x86_64-linux.default = pkgs.mkShell {
+ hardeningDisable = [ "all" ];
buildInputs = [
pkgs.musl
+ pkgs.valgrind
];
};
};