2024-06-07 19:56:53 +01:00
|
|
|
.PHONY: build copy
|
2024-05-11 16:15:46 +01:00
|
|
|
|
2024-06-22 09:41:24 +01:00
|
|
|
HOST := $(shell hostname)
|
|
|
|
|
2024-05-11 16:15:46 +01:00
|
|
|
build:
|
2024-06-22 09:41:24 +01:00
|
|
|
nix build .#nixosConfigurations.$(HOST).config.system.build.toplevel
|
2024-05-25 07:03:20 +01:00
|
|
|
|
2024-06-03 05:38:03 +01:00
|
|
|
copy: build
|
2024-06-07 19:56:53 +01:00
|
|
|
nix copy --to ssh://pixelifytica@legion ./result
|
2024-06-03 05:38:03 +01:00
|
|
|
rm ./result
|