From 51fba9baa6da81616cba91183c1939dd7ffc3c10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Mon, 2 Nov 2020 15:44:33 +0100 Subject: [PATCH] chore(shell.nix): remove histfile setting --- shell.nix | 5 ----- 1 file changed, 5 deletions(-) diff --git a/shell.nix b/shell.nix index 9df831e..b52859b 100644 --- a/shell.nix +++ b/shell.nix @@ -41,9 +41,7 @@ let dependencies; in pkgs.mkShell { - buildInputs = updateScripts ++ [ - (pkgs.writers.writeDashBin "niveum-update" (lib.concatStringsSep " &\n" (lib.mapAttrsToList updateCommand dependencies))) @@ -72,8 +70,5 @@ in pkgs.mkShell { printf "\033[1m%11s\033[0m %s\n" "$hostname" "$machine_status" done '') - ]; - - shellHook = "export HISTFILE=${toString ./.history}"; }