nixos-config/justfile
Sridhar Ratnakumar eff3333e3d
add gate
2024-11-19 16:50:26 -05:00

21 lines
302 B
Makefile

default:
@just --list
# Activate local configuration
[group('main')]
local:
nix run
# Deploy to Beelink
[group('deploy')]
pureintent:
nix run . pureintent
# Deploy to nginx gate
[group('deploy')]
gate:
nix run . gate
# Format the nix source tree
fmt:
pre-commit run --all-files