From 57e1dfd1b832a476e4ae9207c6056a421b021b5e Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Sun, 9 Apr 2023 00:29:51 -0400 Subject: [PATCH] Enable opengl on perception --- machines/perception/configuration.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/machines/perception/configuration.nix b/machines/perception/configuration.nix index 89a4d38..73a896c 100644 --- a/machines/perception/configuration.nix +++ b/machines/perception/configuration.nix @@ -52,4 +52,12 @@ # Setup home manager home-manager.users.nathan = import ./home.nix; + + ## Media Streaming setup + # First enable hardware acceleration + hardware.opengl = { + enable = true; + driSupport = true; + driSupport32 = true; + }; }