10 lines
318 B
Nix
10 lines
318 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# Enable the X11 windowing system.
|
|
services.xserver.enable = true;
|
|
|
|
# Enable the KDE Plasma Desktop Environment.
|
|
services.xserver.displayManager.sddm.enable = true;
|
|
services.xserver.displayManager.defaultSession = "plasma";
|
|
services.xserver.desktopManager.plasma6.enable = true;
|
|
}
|