From 4bf695e988a323a2377dadcf2e37f7b6934e3f84 Mon Sep 17 00:00:00 2001 From: Gabriel Ebner Date: Wed, 9 Sep 2020 22:30:32 +0200 Subject: [PATCH] nixos/qt5ct: do not require qtstyleplugins These do not build with qt 5.15. --- nixos/modules/programs/qt5ct.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/programs/qt5ct.nix b/nixos/modules/programs/qt5ct.nix index aeb7fc50849..3f2bcf62283 100644 --- a/nixos/modules/programs/qt5ct.nix +++ b/nixos/modules/programs/qt5ct.nix @@ -26,6 +26,6 @@ with lib; ###### implementation config = mkIf config.programs.qt5ct.enable { environment.variables.QT_QPA_PLATFORMTHEME = "qt5ct"; - environment.systemPackages = with pkgs; [ qt5ct libsForQt5.qtstyleplugins ]; + environment.systemPackages = with pkgs; [ qt5ct ]; }; }