[feat]: basic nix dev enviroment

This commit is contained in:
aprilthepink 2024-03-21 12:41:02 +01:00
parent 51c7a6d6a2
commit 091b8efe8e
10 changed files with 545 additions and 260 deletions

14
justfile Normal file
View file

@ -0,0 +1,14 @@
default:
@just --list
# Auto-format the source tree
fmt:
treefmt
# Run 'cargo run' on the project
run *ARGS:
cargo run {{ARGS}}
# Run 'cargo watch' to run the project (auto-recompiles)
watch *ARGS:
cargo watch -x "run -- {{ARGS}}"