From 6211458eb12633252eafdcedaca7e568d6603436 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 27 Feb 2024 01:57:21 +0000 Subject: [PATCH] Update configuration.nix --- hosts/x86_64/shepard/configuration.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hosts/x86_64/shepard/configuration.nix b/hosts/x86_64/shepard/configuration.nix index 95a0a99..fbefa0d 100644 --- a/hosts/x86_64/shepard/configuration.nix +++ b/hosts/x86_64/shepard/configuration.nix @@ -4,8 +4,10 @@ # Name your host machine networking.hostName = "shepard"; - ## Enable 32 Bit libraries for applications like Steam - hardware.opengl.driSupport32Bit = true; + hardware.opengl = { + extraPackages = with pkgs; [ libvdpau-va-gl ]; + driSupport32Bit = true; + }; # Allow Unfree nixpkgs.config.allowUnfree = true;