mirror of
https://github.com/SebastianStork/nixos-config.git
synced 2026-01-21 22:11:33 +01:00
31 lines
393 B
Makefile
31 lines
393 B
Makefile
set quiet := true
|
|
|
|
default:
|
|
just --list --unsorted
|
|
|
|
switch:
|
|
nh os switch .
|
|
|
|
test:
|
|
nh os test .
|
|
|
|
boot:
|
|
nh os boot .
|
|
|
|
reboot: boot
|
|
reboot
|
|
|
|
update:
|
|
nix flake update
|
|
|
|
fmt:
|
|
nix fmt
|
|
|
|
check:
|
|
nix flake check
|
|
|
|
dev shell='default':
|
|
nix develop .#{{ shell }} --command zsh
|
|
|
|
build-iso:
|
|
nix run nixpkgs#nixos-generators -- --format iso --flake .#installer -o result
|