From 16e8a3f4f33212f1fadd86edbdfe87910e8cb19a Mon Sep 17 00:00:00 2001 From: Varun Rajput Date: Thu, 4 Jan 2024 11:20:01 -0500 Subject: [PATCH] enable nix experimental features for direnv install --- ProjectGenerator/bin/ihp-new | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ProjectGenerator/bin/ihp-new b/ProjectGenerator/bin/ihp-new index f29555e2d..f0bd4b7dc 100755 --- a/ProjectGenerator/bin/ihp-new +++ b/ProjectGenerator/bin/ihp-new @@ -84,7 +84,7 @@ if ! [ -x "$(command -v direnv)" ]; then echo "" case "$choice" in y | Y) - nix profile install nixpkgs#nix-direnv + nix --extra-experimental-features "nix-command flakes" profile install nixpkgs#nix-direnv ;; *) echo -e "\e[31mPlease install direnv manually and then re-run this program.\e[0m"