nixos/modules/plasma.nix

11 lines
325 B
Nix
Raw Normal View History

2024-02-02 21:58:06 +01:00
{ config, pkgs, ... }:
2024-02-02 21:07:29 +01:00
{
2024-02-02 21:58:06 +01:00
# Enable the X11 windowing system.
services.xserver.enable = true;
2024-02-02 21:07:29 +01:00
2024-02-02 21:58:06 +01:00
# Enable the KDE Plasma Desktop Environment.
services.xserver.displayManager.sddm.enable = true;
2024-02-19 21:18:19 +01:00
services.xserver.displayManager.defaultSession = "plasmawayland";
2024-02-02 21:58:06 +01:00
services.xserver.desktopManager.plasma5.enable = true;
2024-02-02 21:07:29 +01:00
}