mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 11:20:31 +01:00
27 lines
733 B
Makefile
27 lines
733 B
Makefile
beleth-host := "root@88.99.90.90"
|
|
beleth-user-host:= "xqtc@88.99.90.90"
|
|
|
|
default:
|
|
@just --choose
|
|
|
|
rebuild:
|
|
#!/usr/bin/env bash
|
|
HOSTNAME=$(hostname)
|
|
if [ $HOSTNAME == "alastor" ]; then
|
|
nh os switch . -- -vv --impure -j 4;
|
|
exit
|
|
fi
|
|
nh os switch . -- -vv;
|
|
|
|
|
|
beleth:
|
|
#!/usr/bin/env bash
|
|
arch=$(nix-instantiate --eval -E 'builtins.currentSystem')
|
|
arch_sanitized=$(echo $arch | sed 's/^"//;s/"$//')
|
|
if [ $arch_sanitized == "x86_64-linux" ]; then
|
|
nixos-rebuild switch --flake '.#beleth' --build-host {{beleth-host}} --target-host {{beleth-host}};
|
|
ssh {{beleth-user-host}} "cd; cd nixos-config; git pull; cd; sh build_website.sh";
|
|
exit
|
|
fi
|
|
@echo "Host arch needs to be 'x86_64-linux'! Aborting...";
|