From e383d992449db46444237422b316e6b37d528217 Mon Sep 17 00:00:00 2001 From: Xavier Vello Date: Tue, 6 Aug 2019 21:53:30 +0200 Subject: [PATCH] Add bluez-qt as an explicit dependency of plasma5 When bluetooth is enabled, we install bluedevil, but its applet cannot work without the qml components in bluez-qt. Superseedes #65440 that failed to address the issue. --- nixos/modules/services/x11/desktop-managers/plasma5.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix index 6d148fba895..94a307ae100 100644 --- a/nixos/modules/services/x11/desktop-managers/plasma5.nix +++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix @@ -178,7 +178,7 @@ in ++ lib.optional (cfg.phononBackend == "vlc" && cfg.enableQt4Support) pkgs.phonon-backend-vlc # Optional hardware support features - ++ lib.optional config.hardware.bluetooth.enable bluedevil + ++ lib.optionals config.hardware.bluetooth.enable [ bluedevil bluez-qt ] ++ lib.optional config.networking.networkmanager.enable plasma-nm ++ lib.optional config.hardware.pulseaudio.enable plasma-pa ++ lib.optional config.powerManagement.enable powerdevil