9 lines
201 B
Nix
9 lines
201 B
Nix
{ pkgs, ... }:
|
|
{
|
|
# Enable the KDE Plasma Desktop Environment.
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
};
|
|
services.desktopManager.plasma6.enable = true;
|
|
}
|