From 304f14ac57f1fc7448dccd1d0b70d6cb49dd1569 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Sun, 6 Apr 2025 14:03:18 +0200 Subject: [PATCH] thunar: add gvfs --- modules/programs/gui/thunar/module.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 modules/programs/gui/thunar/module.nix 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; + }; +}