From 87b1cce77d4818afc3458e3f8f35996f23335b48 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Fri, 5 Jul 2024 19:17:44 +0200 Subject: [PATCH] chore(morty): change OpenGL parameters regarding Nix evolution --- hosts/morty/hardware-configuration.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/hosts/morty/hardware-configuration.nix b/hosts/morty/hardware-configuration.nix index e29fc34..d2ccc01 100644 --- a/hosts/morty/hardware-configuration.nix +++ b/hosts/morty/hardware-configuration.nix @@ -43,10 +43,8 @@ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; - hardware.opengl.enable = true; - hardware.opengl.driSupport = true; - hardware.opengl.driSupport32Bit = true; - hardware.opengl.extraPackages = with pkgs; [ + hardware.graphics.enable32Bit = true; + hardware.graphics.extraPackages = with pkgs; [ intel-media-driver ]; }