From 79bc6161364f34e2b9dc03c5e28ee063a932dbb2 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Fri, 21 Jun 2024 15:42:14 -0500 Subject: [PATCH] refactor(nix/host/orion): use `hardware.graphics` instead of `hardware.opengl` `hardware.opengl` was renamed/deprecated --- hosts/orion/modules/graphical.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/orion/modules/graphical.nix b/hosts/orion/modules/graphical.nix index dd80c5e4..3440a357 100644 --- a/hosts/orion/modules/graphical.nix +++ b/hosts/orion/modules/graphical.nix @@ -26,6 +26,6 @@ ]; }; }; - hardware.opengl.enable = true; + hardware.graphics.enable = true; services.spice-vdagentd.enable = true; }