mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 15:04:59 +08:00
26 lines
470 B
Makefile
26 lines
470 B
Makefile
default:
|
|
@just --list
|
|
|
|
# Activate local configuration
|
|
[group('main')]
|
|
local:
|
|
nix run
|
|
|
|
# Run this before `nix run` to build the current configuration
|
|
[group('main')]
|
|
nom:
|
|
, nom build --no-link .#nixosConfigurations.vixen.config.system.build.toplevel
|
|
|
|
# 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
|