0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

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

This commit is contained in:
Arne Keller 2024-12-20 19:13:50 +01:00 committed by GitHub
commit 4ff852554d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -501,8 +501,8 @@ in {
extraPackages = mkOption {
type = with types; listOf package;
default = with pkgs; [ exiftool ffmpeg-headless graphicsmagick-imagemagick-compat ];
defaultText = literalExpression "with pkgs; [ exiftool ffmpeg-headless graphicsmagick-imagemagick-compat ]";
default = with pkgs; [ exiftool ffmpeg-headless imagemagick ];
defaultText = literalExpression "with pkgs; [ exiftool ffmpeg-headless imagemagick ]";
example = literalExpression "with pkgs; [ exiftool ffmpeg-full imagemagick ]";
description = ''
List of extra packages to include in the executable search path of the service unit.