1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00

chore(shell.nix): remove histfile setting

This commit is contained in:
2020-11-02 15:44:33 +01:00
parent a0fb2bd819
commit 51fba9baa6

View File

@@ -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}";
}