From 14aeaed0fffc613fd4fea034d0fac97ec4c2017d Mon Sep 17 00:00:00 2001 From: 514fpv Date: Sun, 28 Jan 2024 11:25:17 +0800 Subject: [PATCH] fix(gui): disable hm qt config for plasma This module breaks the wayland session. --- home/gui/home.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/gui/home.nix b/home/gui/home.nix index db833554..58e3d73b 100644 --- a/home/gui/home.nix +++ b/home/gui/home.nix @@ -22,8 +22,8 @@ }; # unify qt theme - qt.platformTheme = mkDefault "gtk"; + qt.platformTheme = mkIf (!config.passthrough.plasma.enable) "gtk"; gtk.enable = mkDefault true; - qt.enable = mkDefault true; + qt.enable = mkDefault (!config.passthrough.plasma.enable); }