2018-05-17 19:39:26 +02:00
|
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
|
|
cfg = config.qt;
|
|
|
|
|
|
2023-02-20 12:30:29 +01:00
|
|
|
|
# Maps known lowercase style names to style packages. Non-exhaustive.
|
|
|
|
|
stylePackages = with pkgs; {
|
|
|
|
|
bb10bright = libsForQt5.qtstyleplugins;
|
|
|
|
|
bb10dark = libsForQt5.qtstyleplugins;
|
|
|
|
|
cleanlooks = libsForQt5.qtstyleplugins;
|
|
|
|
|
gtk2 = libsForQt5.qtstyleplugins;
|
|
|
|
|
motif = libsForQt5.qtstyleplugins;
|
|
|
|
|
cde = libsForQt5.qtstyleplugins;
|
|
|
|
|
plastique = libsForQt5.qtstyleplugins;
|
|
|
|
|
|
|
|
|
|
adwaita = adwaita-qt;
|
|
|
|
|
adwaita-dark = adwaita-qt;
|
|
|
|
|
adwaita-highcontrast = adwaita-qt;
|
|
|
|
|
adwaita-highcontrastinverse = adwaita-qt;
|
|
|
|
|
|
|
|
|
|
breeze = libsForQt5.breeze-qt5;
|
2023-06-15 16:06:07 +02:00
|
|
|
|
|
2023-09-26 16:25:02 +02:00
|
|
|
|
kvantum =
|
|
|
|
|
[ libsForQt5.qtstyleplugin-kvantum qt6Packages.qtstyleplugin-kvantum ];
|
2023-02-20 12:30:29 +01:00
|
|
|
|
};
|
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
|
in {
|
2023-06-15 20:09:30 +02:00
|
|
|
|
meta.maintainers = with maintainers; [ rycee thiagokokada ];
|
2018-05-17 19:39:26 +02:00
|
|
|
|
|
2019-03-31 16:01:41 +02:00
|
|
|
|
imports = [
|
2020-02-02 00:39:17 +01:00
|
|
|
|
(mkChangedOptionModule [ "qt" "useGtkTheme" ] [ "qt" "platformTheme" ]
|
2019-03-31 16:01:41 +02:00
|
|
|
|
(config:
|
2020-02-02 00:39:17 +01:00
|
|
|
|
if getAttrFromPath [ "qt" "useGtkTheme" ] config then "gtk" else null))
|
2019-03-31 16:01:41 +02:00
|
|
|
|
];
|
|
|
|
|
|
2018-05-17 19:39:26 +02:00
|
|
|
|
options = {
|
|
|
|
|
qt = {
|
2023-07-02 01:45:18 +02:00
|
|
|
|
enable = mkEnableOption "Qt 4, 5 and 6 configuration";
|
2018-05-17 19:39:26 +02:00
|
|
|
|
|
2019-03-31 16:01:41 +02:00
|
|
|
|
platformTheme = mkOption {
|
2023-06-15 16:06:07 +02:00
|
|
|
|
type = types.nullOr (types.enum [ "gtk" "gnome" "qtct" "kde" ]);
|
2019-03-31 16:01:41 +02:00
|
|
|
|
default = null;
|
|
|
|
|
example = "gnome";
|
2023-06-15 16:06:07 +02:00
|
|
|
|
relatedPackages = [
|
|
|
|
|
"qgnomeplatform"
|
|
|
|
|
[ "libsForQt5" "qtstyleplugins" ]
|
|
|
|
|
[ "libsForQt5" "qt5ct" ]
|
|
|
|
|
[ "qt6Packages" "qt6ct" ]
|
|
|
|
|
[ "libsForQt5" "plasma-integration" ]
|
|
|
|
|
[ "libsForQt5" "systemsettings" ]
|
|
|
|
|
];
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2023-07-01 02:40:42 +02:00
|
|
|
|
Platform theme to use for Qt applications.
|
|
|
|
|
|
|
|
|
|
The options are
|
|
|
|
|
|
|
|
|
|
`gtk`
|
|
|
|
|
: Use GTK theme with
|
|
|
|
|
[`qtstyleplugins`](https://github.com/qt/qtstyleplugins)
|
|
|
|
|
|
|
|
|
|
`gnome`
|
|
|
|
|
: Use GNOME theme with
|
|
|
|
|
[`qgnomeplatform`](https://github.com/FedoraQt/QGnomePlatform)
|
|
|
|
|
|
|
|
|
|
`qtct`
|
|
|
|
|
: Use Qt style set using
|
|
|
|
|
[`qt5ct`](https://github.com/desktop-app/qt5ct)
|
|
|
|
|
and [`qt6ct`](https://github.com/trialuser02/qt6ct)
|
|
|
|
|
applications
|
|
|
|
|
|
|
|
|
|
`kde`
|
|
|
|
|
: Use Qt settings from Plasma
|
2018-05-17 19:39:26 +02:00
|
|
|
|
'';
|
|
|
|
|
};
|
2021-03-04 04:20:17 +01:00
|
|
|
|
|
|
|
|
|
style = {
|
|
|
|
|
name = mkOption {
|
|
|
|
|
type = types.nullOr types.str;
|
|
|
|
|
default = null;
|
|
|
|
|
example = "adwaita-dark";
|
2023-06-15 16:06:07 +02:00
|
|
|
|
relatedPackages = [
|
|
|
|
|
"adwaita-qt"
|
2023-06-16 15:33:15 +02:00
|
|
|
|
[ "libsForQt5" "breeze-qt5" ]
|
2023-06-15 16:06:07 +02:00
|
|
|
|
[ "libsForQt5" "qtstyleplugins" ]
|
|
|
|
|
[ "libsForQt5" "qtstyleplugin-kvantum" ]
|
2023-06-15 20:09:30 +02:00
|
|
|
|
[ "qt6Packages" "qtstyleplugin-kvantum" ]
|
2023-06-15 16:06:07 +02:00
|
|
|
|
];
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2023-06-15 20:09:30 +02:00
|
|
|
|
Style to use for Qt5/Qt6 applications. Case-insensitive.
|
2023-07-01 02:40:42 +02:00
|
|
|
|
|
|
|
|
|
Some examples are
|
|
|
|
|
|
|
|
|
|
`adwaita`, `adwaita-dark`, `adwaita-highcontrast`, `adwaita-highcontrastinverse`
|
|
|
|
|
: Use the Adwaita style from
|
|
|
|
|
[`adwaita-qt`](https://github.com/FedoraQt/adwaita-qt)
|
|
|
|
|
|
|
|
|
|
`breeze`
|
|
|
|
|
: Use the Breeze style from
|
|
|
|
|
[`breeze`](https://github.com/KDE/breeze)
|
|
|
|
|
|
|
|
|
|
`bb10bright`, `bb10dark`, `cde`, `cleanlooks`, `gtk2`, `motif`, `plastique`
|
|
|
|
|
: Use styles from
|
|
|
|
|
[`qtstyleplugins`](https://github.com/qt/qtstyleplugins)
|
|
|
|
|
|
|
|
|
|
`kvantum`
|
|
|
|
|
: Use styles from
|
|
|
|
|
[`kvantum`](https://github.com/tsujan/Kvantum)
|
2021-03-04 04:20:17 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
package = mkOption {
|
2023-06-15 20:09:30 +02:00
|
|
|
|
type = with types; nullOr (either package (listOf package));
|
2021-03-04 04:20:17 +01:00
|
|
|
|
default = null;
|
2021-10-09 11:14:08 +02:00
|
|
|
|
example = literalExpression "pkgs.adwaita-qt";
|
2023-07-02 01:45:18 +02:00
|
|
|
|
description = ''
|
2023-06-15 20:09:30 +02:00
|
|
|
|
Theme package to be used in Qt5/Qt6 applications.
|
2023-07-01 01:30:13 +02:00
|
|
|
|
Auto-detected from {option}`qt.style.name` if possible.
|
2023-02-20 12:30:29 +01:00
|
|
|
|
'';
|
2021-03-04 04:20:17 +01:00
|
|
|
|
};
|
|
|
|
|
};
|
2018-05-17 19:39:26 +02:00
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2023-08-17 10:27:17 +02:00
|
|
|
|
config = let
|
|
|
|
|
|
|
|
|
|
# Necessary because home.sessionVariables doesn't support mkIf
|
|
|
|
|
envVars = filterAttrs (n: v: v != null) {
|
|
|
|
|
QT_QPA_PLATFORMTHEME = if cfg.platformTheme == "gtk" then
|
|
|
|
|
"gtk2"
|
|
|
|
|
else if cfg.platformTheme == "qtct" then
|
|
|
|
|
"qt5ct"
|
|
|
|
|
else
|
|
|
|
|
cfg.platformTheme;
|
|
|
|
|
QT_STYLE_OVERRIDE = cfg.style.name;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
in mkIf (cfg.enable && cfg.platformTheme != null) {
|
2021-03-04 04:20:17 +01:00
|
|
|
|
assertions = [{
|
2023-02-20 12:30:29 +01:00
|
|
|
|
assertion = cfg.platformTheme == "gnome" -> cfg.style.name != null
|
|
|
|
|
&& cfg.style.package != null;
|
2021-03-04 04:20:17 +01:00
|
|
|
|
message = ''
|
|
|
|
|
`qt.platformTheme` "gnome" must have `qt.style` set to a theme that
|
2023-02-20 12:30:29 +01:00
|
|
|
|
supports both Qt and Gtk, for example "adwaita", "adwaita-dark", or "breeze".
|
2021-03-04 04:20:17 +01:00
|
|
|
|
'';
|
|
|
|
|
}];
|
|
|
|
|
|
2023-02-20 12:30:29 +01:00
|
|
|
|
qt.style.package = mkIf (cfg.style.name != null)
|
|
|
|
|
(mkDefault (stylePackages.${toLower cfg.style.name} or null));
|
|
|
|
|
|
2023-08-17 10:27:17 +02:00
|
|
|
|
home.sessionVariables = envVars;
|
|
|
|
|
|
|
|
|
|
# Apply theming also to apps started by systemd.
|
|
|
|
|
systemd.user.sessionVariables = envVars;
|
2019-03-31 16:01:41 +02:00
|
|
|
|
|
2023-06-15 20:09:30 +02:00
|
|
|
|
home.packages = (if cfg.platformTheme == "gnome" then
|
2020-02-02 00:39:17 +01:00
|
|
|
|
[ pkgs.qgnomeplatform ]
|
2023-06-15 16:06:07 +02:00
|
|
|
|
else if cfg.platformTheme == "qtct" then [
|
|
|
|
|
pkgs.libsForQt5.qt5ct
|
|
|
|
|
pkgs.qt6Packages.qt6ct
|
|
|
|
|
] else if cfg.platformTheme == "kde" then [
|
2023-06-14 21:16:20 +02:00
|
|
|
|
pkgs.libsForQt5.plasma-integration
|
|
|
|
|
pkgs.libsForQt5.systemsettings
|
|
|
|
|
] else
|
2023-06-15 20:09:30 +02:00
|
|
|
|
[ pkgs.libsForQt5.qtstyleplugins ])
|
|
|
|
|
++ lib.optionals (cfg.style.package != null)
|
|
|
|
|
(lib.toList cfg.style.package);
|
2019-03-31 16:01:41 +02:00
|
|
|
|
|
2021-03-04 04:20:17 +01:00
|
|
|
|
xsession.importedVariables = [ "QT_QPA_PLATFORMTHEME" ]
|
2023-02-20 12:30:29 +01:00
|
|
|
|
++ lib.optionals (cfg.style.name != null) [ "QT_STYLE_OVERRIDE" ];
|
2018-05-17 19:39:26 +02:00
|
|
|
|
|
2023-06-15 20:09:30 +02:00
|
|
|
|
# Enable GTK+ style for Qt4 in Gtk/GNOME.
|
2019-03-31 16:01:41 +02:00
|
|
|
|
# It doesn’t support the platform theme packages.
|
2023-06-15 20:09:30 +02:00
|
|
|
|
home.activation.useGtkThemeInQt4 =
|
|
|
|
|
mkIf (cfg.platformTheme == "gtk" || cfg.platformTheme == "gnome")
|
|
|
|
|
(hm.dag.entryAfter [ "writeBoundary" ] ''
|
|
|
|
|
$DRY_RUN_CMD ${pkgs.crudini}/bin/crudini $VERBOSE_ARG \
|
|
|
|
|
--set "${config.xdg.configHome}/Trolltech.conf" Qt style GTK+
|
|
|
|
|
'');
|
2018-05-17 19:39:26 +02:00
|
|
|
|
};
|
|
|
|
|
}
|