summary refs log tree commit diff
path: root/nixos/modules/programs/qt5ct.nix
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2017-07-23 12:56:04 +0300
committergnidorah <gnidorah@users.noreply.github.com>2017-07-23 12:56:04 +0300
commit9f61c7f947e256f12a2952e316007e3fbc74316c (patch)
treeccaf344a5230a65d6b04cfdb56d86a33248520de /nixos/modules/programs/qt5ct.nix
parent3e430a8ee55813f5d2b128316bf599924f084908 (diff)
downloadnixlib-9f61c7f947e256f12a2952e316007e3fbc74316c.tar
nixlib-9f61c7f947e256f12a2952e316007e3fbc74316c.tar.gz
nixlib-9f61c7f947e256f12a2952e316007e3fbc74316c.tar.bz2
nixlib-9f61c7f947e256f12a2952e316007e3fbc74316c.tar.lz
nixlib-9f61c7f947e256f12a2952e316007e3fbc74316c.tar.xz
nixlib-9f61c7f947e256f12a2952e316007e3fbc74316c.tar.zst
nixlib-9f61c7f947e256f12a2952e316007e3fbc74316c.zip
qt5ct module: expose qtstyleplugins
Diffstat (limited to 'nixos/modules/programs/qt5ct.nix')
-rw-r--r--nixos/modules/programs/qt5ct.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/programs/qt5ct.nix b/nixos/modules/programs/qt5ct.nix
index 550634e65be9..aeb7fc508495 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 = [ pkgs.qt5ct ];
+    environment.systemPackages = with pkgs; [ qt5ct libsForQt5.qtstyleplugins ];
   };
 }