summaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorAlexander Kassouni <alex@kassouni.net>2026-09-26 23:20:05 -0700
committerAlexander Kassouni <alex@kassouni.net>2026-09-26 23:20:05 -0700
commit16f9d31eb625195c5273d86ff6660abe5fac3f58 (patch)
treec195cf03c4b0589722f816a369a73cb7c2ee05b4 /justfile
parent345810a7c6a2cf2b10c5f55afab9594d53eabe0f (diff)
move ssh port
Diffstat (limited to 'justfile')
-rw-r--r--justfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/justfile b/justfile
index 96c2c25..339a1c6 100644
--- a/justfile
+++ b/justfile
@@ -1,8 +1,9 @@
host := "kassouni@5.78.230.100"
+port := "26802"
config := "kassouni-net"
deploy:
nixos-rebuild switch --flake .#{{config}} --target-host {{host}} --build-host {{host}} --sudo --ask-sudo-password
ssh:
- ssh {{host}}
+ ssh -p {{port}} {{host}}