From a2b706e787b2911e2d2d35c700b4867798d7fdca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Fri, 12 Nov 2021 20:04:34 +0100 Subject: [PATCH] =?UTF-8?q?feat(direnv):=E2=80=AFsimplify=20shell.nix=20te?= =?UTF-8?q?mplate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- configs/direnv.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configs/direnv.nix b/configs/direnv.nix index 9798630..2da9aa3 100644 --- a/configs/direnv.nix +++ b/configs/direnv.nix @@ -11,8 +11,7 @@ let cat > shell.nix <<'EOF' { pkgs ? import {} }: pkgs.mkShell { - buildInputs = with pkgs; []; - shellHook = "export HISTFILE=''${toString ./.history}"; + buildInputs = []; } EOF ''${EDITOR:-vim} shell.nix