From d7a9c94cf5d20bbbe7ed1634ea0b9ee07682b9fd Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Mon, 21 Jul 2025 12:01:39 -0400 Subject: [PATCH] justfile: ssh to tart --- justfile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/justfile b/justfile index f2c2e1f..784798d 100644 --- a/justfile +++ b/justfile @@ -20,15 +20,20 @@ infinitude: nix run . infinitude # Deploy to orb nixos machine -[group('deploy')] -orb: - nix run . orb-nixos +# [group('deploy')] +# orb: +# nix run . orb-nixos # Deploy to tart VM [group('deploy')] tart: nix run . infinitude-nixos +# SSH to tart CM +[group('ssh')] +tart-ssh: + ssh $(tart ip nixos-vm) + # Run all pre-commit hooks on all files pca: pre-commit run --all-files