From bf56f1957468e104aab41ee8b00a6db0c2a05499 Mon Sep 17 00:00:00 2001 From: kity Date: Thu, 7 Aug 2025 19:03:04 +0200 Subject: [PATCH] dist does not exists --- hosts/sisyphe/features/services/akkoma.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/hosts/sisyphe/features/services/akkoma.nix b/hosts/sisyphe/features/services/akkoma.nix index a1bf7a2..96c2714 100644 --- a/hosts/sisyphe/features/services/akkoma.nix +++ b/hosts/sisyphe/features/services/akkoma.nix @@ -29,9 +29,9 @@ let akkoma-overlay = self: super: { akkoma-fe = super.akkoma-fe.overrideAttrs (old: { postInstall = '' - cp ${themeSrc} $out/dist/static/themes/${theme}.json - cp ${pkgs.writeText "styles.json" styles} $out/dist/static/themes - cp ${tosFile} $out/dist/static/terms-of-service.html + cp ${themeSrc} $out/static/themes/${theme}.json + cp ${pkgs.writeText "styles.json" styles} $out/static/themes + cp ${tosFile} $out/static/terms-of-service.html ''; });