nixos/Makefile

16 lines
276 B
Makefile
Raw Normal View History

.PHONY: default build test switch boot
default: build
build:
nixos-rebuild build --flake . --show-trace
2024-05-25 07:03:20 +01:00
2024-05-27 12:30:21 +01:00
test:
sudo nixos-rebuild test --flake . --show-trace
2024-05-25 07:03:20 +01:00
switch:
sudo nixos-rebuild switch --flake . --show-trace
boot:
sudo nixos-rebuild boot --flake . --show-trace