commit e352b5367fdeb91c29dc934e3e4ccf783fe879d3
parent ce3902763ba8d62c5d76f379ad4ac49fab53e329
Author: Leah (ctucx) <leah@ctu.cx>
Date: Wed, 12 Jan 2022 17:16:32 +0100
parent ce3902763ba8d62c5d76f379ad4ac49fab53e329
Author: Leah (ctucx) <leah@ctu.cx>
Date: Wed, 12 Jan 2022 17:16:32 +0100
configuration/qt: set platform-theme manually
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/configurations/qt.nix b/configurations/qt.nix @@ -2,9 +2,14 @@ { home-manager.users.leah = { - qt = { - enable = true; - platformTheme = "gtk"; + + home.sessionVariables = { + QT_QPA_PLATFORMTHEME = "gnome"; }; + + home.packages = with pkgs; [ + pkgs.qgnomeplatform + ]; + }; }