summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngolf Wanger <contact@ingolf-wagner.de>2019-05-23 16:22:52 +0200
committerIngolf Wanger <contact@ingolf-wagner.de>2019-05-23 16:22:52 +0200
commitd822bcc8a1df37752e1b4f00b68f1eba204e564c (patch)
treef5aee3d2ba791c41a467a989c4aff0af51e08447
parentbb07c01d5e36fa607bc1df300826438850f0a1a1 (diff)
web/shell.nix: fixed shell.nix
-rw-r--r--web/shell.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/shell.nix b/web/shell.nix
index 839f5c0..75b14fb 100644
--- a/web/shell.nix
+++ b/web/shell.nix
@@ -2,7 +2,7 @@
let
- scripts = {
+ script = {
build = pkgs.writeShellScriptBin "build" /* sh */ ''
echo "this could be your buildscript"
'';
@@ -25,7 +25,7 @@ in pkgs.mkShell {
];
shellHook = ''
- HISTFILE=${toString ./.}/.history
+ HISTFILE=${toString ./.history}
'';
}