From 2cad0bf088ff6705912e4174ce82e85465c72b0a Mon Sep 17 00:00:00 2001 From: Aly Raffauf Date: Tue, 10 Dec 2024 15:59:11 -0500 Subject: [PATCH] qt: install kio when qt.platformTheme = "kde" --- nixos/modules/config/qt.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nixos/modules/config/qt.nix b/nixos/modules/config/qt.nix index bf050f17620c47..e2c2c1a1cd783d 100644 --- a/nixos/modules/config/qt.nix +++ b/nixos/modules/config/qt.nix @@ -6,7 +6,11 @@ let platformPackages = with pkgs; { gnome = [ qgnomeplatform qgnomeplatform-qt6 ]; gtk2 = [ libsForQt5.qtstyleplugins qt6Packages.qt6gtk2 ]; - kde = [ libsForQt5.plasma-integration libsForQt5.systemsettings ]; + kde = [ + libsForQt5.kio + libsForQt5.plasma-integration + libsForQt5.systemsettings + ]; lxqt = [ lxqt.lxqt-qtplugin lxqt.lxqt-config ]; qt5ct = [ libsForQt5.qt5ct qt6Packages.qt6ct ]; };