From 381b0cec9150f646d654de9a325178068a8253c8 Mon Sep 17 00:00:00 2001 From: Superredstone Date: Fri, 13 Feb 2026 10:24:34 +0100 Subject: [PATCH] feat(gnome): fix gstreamer missing plugins --- modules/nix-config/de.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/nix-config/de.nix b/modules/nix-config/de.nix index e40b855..33e12ce 100644 --- a/modules/nix-config/de.nix +++ b/modules/nix-config/de.nix @@ -60,4 +60,13 @@ else pkgs.kdePackages.kdeconnect-kde; }; + + # 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" + [ + pkgs.gst_all_1.gst-plugins-good + pkgs.gst_all_1.gst-plugins-bad + pkgs.gst_all_1.gst-plugins-ugly + ]; }