From de9327e3c40d026f1887157ec09cb2c0fe6659d1 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Tue, 27 Feb 2024 08:43:09 +0100 Subject: [PATCH] Enable support for qt6 themes previously only qt5 were working --- home/features/desktop/common/theming.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home/features/desktop/common/theming.nix b/home/features/desktop/common/theming.nix index 2c95830..d4a2606 100644 --- a/home/features/desktop/common/theming.nix +++ b/home/features/desktop/common/theming.nix @@ -22,7 +22,7 @@ qt = { enable = true; platformTheme = "gtk"; - style.package = pkgs.adwaita-qt; + style.package = with pkgs; [adwaita-qt adwaita-qt6]; style.name = "adwaita-dark"; };