chore: clean up stale Nix references

This commit is contained in:
Jon Seager 2026-05-22 14:59:39 +00:00
parent c8d7333f7a
commit 08255a8515
3 changed files with 2 additions and 3 deletions

2
.gitignore vendored
View file

@ -1,8 +1,6 @@
# Build artifacts
target/
reviews/
result*
.direnv/
# SQLite database files
*.db

View file

@ -9,6 +9,7 @@ prek = "latest"
shellcheck = "latest"
flyctl = "latest"
"aqua:mvdan/sh" = "latest"
"npm:oxfmt" = "latest"
[env]
SQLX_OFFLINE = "false"

View file

@ -11,7 +11,7 @@ prek run -av # All lints, tests, formatters
cargo build # Build
cargo test # Tests
cargo clippy --allow-dirty --fix # Lint + auto-fix
nix fmt # Format
mise run fmt # Format
sqlx migrate add <name> # New migration → migrations/NNNN_<name>.sql
```