mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 12:51:34 +01:00
20 lines
339 B
Makefile
20 lines
339 B
Makefile
set quiet := true
|
|
|
|
default:
|
|
just --list --unsorted
|
|
|
|
rebuild mode='switch':
|
|
nh os {{ if mode == 'reboot' { 'boot' } else { mode } }} .
|
|
{{ if mode == 'reboot' { 'reboot' } else { '' } }}
|
|
|
|
update:
|
|
nix flake update
|
|
|
|
fmt:
|
|
nix fmt
|
|
|
|
check:
|
|
nix flake check
|
|
|
|
dev shell='default':
|
|
nix develop .#{{ shell }} --command zsh
|