Evie Litherland-Smith
aa495aa582
Use normal nix build command to build output, instead of relying on home-manager script that introduces some overhead
12 lines
223 B
Makefile
12 lines
223 B
Makefile
.PHONY: build copy
|
|
|
|
USER := $(shell whoami)
|
|
HOST := $(shell hostname)
|
|
|
|
build:
|
|
nix build .#homeConfigurations."$(USER)@$(HOST)".activationPackage
|
|
|
|
copy: build
|
|
nix copy --to ssh://pixelifytica@legion ./result
|
|
rm ./result
|