2024-03-09 17:18:36 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
programs.thunar = {
|
|
|
|
enable = true;
|
|
|
|
plugins = with pkgs.xfce; [
|
|
|
|
thunar-archive-plugin
|
|
|
|
thunar-volman
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
services.gvfs.enable = true;
|
|
|
|
services.tumbler.enable = true;
|
2024-03-16 20:45:29 +01:00
|
|
|
programs.file-roller.enable = true;
|
2024-03-09 17:18:36 +01:00
|
|
|
}
|