From c315f992f51c5525faf6fea657803bc04a67642b Mon Sep 17 00:00:00 2001 From: Lyle Mantooth Date: Wed, 25 Jun 2025 14:21:37 -0400 Subject: [PATCH] Archive flag. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 95a92f5..ae08991 100644 --- a/flake.nix +++ b/flake.nix @@ -20,7 +20,7 @@ nativeBuildInputs = [ zola ]; configurePhase = '' mkdir -p "themes/${themeName}" - cp -r ${hermit-zola}/* "themes/${themeName}/" + cp -a ${hermit-zola}/* "themes/${themeName}/" ''; buildPhase = "${zola}/bin/zola build"; installPhase = "cp -r public $out";