about summary refs log tree commit diff
path: root/nixos/modules/config
diff options
context:
space:
mode:
authorIDF31 <idf31@protonmail.com>2019-11-21 16:32:45 +0200
committerworldofpeace <worldofpeace@protonmail.ch>2019-11-21 10:10:50 -0500
commit61cd421c75f9d15a4094bd0a921d93f53c36ccb2 (patch)
tree6faa0e5ebc8bcb4eab0d3aadd800a5828607b0a4 /nixos/modules/config
parentbad2bed08cee65124a6f6cee1667355bc00d9283 (diff)
downloadnixlib-61cd421c75f9d15a4094bd0a921d93f53c36ccb2.tar
nixlib-61cd421c75f9d15a4094bd0a921d93f53c36ccb2.tar.gz
nixlib-61cd421c75f9d15a4094bd0a921d93f53c36ccb2.tar.bz2
nixlib-61cd421c75f9d15a4094bd0a921d93f53c36ccb2.tar.lz
nixlib-61cd421c75f9d15a4094bd0a921d93f53c36ccb2.tar.xz
nixlib-61cd421c75f9d15a4094bd0a921d93f53c36ccb2.tar.zst
nixlib-61cd421c75f9d15a4094bd0a921d93f53c36ccb2.zip
nixos/qt5: use correct qtstyleplugins attribute
Diffstat (limited to 'nixos/modules/config')
-rw-r--r--nixos/modules/config/qt5.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/config/qt5.nix b/nixos/modules/config/qt5.nix
index 7de1c0f5d557..d9dec74f1552 100644
--- a/nixos/modules/config/qt5.nix
+++ b/nixos/modules/config/qt5.nix
@@ -10,7 +10,7 @@ let
   isQtStyle = cfg.platformTheme == "gtk2" && cfg.style != "adwaita";
 
   packages = if isQGnome then [ pkgs.qgnomeplatform pkgs.adwaita-qt ]
-    else if isQtStyle then [ pkgs.qtstyleplugins ]
+    else if isQtStyle then [ pkgs.libsForQt5.qtstyleplugins ]
     else throw "`qt5.platformTheme` ${cfg.platformTheme} and `qt5.style` ${cfg.style} are not compatible.";
 
 in