nixos/modules/thunar.nix
2022-08-16 00:14:37 -04:00

8 lines
189 B
Nix

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