From 7362bccc8271845383acbc7addc654389f0ff509 Mon Sep 17 00:00:00 2001 From: Luigi Sartor Piucco Date: Tue, 2 Mar 2021 16:17:53 -0300 Subject: [PATCH] nixos/steam: enable 64 bit DRI by default --- nixos/modules/programs/steam.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/programs/steam.nix b/nixos/modules/programs/steam.nix index 6e9b7729ad6..6b805c374a0 100644 --- a/nixos/modules/programs/steam.nix +++ b/nixos/modules/programs/steam.nix @@ -17,6 +17,7 @@ in { config = mkIf cfg.enable { hardware.opengl = { # this fixes the "glXChooseVisual failed" bug, context: https://github.com/NixOS/nixpkgs/issues/47932 enable = true; + driSupport = true; driSupport32Bit = true; };