qt: allow usage without setting platformTheme
This commit is contained in:
parent
55eee5bd67
commit
1e80a0b3d8
|
@ -173,7 +173,7 @@ in {
|
||||||
+ (makeQtPath "qtQmlPrefix");
|
+ (makeQtPath "qtQmlPrefix");
|
||||||
};
|
};
|
||||||
|
|
||||||
in lib.mkIf (cfg.enable && cfg.platformTheme != null) {
|
in lib.mkIf cfg.enable {
|
||||||
assertions = [{
|
assertions = [{
|
||||||
assertion = cfg.platformTheme == "gnome" -> cfg.style.name != null
|
assertion = cfg.platformTheme == "gnome" -> cfg.style.name != null
|
||||||
&& cfg.style.package != null;
|
&& cfg.style.package != null;
|
||||||
|
@ -206,8 +206,8 @@ in {
|
||||||
++ lib.optionals (cfg.style.package != null)
|
++ lib.optionals (cfg.style.package != null)
|
||||||
(lib.toList cfg.style.package);
|
(lib.toList cfg.style.package);
|
||||||
|
|
||||||
xsession.importedVariables =
|
xsession.importedVariables = [ "QT_PLUGIN_PATH" "QML2_IMPORT_PATH" ]
|
||||||
[ "QT_QPA_PLATFORMTHEME" "QT_PLUGIN_PATH" "QML2_IMPORT_PATH" ]
|
++ lib.optionals (cfg.platformTheme != null) [ "QT_QPA_PLATFORMTHEME" ]
|
||||||
++ lib.optionals (cfg.style.name != null) [ "QT_STYLE_OVERRIDE" ];
|
++ lib.optionals (cfg.style.name != null) [ "QT_STYLE_OVERRIDE" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue