# shellcheck disable=2148,2086

# Use `source_up` if part of a monorepo.

use nix

# Load layouts. This basically just sets up PATH and other env vars.
# Possible values are "node", "bun", and "uv".
#
# Options:
#   --deny bin1,bin2,...  Exclude binaries from local PATH, falling back to system.
#                         Useful when a local binary shadows a system one you need.
#
# Examples:
#   layout node
#   layout node --deny pi,prettier
#   layout uv --deny python

if has node; then
  layout node --deny pi
fi
