From 89159f1df8013437d8b307eb0c8d297d9cc7b853 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Tue, 6 Aug 2024 12:20:13 +0200 Subject: [PATCH] Fix QT apps look --- modules/desk-os/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/desk-os/default.nix b/modules/desk-os/default.nix index febfaa1..6cc7079 100644 --- a/modules/desk-os/default.nix +++ b/modules/desk-os/default.nix @@ -171,7 +171,7 @@ # Fix scaling issues with electron apps environment.sessionVariables.NIXOS_OZONE_WL = "1"; - # Fix theming issues with QT apps - environment.sessionVariables.QT_QPA_PLATFORM = "wayland"; - environment.sessionVariables.QT_QPA_PLATFORMTHEME = "qt5ct"; + # Let QT apps follow Gnome theme settings + qt.enable = true; + qt.platformTheme = "qt5ct"; }