Add justfile
This commit is contained in:
parent
44d8f9c90d
commit
1013fb31ed
2 changed files with 74 additions and 53 deletions
16
justfile
Normal file
16
justfile
Normal file
|
@ -0,0 +1,16 @@
|
|||
set shell := ["/usr/bin/env", "bash", "-euo", "pipefail", "-c"]
|
||||
|
||||
[private]
|
||||
default:
|
||||
@just --list
|
||||
|
||||
# Update nix flake
|
||||
update:
|
||||
nix flake update
|
||||
|
||||
# Build all targets
|
||||
build: build-image
|
||||
|
||||
# Build PatOS image
|
||||
build-image:
|
||||
nix build .#patos_image
|
Loading…
Add table
Add a link
Reference in a new issue