nix-config/home/file_manager/thunar.nix

13 lines
182 B
Nix
Raw Normal View History

2025-04-02 19:43:31 +02:00
{ pkgs, ... }:
{
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
}