diff --git a/config/services/akkoma/default.nix b/config/services/akkoma/default.nix index 002e8c6..e3fec5a 100644 --- a/config/services/akkoma/default.nix +++ b/config/services/akkoma/default.nix @@ -13,7 +13,15 @@ services.akkoma = { enable = true; - extraPackages = with pkgs; [ exiftool ffmpeg-headless imagemagick ]; + extraPackages = let + imagemagick = pkgs.imagemagick.override { + libheif = pkgs.libheif.overrideAttrs (prevAttrs: { + buildInputs = prevAttrs.buildInputs or [ ] ++ [ pkgs.svt-av1 ]; + cmakeFlags = prevAttrs.cmakeFlags or [ ] ++ [ "-DWITH_SvtEnc=ON" ]; + }); + }; + in with pkgs; [ exiftool ffmpeg-headless imagemagick ]; + extraStatic."emoji/blobs.gg" = pkgs.akkoma-emoji.blobs_gg; extraStatic."emoji/florp" = pkgs.runCommandNoCC "florp" {