Files
nixos-config/home-manager/programs/thunar.nix
2026-03-10 01:00:44 -07:00

16 lines
304 B
Nix

{ pkgs, ... }:
{
programs = {
thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
};
environment.systemPackages = with pkgs; [
ffmpegthumbnailer # Need For Video / Image Preview
];
}