diff --git a/deploy.sh b/deploy.sh index 74949b8..d1fb417 100755 --- a/deploy.sh +++ b/deploy.sh @@ -38,7 +38,7 @@ for NIXHOST in $NIXHOSTLIST; do echo "Sending NixOS config files" ssh -F $SSH_CONFIG $SSH_DEST mkdir -p $TMP_PATH $TMP_PATH/pki - cat configuration.nix | ssh -F $SSH_CONFIG $SSH_DEST tee $TMP_PATH/configuration.nix > /dev/null + cat nix/configuration.nix | ssh -F $SSH_CONFIG $SSH_DEST tee $TMP_PATH/configuration.nix > /dev/null cat nix/deuxfleurs.nix | ssh -F $SSH_CONFIG $SSH_DEST tee $TMP_PATH/deuxfleurs.nix > /dev/null cat nix/remote-unlock.nix | ssh -F $SSH_CONFIG $SSH_DEST tee $TMP_PATH/remote-unlock.nix > /dev/null cat cluster/$CLUSTER/cluster.nix | ssh -F $SSH_CONFIG $SSH_DEST tee $TMP_PATH/cluster.nix > /dev/null diff --git a/configuration.nix b/nix/configuration.nix similarity index 100% rename from configuration.nix rename to nix/configuration.nix