about summary refs log tree commit diff stats
path: root/system
diff options
context:
space:
mode:
authorene <ene@sils.li>2023-03-12 20:57:05 +0100
committerene <ene@sils.li>2023-03-12 20:59:19 +0100
commit76d5ddd949f940be114302001a14aa1f25634b02 (patch)
tree8417f18025d123bd983a30d6c25d5a30a0c8b46f /system
parentFix(system): Activate hardware_video_acceleration (diff)
downloadnixos-config-76d5ddd949f940be114302001a14aa1f25634b02.tar.gz
nixos-config-76d5ddd949f940be114302001a14aa1f25634b02.zip
Fix(system): Remove the Intel specific things
Diffstat (limited to 'system')
-rw-r--r--system/graphics/default.nix7
1 files changed, 0 insertions, 7 deletions
diff --git a/system/graphics/default.nix b/system/graphics/default.nix
index dba4ba90..65f88daa 100644
--- a/system/graphics/default.nix
+++ b/system/graphics/default.nix
@@ -3,17 +3,11 @@
   pkgs,
   ...
 }: {
-  nixpkgs.config.packageOverrides = pkgs: {
-    vaapiIntel = pkgs.vaapiIntel.override {enableHybridCodec = true;};
-  };
   hardware.opengl = {
     enable = true;
     extraPackages = builtins.attrValues {
-      # TODO should this activate intel stuff here?
       inherit
         (pkgs)
-        intel-media-driver # LIBVA_DRIVER_NAME=iHD
-        vaapiIntel # LIBVA_DRIVER_NAME=i965 (older but works better for Firefox/Chromium)
         vaapiVdpau
         libvdpau-va-gl
         ;
@@ -21,4 +15,3 @@
   };
 }
 # vim: ts=2
-