nixos-config/system/thunar.nix

14 lines
310 B
Nix
Raw Normal View History

2023-05-18 12:36:29 -03:00
{ config, pkgs, inputs, ... }: {
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
# Mount, trash, and other functionalities
services.gvfs.enable = true;
# Thumbnail support for images
services.tumbler.enable = true;
}