summaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-27 20:18:33 -0400
committerseth <[email protected]>2024-10-27 20:20:09 -0400
commit8e33ea9f80e36e9e4418b5872da3fe8d8f7f05ac (patch)
tree311f230c2255372d681af5a315a7393b1b2aad92 /justfile
parent5ec7ee21e036f7bc1cbdec714271c619cb3fdb3d (diff)
justfile: use `--fast` for deployment
Diffstat (limited to 'justfile')
-rw-r--r--justfile7
1 files changed, 3 insertions, 4 deletions
diff --git a/justfile b/justfile
index 93c9366..9706426 100644
--- a/justfile
+++ b/justfile
@@ -21,11 +21,10 @@ rebuild subcmd *extraArgs="":
remote-rebuild system subcmd *extraArgs="":
{{ rebuild }} \
{{ subcmd }} \
- --build-host {{ system }} \
- --target-host {{ system }} \
- --use-remote-sudo \
+ --build-host root@{{ system }} \
+ --target-host root@{{ system }} \
+ --fast \
{{ extraArgs }} \
- --print-build-logs \
--flake '.#{{ system }}'
boot *extraArgs="": (rebuild "boot" extraArgs)