about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2024-05-27 14:03:46 +0200
committerGitHub <noreply@github.com>2024-05-27 14:03:46 +0200
commit77e9384f0f7cb5747e4d949ec5f74ab77650e457 (patch)
tree8699b13989c93156f2ef375aaef3dab20e893da5 /nixos
parentf37d2a285a125b3ff6bfb459c4bc929b1b77ccfe (diff)
parent7e492aff4b23e27915771b4a979527020bbd59d2 (diff)
Merge pull request #314428 from SuperSandro2000/nox-gst
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/config/no-x-libs.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/nixos/modules/config/no-x-libs.nix b/nixos/modules/config/no-x-libs.nix
index 2f6d6f356475b..87b6fea92ba4a 100644
--- a/nixos/modules/config/no-x-libs.nix
+++ b/nixos/modules/config/no-x-libs.nix
@@ -46,8 +46,9 @@ with lib;
       graphviz = super.graphviz-nox;
       gst_all_1 = super.gst_all_1 // {
         gst-plugins-bad = super.gst_all_1.gst-plugins-bad.override { guiSupport = false; };
-        gst-plugins-base = super.gst_all_1.gst-plugins-base.override { enableWayland = false; enableX11 = false; };
+        gst-plugins-base = super.gst_all_1.gst-plugins-base.override { enableGl = false; enableWayland = false; enableX11 = false; };
         gst-plugins-good = super.gst_all_1.gst-plugins-good.override { enableWayland = false; enableX11 = false; gtkSupport = false; qt5Support = false; qt6Support = false; };
+        gst-plugins-rs = super.gst_all_1.gst-plugins-rs.override { withGtkPlugins = false; };
       };
       imagemagick = super.imagemagick.override { libX11Support = false; libXtSupport = false; };
       imagemagickBig = super.imagemagickBig.override { libX11Support = false; libXtSupport = false; };