nix: drop the site/ subfolder in the out dir

This commit is contained in:
Tasia Iso 2024-10-03 14:04:19 +02:00
parent 4f8edb0520
commit 51b800ec30
Signed by: tasiaiso
SSH key fingerprint: SHA256:KiRjUay5C9i6objsEOIycygBHn54pDBB3Lj7fyJ0Elw

View file

@ -23,6 +23,6 @@ pkgs.stdenv.mkDerivation rec {
installPhase = ''
mkdir -p $out/
cp -r site/ $out/
cp -r site/. $out/
'';
}