From a9c0c4d934fe2ce812c21699b24a7ce5107af385 Mon Sep 17 00:00:00 2001 From: Superredstone Date: Tue, 17 Feb 2026 08:52:56 +0100 Subject: [PATCH] feat(gnome): add thunar plugins --- modules/nix-config/de.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/nix-config/de.nix b/modules/nix-config/de.nix index 7eba640..f648679 100644 --- a/modules/nix-config/de.nix +++ b/modules/nix-config/de.nix @@ -63,6 +63,16 @@ pkgs.kdePackages.kdeconnect-kde; }; + programs.thunar.plugins = + with pkgs.xfce; + lib.mkIf (currentSystemDe == "gnome") [ ] + ++ [ + thunar-archive-plugin + thunar-media-tags-plugin + thunar-vcs-plugin + tumbler + ]; + # Hack to fix "Your GStreamer installation is missing a plug-in." inside of Nautilus environment.sessionVariables.GST_PLUGIN_SYSTEM_PATH_1_0 = lib.makeSearchPathOutput "lib" "lib/gstreamer-1.0"