From fdb5210f88a751e2aea9d519520897f8574f533e Mon Sep 17 00:00:00 2001 From: Alex Auvolat Date: Mon, 28 Mar 2022 12:18:52 +0200 Subject: [PATCH] Move configuration.nix to nix/ subfolder --- deploy.sh | 2 +- configuration.nix => nix/configuration.nix | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename configuration.nix => nix/configuration.nix (100%) 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