about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2024-05-25 01:55:50 +0200
committerSandro Jäckel <sandro.jaeckel@gmail.com>2024-05-25 02:36:13 +0200
commitb9ec2c14d809dddff656cbcb4a65d4202541018a (patch)
treee7143a8c000e29c92315c59a49b8afa9938be4ad /nixos
parent2a8e5155c9f73137174ce6d1a043f7628cf5489b (diff)
nixos/no-x-libs: fix mpv build by disabling drmSupport, disable more GUI only relevant features
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/config/no-x-libs.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/no-x-libs.nix b/nixos/modules/config/no-x-libs.nix
index b31b812b153e1..eb593b2e7729f 100644
--- a/nixos/modules/config/no-x-libs.nix
+++ b/nixos/modules/config/no-x-libs.nix
@@ -58,7 +58,7 @@ with lib;
       libva = super.libva-minimal;
       limesuite = super.limesuite.override { withGui = false; };
       mc = super.mc.override { x11Support = false; };
-      mpv-unwrapped = super.mpv-unwrapped.override { sdl2Support = false; x11Support = false; waylandSupport = false; };
+      mpv-unwrapped = super.mpv-unwrapped.override { drmSupport = false; screenSaverSupport = false; sdl2Support = false; vulkanSupport = false; waylandSupport = false; x11Support = false; };
       msmtp = super.msmtp.override { withKeyring = false; };
       mupdf = super.mupdf.override { enableGL = false; enableX11 = false; };
       neofetch = super.neofetch.override { x11Support = false; };