From 8be2aed2950ed7a0e0dcc270d74f28b6600c1e59 Mon Sep 17 00:00:00 2001 From: Taha <62564400+mt190502@users.noreply.github.com> Date: Mon, 3 Feb 2025 22:08:32 +0300 Subject: [PATCH] qt: fix qt6ct directory name (#830) Link: https://github.com/danth/stylix/pull/830 Fixes: b7f50a56c3cc ("qt: add flexible theming with sensible defaults (#780)") Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> --- modules/qt/hm.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/qt/hm.nix b/modules/qt/hm.nix index ee3283bb..fc42d4f8 100644 --- a/modules/qt/hm.nix +++ b/modules/qt/hm.nix @@ -96,7 +96,7 @@ (lib.mkIf (config.qt.platformTheme.name == "qtct") { "qt5ct/qt5ct.conf".text = qtctConf; - "qt5ct/qt6ct.conf".text = qtctConf; + "qt6ct/qt6ct.conf".text = qtctConf; }) ]; }