>_ Replaced shell scripts with justfile, nix shell to download the rest

This commit is contained in:
2025-02-13 21:52:01 +01:00
parent 0b0d93cf41
commit 0825b293a1
9 changed files with 48 additions and 32 deletions

24
justfile Normal file
View File

@ -0,0 +1,24 @@
default:
@just --list
fmt:
treefmt --on-unmatched info
test *FLAGS:
git add .
just fmt
nh os test . {{FLAGS}}
switch *FLAGS:
git add .
just fmt
nh os switch . {{FLAGS}}
switch-now *FLAGS:
nh os switch . {{FLAGS}}
update:
nix-channel --update
nix flake update
just switch