aboutsummaryrefslogblamecommitdiff
path: root/deploy.sh
blob: e7384d8c3822c6f5a31fef774ad59bb95a29e520 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13

                   










                                           
                                       



                                                                                                             
    
#!/usr/bin/env bash

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

	echo "==== DOING $NIXHOST ===="

	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
done