dotfiles/nixos/modules/desktop/wayland/thunar/default.nix
2025-02-05 20:15:36 -06:00

11 lines
197 B
Nix
Executable file

{ pkgs, ... }:
{
programs.thunar = {
enable = true;
plugins = [
pkgs.xfce.thunar-archive-plugin
pkgs.xfce.thunar-volman
pkgs.xfce.thunar-media-tags-plugin
];
};
}