From 06a389810703034bc34f72f828cc9665dd376b8a Mon Sep 17 00:00:00 2001 From: steve-chavez Date: Mon, 26 Jun 2023 17:30:28 -0500 Subject: [PATCH] nix: add HISTFILE --- .gitignore | 1 + shell.nix | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/.gitignore b/.gitignore index ccba409df..bab47b52e 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ Pipfile.lock diagrams/db.pdf misspellings unuseddict +.history diff --git a/shell.nix b/shell.nix index 4800d62ec..e8d38d96e 100644 --- a/shell.nix +++ b/shell.nix @@ -15,4 +15,8 @@ pkgs.mkShell { docs.dictcheck docs.linkcheck ]; + + shellHook = '' + export HISTFILE=.history + ''; }