nix-config/applications/thunar/default.nix
Donovan Glover 6af5e5c6cc
meta: Enable gvfs
This gives thunar, nvim-tree, and other programs access to the trash and
other directories.
2023-05-25 17:12:56 -04:00

16 lines
393 B
Nix

{ pkgs, ... }:
{
programs.thunar.enable = true;
services.tumbler.enable = true; # Thumbnail support
environment.systemPackages = [ pkgs.xfce.exo ]; # Open with kitty support
services.gvfs.enable = true; # Trash support
home-manager.sharedModules = [{
xdg.configFile."xfce4/helpers.rc".text = ''
TerminalEmulator=kitty
TerminalEmulatorDismissed=true
'';
}];
}