fix: tumbler is a package rather than a programm and thus must be installed with packages

This commit is contained in:
2026-05-29 19:15:40 +02:00
parent cb0645dd81
commit ae895dc55f
+6 -2
View File
@@ -1,9 +1,13 @@
{ config, lib, pkgs, ... }:
{
# Enable Thunar and Tumbler thumbnailer service
# Enable Thunar
programs.thunar.enable = true;
programs.tumbler.enable = true;
# Install Tumbler thumbnailer service
environment.systemPackages = with pkgs; [
tumbler;
];
# Ensure Thunar can locate the thumbnailer extensions
environment.pathsToLink = [ "share/thumbnailers" ];