24 lines
353 B
Nix
24 lines
353 B
Nix
|
{
|
||
|
config,
|
||
|
lib,
|
||
|
pkgs,
|
||
|
...
|
||
|
}: {
|
||
|
programs.thunar = {
|
||
|
enable = true;
|
||
|
plugins = builtins.attrValues {
|
||
|
inherit
|
||
|
(pkgs.xfce)
|
||
|
thunar-volman
|
||
|
thunar-vcs-plugin
|
||
|
thunar-archive-plugin
|
||
|
thunar-media-tags-plugin
|
||
|
;
|
||
|
};
|
||
|
};
|
||
|
services.gvfs = {
|
||
|
enable = true;
|
||
|
package = pkgs.gvfs;
|
||
|
};
|
||
|
}
|