From d2347c58735bb78ef362ff3c262c3a55ecf48807 Mon Sep 17 00:00:00 2001 From: Dixon Sean Low Yan Feng Date: Thu, 4 Jul 2024 13:36:08 +0800 Subject: [PATCH] fix(planet/hm/qt): use `gtk3` platform theme Used to be `gtk`, which seems to be GTK 2. Since the `catppuccin-gtk` package does not work with GTK 2 any more, Qt programs were not themed correctly. --- planet/modules/home-manager/qt/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planet/modules/home-manager/qt/default.nix b/planet/modules/home-manager/qt/default.nix index 06c80b7..343f92d 100644 --- a/planet/modules/home-manager/qt/default.nix +++ b/planet/modules/home-manager/qt/default.nix @@ -20,7 +20,7 @@ mkIf cfg.enable { qt = { enable = true; - platformTheme.name = "gtk"; + platformTheme.name = "gtk3"; }; }; }