From 08505b39332589c743bc070b4ca2ba1119248e41 Mon Sep 17 00:00:00 2001 From: kity Date: Thu, 7 Aug 2025 18:54:19 +0200 Subject: [PATCH] added dist file --- 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 96c2714..a1bf7a2 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/static/themes/${theme}.json - cp ${pkgs.writeText "styles.json" styles} $out/static/themes - cp ${tosFile} $out/static/terms-of-service.html + 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 ''; });