diff --git a/home/modules/appearance/qt.nix b/home/modules/appearance/qt.nix index 9165c17..11ec089 100644 --- a/home/modules/appearance/qt.nix +++ b/home/modules/appearance/qt.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: +{ config, lib, pkgs, ... }: let inherit (lib) mkIf; @@ -9,8 +9,17 @@ in config = mkIf cfg.enable { qt = { enable = true; - platformTheme.name = "gtk"; - }; + style.name = "gtk2"; + platformTheme.name = "gtk2"; + }; + + home.packages = with pkgs; [ + libsForQt5.qt5.qtwayland + kdePackages.qtwayland + qt6.qtwayland + kdePackages.qqc2-desktop-style + libsForQt5.qtstyleplugins + qt6Packages.qt6gtk2 + ]; }; } -