nixos-config/systemProfiles/programs/thunar.nix
2024-10-30 09:13:46 +01:00

9 lines
186 B
Nix

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