thunar: enable plugins

This commit is contained in:
Leonardo Eugênio 2023-05-18 12:36:29 -03:00
parent b38dce323a
commit 9c9ebff974
2 changed files with 21 additions and 6 deletions

13
system/thunar.nix Normal file
View file

@ -0,0 +1,13 @@
{ 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;
}