mirror of
https://github.com/nix-community/home-manager
synced 2024-11-26 21:19:45 +01:00
qt: remove remaining Qt 4 support
Qt 4 was removed from nixpkgs so it doesn't make sense to support it anymore.
This commit is contained in:
parent
05649393ac
commit
b4ea37c633
1 changed files with 1 additions and 10 deletions
|
@ -38,7 +38,7 @@ in {
|
|||
|
||||
options = {
|
||||
qt = {
|
||||
enable = mkEnableOption "Qt 4, 5 and 6 configuration";
|
||||
enable = mkEnableOption "Qt 5 and 6 configuration";
|
||||
|
||||
platformTheme = mkOption {
|
||||
type = types.nullOr (types.enum [ "gtk" "gnome" "qtct" "kde" ]);
|
||||
|
@ -170,14 +170,5 @@ in {
|
|||
|
||||
xsession.importedVariables = [ "QT_QPA_PLATFORMTHEME" ]
|
||||
++ lib.optionals (cfg.style.name != null) [ "QT_STYLE_OVERRIDE" ];
|
||||
|
||||
# Enable GTK+ style for Qt4 in Gtk/GNOME.
|
||||
# It doesn’t support the platform theme packages.
|
||||
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+
|
||||
'');
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue