2023-05-17 14:43:54 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
2023-05-16 23:09:05 +02:00
|
|
|
{
|
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
|
|
|
|
environment.systemPackages = [ pkgs.xfce.exo ]; # Open with kitty support
|
|
|
|
services.gvfs.enable = true; # Trash support
|
2023-06-01 21:17:08 +02:00
|
|
|
services.gnome.gnome-keyring.enable = true; # Mount support
|
2023-05-17 14:43:54 +02:00
|
|
|
|
2023-05-16 23:09:05 +02:00
|
|
|
home-manager.sharedModules = [{
|
|
|
|
xdg.configFile."xfce4/helpers.rc".text = ''
|
|
|
|
TerminalEmulator=kitty
|
|
|
|
TerminalEmulatorDismissed=true
|
|
|
|
'';
|
|
|
|
}];
|
|
|
|
}
|