mirror of
https://github.com/boostorg/website-v2.git
synced 2026-01-19 04:42:17 +00:00
Tested on brand new machines, made a few minor docs tweaks and adjustments for findings, but generally went well so I'm merging this.
9 lines
214 B
Bash
9 lines
214 B
Bash
# we have checks to account for first time setup
|
|
if [ -f ".env" ]; then
|
|
dotenv
|
|
fi
|
|
if [ -f "$HOME/.config/nix/nix.conf" ] || [ -f "/etc/nix/nix.conf" ]; then
|
|
echo "Loading nix shell environment."
|
|
use flake
|
|
fi
|