Open NovaViper opened 8 months ago
I experienced the same issue after just upgrading to nixos-24.05 (and going from services.xserver.desktopManager.plasma5.enable
to services.desktopManager.plasma6.enable
in the process).
For now I've set qt.enable = false
in my Home Manager config and the System Settings app has become usable again.
Thank you for your contribution! I marked this issue as stale due to inactivity. Please be considerate of people watching this issue and receiving notifications before commenting 'I have this issue too'. We welcome additional information that will help resolve this issue. Please read the relevant sections below before commenting.
* If this is resolved, please consider closing it so that the maintainers know not to focus on this. * If this might still be an issue, but you are not interested in promoting its resolution, please consider closing it while encouraging others to take over and reopen an issue if they care enough. * If you know how to solve the issue, please consider submitting a Pull Request that addresses this issue.
* If you are also experiencing this issue, please add details of your situation to help with the debugging process. * If you know how to solve the issue, please consider submitting a Pull Request that addresses this issue.
Don't be afraid to manually close an issue, even if it holds valuable information. Closed issues stay in the system for people to search, read, cross-reference, or even reopen – nothing is lost! Closing obsolete issues is an important way to help maintainers focus their time and effort.
This issue is still present. For those searching for a workaround, here is my config before the issue:
qt = {
enable = true;
platformTheme.name = "kde";
style.name = "Breeze";
}
and after:
# Technically not related to this issue, but still useful
xdg.configFile."menus/applications.menu".source = "${pkgs.kdePackages.plasma-workspace}/etc/xdg/menus/plasma-applications.menu";
qt = {
enable = true;
platformTheme.package = with pkgs.kdePackages; [
plasma-integration
# I don't remember why I put this is here, maybe it fixes the theme of the system setttings
systemsettings
];
style = {
package = pkgs.kdePackages.breeze;
name = "Breeze";
};
};
systemd.user.sessionVariables = { QT_QPA_PLATFORMTHEME = "kde"; };
Are you following the right branch?
Is there an existing issue for this?
Issue description
If I set
qt.platformTheme
to"kde"
, it installs all of the packages meant for KDE Plasma 5; which works fine on Plasma 5 but it completely breaks Plasma 6 (it makes many core system settings disappear from the System Settings app, like the Display Configuration and more). there should be an option for KDE Plasma 6 so it can install the packages underkdePackages
(which is where all of the Plasma6/QT6 packages are coming from) instead oflibsForQt5
.Maintainer CC
@rycee @thiagokokada
System information