nixos/akkoma: include ImageMagick by default (#353164)

authored by Arne Keller and committed by GitHub 4ff85255 9b71c642

+2 -2
+2 -2
nixos/modules/services/web-apps/akkoma.nix
··· 501 501 502 502 extraPackages = mkOption { 503 503 type = with types; listOf package; 504 - default = with pkgs; [ exiftool ffmpeg-headless graphicsmagick-imagemagick-compat ]; 505 - defaultText = literalExpression "with pkgs; [ exiftool ffmpeg-headless graphicsmagick-imagemagick-compat ]"; 504 + default = with pkgs; [ exiftool ffmpeg-headless imagemagick ]; 505 + defaultText = literalExpression "with pkgs; [ exiftool ffmpeg-headless imagemagick ]"; 506 506 example = literalExpression "with pkgs; [ exiftool ffmpeg-full imagemagick ]"; 507 507 description = '' 508 508 List of extra packages to include in the executable search path of the service unit.