From 7fefb9440017fc7627b995db3ca07de98a05e7e9 Mon Sep 17 00:00:00 2001 From: ooks-io Date: Sun, 28 Jul 2024 15:39:45 +1200 Subject: [PATCH] feat(home:qt): add qt related packages --- home/modules/appearance/qt.nix | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) 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 + ]; }; } -