14 lines
310 B
Nix
14 lines
310 B
Nix
{ 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;
|
|
}
|