summaryrefslogtreecommitdiff
path: root/Makefile
blob: ab22c0b8f164fdda264429de320d76ec265c528c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
HOST = simatime.com
USER = root
OUT  = $(shell readlink -n ./result)

result:
	nix-build --attr system ./nixos.nix

copy: result
	nix copy --to "ssh://$(USER)@$(HOST)" ./result

switch:
	ssh $(USER)@$(HOST) sudo "$(OUT)/bin/switch-to-configuration" switch

clean: FORCE
	rm -f ./result

.PHONY: FORCE