10 lines
149 B
Makefile
10 lines
149 B
Makefile
.PHONY: default build switch
|
|
|
|
default: build
|
|
|
|
build:
|
|
nix run . -- build --flake . --show-trace
|
|
|
|
switch:
|
|
nix run . -- switch --flake . --show-trace
|