init commit
This commit is contained in:
commit
8f7a75814d
21 changed files with 1073 additions and 0 deletions
32
justfile
Normal file
32
justfile
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue