From 0af34e4a19edd0558a56c67f23ce294e388eb9e6 Mon Sep 17 00:00:00 2001 From: Henri Rosten Date: Mon, 4 Dec 2023 14:52:03 +0200 Subject: [PATCH] Fix issue caused by small temp fs on some systems Signed-off-by: Henri Rosten --- nix/devshell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nix/devshell.nix b/nix/devshell.nix index 041567c..9b85208 100644 --- a/nix/devshell.nix +++ b/nix/devshell.nix @@ -36,6 +36,8 @@ # invoking entrypoints from inside the devshell. shellHook = '' export PYTHONPATH="$PYTHONPATH:$(pwd)/src" + # https://github.com/NixOS/nix/issues/1009: + export TMPDIR="/tmp" ''; }; };