14 lines
217 B
Makefile
14 lines
217 B
Makefile
.PHONY: default build switch copy
|
|
|
|
default: build
|
|
|
|
build:
|
|
nix run . -- build --flake . --show-trace
|
|
|
|
switch:
|
|
nix run . -- switch --flake . --show-trace
|
|
|
|
copy: build
|
|
nix copy --to ssh://legion ./result
|
|
rm ./result
|