This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/Makefile
Evie Litherland-Smith f0cb848271 Add copy command to Makefile
copy runs build, copy to Legion, then rm result link
2024-06-03 05:46:16 +01:00

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