2023-07-05 17:24:58 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2023-05-17 14:43:54 +02:00
|
|
|
programs.thunar.enable = true;
|
2023-05-25 23:11:30 +02:00
|
|
|
services.tumbler.enable = true; # Thumbnail support
|
2023-06-16 19:19:38 +02:00
|
|
|
programs.thunar.plugins = with pkgs.xfce; [ thunar-volman ];
|
2023-06-05 03:26:34 +02:00
|
|
|
|
2023-06-03 16:34:35 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
xfce.exo # Open with kitty support
|
|
|
|
glib
|
|
|
|
];
|
2023-06-05 03:26:34 +02:00
|
|
|
|
2023-05-25 23:11:30 +02:00
|
|
|
services.gvfs.enable = true; # Trash support
|
2023-06-01 21:17:08 +02:00
|
|
|
services.gnome.gnome-keyring.enable = true; # Mount support
|
2023-05-16 23:09:05 +02:00
|
|
|
}
|