This commit is contained in:
GlennWSo 2024-04-10 12:28:38 +02:00
parent d43a07fe3a
commit 6b730886b7
3 changed files with 4 additions and 4 deletions

View file

@ -7,4 +7,4 @@ icon ="./forgejo.png"
Forgejo is a software forge for hosting version control using Git as well
as other collaborative features, like issue tracking, ci/cd and etc.
With Forgejo our server host the code to reproduce all of its functionality.
With Forgejo our server hosts the code to reproduce all of its functionality.

View file

@ -22,11 +22,11 @@
name = "homepage";
src = ./.;
buildPhase = ''
${pkgs.zola}/bin/zola build
${pkgs.zola}/bin/zola build -o $out/
'';
installPhase = ''
mkdir -p $out/static
cp -a public/. $out/
# mkdir -p $out/static
# cp -a public/. $out/
'';
};
prod_homepage = pkgs.writeShellScriptBin "home-prod" ''