feature(thunar): add thunar and thumbler thumbnailer service

This commit is contained in:
2026-05-29 19:06:02 +02:00
parent 0daf4eec9a
commit cb0645dd81
2 changed files with 11 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
# Enable Thunar and Tumbler thumbnailer service
programs.thunar.enable = true;
programs.tumbler.enable = true;
# Ensure Thunar can locate the thumbnailer extensions
environment.pathsToLink = [ "share/thumbnailers" ];
}