1
0
forked from extern/nix-config
donovanglover-nix-config/modules/thunar.nix
2023-06-16 14:03:09 -04:00

24 lines
612 B
Nix

{ pkgs, ... }: {
programs.thunar.enable = true;
services.tumbler.enable = true; # Thumbnail support
programs.thunar.plugins = with pkgs.xfce; [ thunar-volman ];
environment.systemPackages = with pkgs; [
xfce.exo # Open with kitty support
glib
(pkgs.callPackage ../packages/go-thumbnailer { })
];
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
'';
}
];
}