14 lines
176 B
Makefile
14 lines
176 B
Makefile
#!/usr/bin/env just --justfile
|
|
|
|
build:
|
|
colmena build
|
|
|
|
apply:
|
|
colmena apply
|
|
|
|
build-vm host="bengal":
|
|
nixos-rebuild build-vm --flake .#{{host}}
|
|
|
|
git:
|
|
nix fmt
|
|
git add .
|