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 ''; });