From c6cac8bc4b43cad0d3cba4e6b665a183552de92b Mon Sep 17 00:00:00 2001 From: Daniel Barlow Date: Thu, 15 May 2025 18:42:11 +0100 Subject: [PATCH] disable opengl to avoid Satellite app crashes with kernel oops --- configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 31a5416..4ebe854 100644 --- a/configuration.nix +++ b/configuration.nix @@ -114,6 +114,10 @@ in { maps qmi-nmea ]; + environment.sessionVariables = { + GSK_RENDERER = "cairo"; # gl is crashing with Satellite app + }; + users.users.dan = { isNormalUser = true; @@ -125,7 +129,7 @@ in { users.users.root.openssh.authorizedKeys.keys = import ../telent-nixos-config/users/dan/authorized-keys.nix; hardware.opengl = { - enable = true; driSupport = true; + # enable = true; driSupport = true; }; systemd.services = {