nixos-config/sys/profiles/programs/thunar.nix
2025-01-16 10:08:58 +01:00

9 lines
183 B
Nix

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