nix-config/modules/thunar.nix

16 lines
378 B
Nix
Raw Normal View History

2023-07-05 17:24:58 +02:00
{ pkgs, ... }:
{
programs.thunar.enable = true;
services.tumbler.enable = true; # Thumbnail support
programs.thunar.plugins = with pkgs.xfce; [ thunar-volman ];
2023-06-05 03:26:34 +02:00
environment.systemPackages = with pkgs; [
xfce.exo # Open with kitty support
glib
];
2023-06-05 03:26:34 +02:00
services.gvfs.enable = true; # Trash support
services.gnome.gnome-keyring.enable = true; # Mount support
}