From c9580be411ede4d8b4d846939b9832dd1c8906df Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Mon, 12 Sep 2022 12:17:13 -0400
Subject: [PATCH] Put nix in the shell environment

We don't want to inherit nix from the host environment because who knows if it
is compatible with our software or not.
---
 shell.nix | 1 +
 1 file changed, 1 insertion(+)

diff --git a/shell.nix b/shell.nix
index b8be3a3a..1bc220f5 100644
--- a/shell.nix
+++ b/shell.nix
@@ -22,6 +22,7 @@ pkgs.mkShell {
   inputsFrom = [tools];
   buildInputs = [
     tools
+    pkgs.nix
     pkgs.morph
     pkgs.jp
   ];
-- 
GitLab