lol

nixos/gnome: Do not force Qt apps to Adwaita

adwaita-qt tries valiantly to ensure a visual consistency
but unfortunately, it often falls into an uncanny valley instead.
Let’s make it opt-in again for more vanilla default experience.

Related: https://pagure.io/fedora-workstation/issue/351

+10 -7
+10
nixos/doc/manual/release-notes/rl-2311.section.md
··· 140 140 141 141 - The Cinnamon module now enables XDG desktop integration by default. If you are experiencing collisions related to xdg-desktop-portal-gtk you can safely remove `xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];` from your NixOS configuration. 142 142 143 + - GNOME module no longer forces Qt applications to use Adwaita style since it was buggy and is no longer maintained upstream. If you still want it, you can add the following options to your configuration but it will probably be eventually removed: 144 + 145 + ```nix 146 + qt = { 147 + enable = true; 148 + platformTheme = "gnome"; 149 + style = "adwaita"; 150 + }; 151 + ``` 152 + 143 153 - `fontconfig` now defaults to using greyscale antialiasing instead of subpixel antialiasing because of a [recommendation from one of the downstreams](https://gitlab.freedesktop.org/fontconfig/fontconfig/-/issues/337). You can change this value by configuring [](#opt-fonts.fontconfig.subpixel.rgba) accordingly. 144 154 145 155 - The latest available version of Nextcloud is v27 (available as `pkgs.nextcloud27`). The installation logic is as follows:
-7
nixos/modules/services/x11/desktop-managers/gnome.nix
··· 352 352 }) 353 353 ]; 354 354 355 - # Harmonize Qt application style and also make them use the portal for file chooser dialog. 356 - qt = { 357 - enable = mkDefault true; 358 - platformTheme = mkDefault "gnome"; 359 - style = mkDefault "adwaita"; 360 - }; 361 - 362 355 networking.networkmanager.enable = mkDefault true; 363 356 364 357 services.xserver.updateDbusEnvironment = true;