Thumbnails: Difference between revisions
No edit summary |
|||
Line 74: | Line 74: | ||
=== HEIC thumbnailer === | === HEIC thumbnailer === | ||
On minimal GNOME environments as explained in the FFmpeg thumbnailer section above HEIC thumbnails do not work despite the <code> | On minimal GNOME environments as explained in the FFmpeg thumbnailer section above HEIC thumbnails do not work despite the <code>libheif</code> package being installed. To fix this, you can use the following: | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
Line 81: | Line 81: | ||
{ | { | ||
environment.systemPackages = with pkgs; [ | |||
libheif | |||
libheif.out | |||
]; | |||
environment.pathsToLink = [ | |||
"share/thumbnailers" | |||
]; | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |