dotfiles/nixos/modules/thunar.nix
2025-01-08 01:05:45 -06:00

10 lines
195 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
];
};
}