nixos/Makefile

20 lines
344 B
Makefile
Raw Normal View History

.PHONY: default build test switch boot copy
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
copy: build
nix copy --to ssh://legion ./result
rm ./result