Files
nixos-config/home/programs/thunar/default.nix
2024-03-03 19:04:59 +01:00

16 lines
305 B
Nix

{ pkgs, ... }:
{
programs = {
thunar = {
enable = true;
plugins = with pkgs.xfce; [ thunar-archive-plugin thunar-volman ];
};
xfconf.enable = true;
};
services = {
gvfs.enable = true; # Mount, trash, ...
tumbler.enable = true; # Thumbnail support for images.
};
}