summary refs log tree commit diff stats
path: root/scripts/deploy.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/deploy.sh')
-rwxr-xr-xscripts/deploy.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/deploy.sh b/scripts/deploy.sh
new file mode 100755
index 0000000..9d27e5a
--- /dev/null
+++ b/scripts/deploy.sh
@@ -0,0 +1,16 @@
+#!/usr/bin/env sh
+
+[ "$#" -ne 2 ] && {
+    echo "Usage: $1 <ssh url> <host_name>"
+    exit 2
+}
+ssh_url="$1"
+host_name="$2"
+root="$(git rev-parse --show-toplevel)"
+
+nix run github:numtide/nixos-anywhere -- \
+    --flake ".#$host_name" \
+    --target-host "$ssh_url" \
+    --generate-hardware-config nixos-facter "$root/hardware_config_$host_name.nix"
+
+# vim: ft=sh