feat(just): deployAll recipe

This commit is contained in:
punkfairie 2025-03-09 13:23:25 -07:00
parent 87753fa69f
commit 3a6f72aa84
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6

View file

@ -25,6 +25,26 @@ deployRemoteOs host:
--target-host root@{{host}} \
--verbose --log-format internal-json |& nom --json
[group('nixos')]
deployAll:
#!/usr/bin/env fish
set -l systems (nix flake show --all-systems --json \
| jq '.nixosConfigurations | keys[]' \
# Remove literal quotes from values so that contains works.
| string trim --chars \"\'\")
# Remove the current system.
set -l currentSysI (contains --index (hostname) $systems)
if set -q currentSysI[1]
set -e systems[$currentSysI]
end
just deployos
for system in $systems
just deployRemoteOs $system
end
alias dd := deploydarwin
[group('darwin')]
deploydarwin host=defhost: