diff --git a/modules/programs/gui/thunar/module.nix b/modules/programs/gui/thunar/module.nix new file mode 100644 index 0000000..7a829d0 --- /dev/null +++ b/modules/programs/gui/thunar/module.nix @@ -0,0 +1,23 @@ +{ + 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; + }; +}