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"; + }; }; }; }