blob: 71c1a16f5d08d7e052ffd418633b3326bed043b4 (
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 -A depo.nutin-madaj.system
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
|