nixnew/systems/msi/hardware.nix
2025-10-03 23:17:45 -07:00

13 lines
300 B
Nix

{ pkgs, ... }: {
imports = [ ./hardware-configuration.nix ];
environment.variables = {
VDPAU_DRIVER = "radeonsi";
QT_MEDIA_BACKED = "gstreamer"; # ffmpeg can't choose between vdpau and vaapi for some reason
};
hardware.graphics = {
enable = true;
enable32Bit = true;
};
}