nixos-config/sys/profiles/programs/thunar.nix
2026-01-22 21:51:16 +01:00

9 lines
178 B
Nix

{pkgs, ...}: {
services.tumbler.enable = true; # image thumbnails
programs.thunar = {
enable = true;
plugins = with pkgs; [
thunar-archive-plugin
];
};
}