From 8ee2d1a9530a81284e87f554019b91312f3dc5d1 Mon Sep 17 00:00:00 2001 From: twoneis Date: Fri, 21 Mar 2025 20:46:59 +0100 Subject: [PATCH] akkoma-fe new name --- modules/fedi/akkoma-fe.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/fedi/akkoma-fe.nix b/modules/fedi/akkoma-fe.nix index 9b2eb0f..0d4658a 100644 --- a/modules/fedi/akkoma-fe.nix +++ b/modules/fedi/akkoma-fe.nix @@ -1,6 +1,6 @@ { runCommand, - akkoma-frontends, + akkoma-fe, xorg, jq, }: @@ -8,13 +8,13 @@ runCommand "akkoma_fe" { nativeBuildInputs = [xorg.lndir jq]; } '' mkdir $out - lndir ${akkoma-frontends.akkoma-fe} $out + lndir ${akkoma-fe} $out rm $out/static/styles.json cp ${./styles.json} $out/static/styles.json rm $out/static/config.json - jq -s add ${akkoma-frontends.akkoma-fe}/static/config.json ${./config.json} > $out/static/config.json + jq -s add ${akkoma-fe}/static/config.json ${./config.json} > $out/static/config.json cp ${../../icons/favicon/favicon.png} $out/static/logo.png