dotfiles/justfile

30 lines
346 B
Makefile
Raw Normal View History

2024-08-02 11:12:36 +02:00
set shell := ["/usr/bin/env", "bash", "-euo", "pipefail", "-c"]
[private]
default:
@just --list
2024-08-02 14:09:42 +02:00
boot:
nh os boot .
build:
nh os build .
switch:
nh os switch .
update:
nh os switch --update --ask .
2024-08-02 11:12:36 +02:00
clean:
nh clean all
2024-08-02 14:09:42 +02:00
home-build:
2024-08-02 11:12:36 +02:00
nh home build .
2024-08-02 14:09:42 +02:00
home-switch:
2024-08-02 11:12:36 +02:00
nh home switch .
2024-08-02 14:09:42 +02:00
home-update:
2024-08-02 11:12:36 +02:00
nh home switch --update --ask .