about summary refs log tree commit diff stats
path: root/hosts/tiamat
diff options
context:
space:
mode:
authorene <ene@sils.com>2023-04-03 07:35:24 +0200
committerene <ene@sils.com>2023-04-03 07:35:24 +0200
commitcea33d7e141b1a20006ec8ef0d7176872bdb60a8 (patch)
treeff6679b831f47088848d22f6654c497907a51839 /hosts/tiamat
parentFix(system/packages): Remove (diff)
downloadnixos-config-cea33d7e141b1a20006ec8ef0d7176872bdb60a8.tar.gz
nixos-config-cea33d7e141b1a20006ec8ef0d7176872bdb60a8.zip
Fix(host/tiamat/gpu): Remove unneeded drivers
This host uses a amd gpu, so intel drivers are useless
Diffstat (limited to 'hosts/tiamat')
-rw-r--r--hosts/tiamat/hardware/gpu.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/hosts/tiamat/hardware/gpu.nix b/hosts/tiamat/hardware/gpu.nix
index 741e8882..9649c770 100644
--- a/hosts/tiamat/hardware/gpu.nix
+++ b/hosts/tiamat/hardware/gpu.nix
@@ -4,14 +4,9 @@
   lib,
   ...
 }: {
-  nixpkgs.config.packageOverrides = pkgs: {
-    vaapiIntel = pkgs.vaapiIntel.override {enableHybridCodec = true;};
-  };
   hardware.opengl = {
     enable = true;
     extraPackages = with pkgs; [
-      intel-media-driver # LIBVA_DRIVER_NAME=iHD
-      vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
       vaapiVdpau
       libvdpau-va-gl
     ];