13 lines
218 B
Bash
13 lines
218 B
Bash
#!/usr/bin/env bash
|
|
# the shebang is ignored, but nice for editors
|
|
watch_file nix/sources.json
|
|
|
|
# Load .env file if it exists
|
|
dotenv_if_exists
|
|
|
|
# Set npins path
|
|
export NPINS_DIRECTORY="nix"
|
|
|
|
# Load environment
|
|
use nix
|