nix-config/modules/file_managers/thunar.nix
2025-04-03 12:50:08 +02:00

14 lines
284 B
Nix

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