summaryrefslogtreecommitdiff
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile8
1 files changed, 6 insertions, 2 deletions
diff --git a/justfile b/justfile
index dcbd65e..00cedab 100644
--- a/justfile
+++ b/justfile
@@ -32,10 +32,14 @@ check:
nix flake check
deploy host:
- deploy -s .#{{ host }}
+ nix run .#{{ host }}
deploy-all:
- deploy -s
+ nix eval \
+ --json ".#apps.x86_64-linux" \
+ --apply builtins.attrNames \
+ | , jq -c '.[]' | grep -v "dry-run" \
+ | while read -r c; do nix run ".#$c"; done
[linux]
[macos]