summary refs log tree commit diff
path: root/justfile
blob: 53c0f87e52bc97260bf2cbf674663aa7662d9170 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[private]
default:
    @just -l

# run flake checks
check:
    nix flake check --impure

# format source code
fmt:
    nix fmt

# build and switch NixOS configuration, without adding it to the boot menu
test *FLAGS:
    cargo nextest run

# updates all flake inputs, or specified inputs
update *INPUTS:
    nix flake update {{ INPUTS }}