nix/desktops/kde.nix

10 lines
299 B
Nix
Raw Normal View History

2023-07-06 13:29:55 +02:00
{ config, pkgs, ... }: {
services.xserver = {
2023-07-06 13:20:12 +02:00
# https://nixos.org/manual/nixos/stable/index.html#chap-gnome
# Enable the GNOME Desktop Environment.
2023-07-06 13:22:25 +02:00
displayManager.defaultSession = "plasmawayland";
2023-07-06 13:22:42 +02:00
displayManager.sddm.enable = true;
2023-07-06 13:22:25 +02:00
desktopManager.plasma5.enable = true;
2023-07-06 13:20:12 +02:00
};
}