>_ Replaced shell scripts with justfile, nix shell to download the rest
This commit is contained in:
24
justfile
Normal file
24
justfile
Normal 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
|
Reference in New Issue
Block a user