13 lines
227 B
Bash
13 lines
227 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 dir
|
|
export NPINS_DIRECTORY="nix"
|
|
|
|
# Activate development shell
|
|
use nix
|