mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-23 22:28:36 +01:00
6af5e5c6cc
This gives thunar, nvim-tree, and other programs access to the trash and other directories.
16 lines
393 B
Nix
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
|
|
'';
|
|
}];
|
|
}
|