nix-config/applications/thunar/default.nix

17 lines
455 B
Nix
Raw Normal View History

{ 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
services.gnome.gnome-keyring.enable = true; # Mount support
home-manager.sharedModules = [{
xdg.configFile."xfce4/helpers.rc".text = ''
TerminalEmulator=kitty
TerminalEmulatorDismissed=true
'';
}];
}