Add switch to Makefile, make build the default

This commit is contained in:
Evie Litherland-Smith 2024-02-17 19:03:38 +00:00
parent 473be66448
commit c9b4393a29

View file

@ -1,8 +1,10 @@
.PHONY: build test .PHONY: build test switch
test:
sudo nixos-rebuild test --flake .
build: build:
nixos-rebuild build --flake . nixos-rebuild build --flake .
test:
sudo nixos-rebuild test --flake .
switch:
sudo nixos-rebuild switch --flake .