From abb81351ca0cf4ab4b9fa9cae1a34ca71fa274f2 Mon Sep 17 00:00:00 2001 From: Lyle Mantooth Date: Wed, 25 Jun 2025 14:04:01 -0400 Subject: [PATCH] Force theme vendoring in configurePhase. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8575ca0..1759da1 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 -rf ${hermit-zola}/* "themes/${themeName}" ''; buildPhase = "zola build"; installPhase = "cp -r public $out";