From 72c6f86bb4012191ff5699ca066d6c707bf2a622 Mon Sep 17 00:00:00 2001 From: Myned Date: Fri, 25 Oct 2024 13:40:45 -0500 Subject: [PATCH] qt: fix theme for some apps Signed-off-by: Myned --- options/custom/settings/qt.nix | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/options/custom/settings/qt.nix b/options/custom/settings/qt.nix index ed7f9da..28d07b5 100644 --- a/options/custom/settings/qt.nix +++ b/options/custom/settings/qt.nix @@ -8,10 +8,17 @@ with lib; let in { options.custom.settings.qt.enable = mkOption {default = false;}; - config.home-manager.users.${config.custom.username} = mkIf cfg.enable { + config = mkIf cfg.enable { qt = { enable = true; - platformTheme.name = "gtk3"; + style = "gtk2"; + }; + + home-manager.users.${config.custom.username} = { + qt = { + enable = true; + style.name = "gtk"; + }; }; }; }