Files
nix-config/hosts/modules/thunar.nix

10 lines
150 B
Nix

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