patos/justfile

25 lines
371 B
Makefile
Raw Permalink Normal View History

2024-09-12 22:34:19 +02:00
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
2024-10-13 23:39:56 +02:00
# Build PatOS update image
build-update:
nix build .#patos_update
run: build-image
qemu-efi -hda ./result/disk.qcow2