nixcfg/deploy.sh

20 lines
474 B
Bash
Raw Normal View History

2021-11-02 09:15:37 +00:00
#!/usr/bin/env bash
2021-11-16 18:00:15 +00:00
cd $(dirname $0)
for NIXHOST in $(ls node); do
NIXHOST=${NIXHOST%.*}
if [ -z "$SSH_USER" ]; then
SSH_DEST=$NIXHOST
else
SSH_DEST=$SSH_USER@$NIXHOST
fi
2021-11-02 09:15:37 +00:00
echo "==== DOING $NIXHOST ===="
2021-11-16 18:00:15 +00:00
cat configuration.nix | ssh -F ssh_config $SSH_DEST sudo tee /etc/nixos/configuration.nix > /dev/null
cat node/$NIXHOST.nix | ssh -F ssh_config $SSH_DEST sudo tee /etc/nixos/node.nix > /dev/null
ssh -F ssh_config $SSH_DEST sudo nixos-rebuild switch
2021-11-02 09:15:37 +00:00
done