Skip to content

Commit

Permalink
nixos/plasma6: default to Wayland for SDDM
Browse files Browse the repository at this point in the history
While technically still experimental, it seems to produce less
issues than X11 at this point, and there's a weird issue with
X11 setups that we've been unable to track down that really
hurts the new user experience, so let's just go with this.
  • Loading branch information
K900 committed Dec 25, 2024
1 parent 7352e1a commit 7a2cb2a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion nixos/modules/services/desktop-managers/plasma6.nix
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,10 @@ in
services.displayManager.sddm = {
package = kdePackages.sddm;
theme = mkDefault "breeze";
wayland.compositor = "kwin";
wayland = mkDefault {
enable = true;
compositor = "kwin";
};
extraPackages = with kdePackages; [
breeze-icons
kirigami
Expand Down

0 comments on commit 7a2cb2a

Please sign in to comment.