From d3d266bf9bbda95d6d33968998fee89fc06f742d Mon Sep 17 00:00:00 2001 From: Bloxx12 Date: Sat, 19 Jul 2025 00:37:23 +0200 Subject: [PATCH] qt: enable qt and set platformTheme to qt5ct --- modules/style/qt.mod.nix | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/modules/style/qt.mod.nix b/modules/style/qt.mod.nix index 77413e4..316c8cf 100644 --- a/modules/style/qt.mod.nix +++ b/modules/style/qt.mod.nix @@ -34,7 +34,10 @@ in { }; }; - config = - mkIf cfg.enable { + config = mkIf cfg.enable { + qt = { + enable = true; + platformTheme = "qt5ct"; }; + }; }