init commit

This commit is contained in:
Jermeiah S 2025-06-13 23:18:52 -04:00
commit 8f7a75814d
No known key found for this signature in database
21 changed files with 1073 additions and 0 deletions

32
justfile Normal file
View file

@ -0,0 +1,32 @@
# Like GNU `make`, but `just` rustier.
# https://just.systems/
# run `just` from this directory to see available commands
# Default command when 'just' is run without arguments
default:
@just --list
# Update nix flake
[group('Main')]
update:
nix flake update
# Lint nix files
[group('dev')]
lint:
nix fmt
# Check nix flake
[group('dev')]
check:
nix flake check
# Manually enter dev shell
[group('dev')]
dev:
nix develop
# Activate the configuration
[group('Main')]
run:
nix run