KDE: Difference between revisions
Add troubleshooting steps to control external monitor brightness through KDE |
m updated config syntax and corrected sddm config for kde |
||
| Line 5: | Line 5: | ||
=== Plasma 6 === | === Plasma 6 === | ||
{{file|3= | {{file|3=# Enable Plasma | ||
services.desktopManager.plasma6.enable = true; | |||
# Default display manager for Plasma | |||
services. | services.displayManager.sddm = { | ||
enable = true; | |||
# To use Wayland (Experimental for SDDM) | |||
wayland = { | |||
enable = true; | |||
compositor = "kwin"; | |||
}; | |||
}; | |||
# Optionally enable xserver | |||
services.xserver.enable = true;|name=/etc/nixos/configuration.nix|lang=nix}} | |||
=== Plasma 5 === | === Plasma 5 === | ||
{{file| | {{file|3=# Enable Plasma 5 and xserver | ||
{ | services.xserver = { | ||
enable = true; | |||
desktopManager.plasma5.enable = true; | |||
}; | |||
# Enable the default display manager | |||
services.displayManager.sddm.enable = true;|name=/etc/nixos/configuration.nix|lang=nix}}''<big>'''Note:'''</big> As of 2024, KDE Plasma 5 is end of life will not be available after NixOS 25.05.'' | |||
== Configuration == | == Configuration == | ||