Files
garandos/modules/core/thunar.nix

12 lines
175 B
Nix

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