dotfiles/nixos/modules/hyprland/thunar.nix

11 lines
195 B
Nix
Raw Normal View History

2025-01-08 01:05:45 -06:00
{pkgs, ...}: {
programs.thunar = {
enable = true;
plugins = [
pkgs.xfce.thunar-archive-plugin
pkgs.xfce.thunar-volman
pkgs.xfce.thunar-media-tags-plugin
];
};
}