KDE: Difference between revisions
Add Tips and tricks section |
Copy edit and reorder sections |
||
Line 69: | Line 69: | ||
For more details, see [https://discourse.nixos.org/t/guide-to-installing-qt-theme/35523/2 this] forum post. | For more details, see [https://discourse.nixos.org/t/guide-to-installing-qt-theme/35523/2 this] forum post. | ||
=== Wayland/X11 session === | |||
==== Plasma 5 ==== | |||
Plasma 6 runs on X11 by default. To launch wayland: | |||
<syntaxHighlight lang=nix> | |||
services.xserver.displayManager.defaultSession = "plasmawayland"; | |||
</syntaxHighlight> | |||
==== Plasma 6 ==== | |||
Plasma 6 runs on Wayland by default. To launch X11: | |||
<syntaxHighlight lang=nix> | |||
services.xserver.displayManager.defaultSession = "plasmax11"; | |||
</syntaxHighlight> | |||
==== SDDM in Wayland ==== | |||
<syntaxHighlight lang=nix> | |||
services.xserver.displayManager.sddm.wayland.enable = true; | |||
</syntaxHighlight> | |||
== Troubleshooting == | == Troubleshooting == | ||
Line 104: | Line 127: | ||
[https://github.com/NixOS/nixpkgs/issues/160599 (See this issue)] | [https://github.com/NixOS/nixpkgs/issues/160599 (See this issue)] | ||
== Tips and tricks == | == Tips and tricks == |