#!/usr/bin/env bash

watch_dir nix
use nix nix -A output.shell.default

# Configure `PATH`.
PATH_add bin

# Store cache files in a single directory.
PYTHONPYCACHEPREFIX="$(expand_path .pycache)"
export PYTHONPYCACHEPREFIX

# Set up the virtual environment.
PATH_add ".venv/bin"
VIRTUAL_ENV="$(expand_path .venv)"
export VIRTUAL_ENV
