From c91683ef24c6b04dfc7e09fdc98855891a86f0e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Numbus?= Date: Tue, 24 Feb 2026 14:30:19 +0100 Subject: [PATCH] Forgot to create some directories. --- deploy.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deploy.sh b/deploy.sh index 16e7dc1..6960df9 100644 --- a/deploy.sh +++ b/deploy.sh @@ -149,9 +149,11 @@ ssh_to_host() { } hierarchy_preparation() { + mkdir -p final-nix-config/etc/secrets + mkdir -p final-nix-config/etc/secrets/disks mkdir -p final-nix-config/etc/nixos/secrets - echo -e "\n āœ… Writing configuration..." + echo -e "\nāœ… Writing configuration..." cp -${FILES_COPY_FLAGS} templates/nix-config/configuration.nix final-nix-config/etc/nixos/configuration.nix export CONFIGURATION_PATH="final-nix-config/etc/nixos/configuration.nix" }