dotfiles/profiles/graphical/thunar.nix

14 lines
315 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [xfce.thunar];
programs.thunar.plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
services = {
gvfs.enable = true; # Mount, trash, and other functionalities
tumbler.enable = true; # Thumbnail support for images
};
}