From 37370fd12f9789e3dcefa500f092e20e3e97e7cb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 15 Apr 2026 18:37:38 +0000 Subject: [PATCH] fix(nextcloud): copy extracted dotfiles during init install Agent-Logs-Url: https://github.com/naturallaw777/staging_alpha/sessions/bf1371c0-14ee-477b-9d30-baf97d8f853c Co-authored-by: naturallaw777 <99053422+naturallaw777@users.noreply.github.com> --- modules/nextcloud.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nextcloud.nix b/modules/nextcloud.nix index d28c09d..15f690e 100755 --- a/modules/nextcloud.nix +++ b/modules/nextcloud.nix @@ -97,7 +97,7 @@ lib.mkIf config.sovran_systemsOS.services.nextcloud { curl -L -o "$TEMP_DIR/nextcloud.zip" "https://download.nextcloud.com/server/releases/latest.zip" unzip -q "$TEMP_DIR/nextcloud.zip" -d "$TEMP_DIR" mkdir -p "$INSTALL_DIR" - cp -a "$TEMP_DIR/nextcloud/"* "$INSTALL_DIR/" + cp -a "$TEMP_DIR/nextcloud/." "$INSTALL_DIR/" rm -rf "$TEMP_DIR" echo "Download complete." fi