nix/desktops/kde.nix

11 lines
411 B
Nix
Raw Normal View History

2023-07-06 13:20:12 +02:00
{ config, unstable, ... }: {
# Use "unstable" instead of "pkgs" to get the latest packages, defined in "flake.nix"
services.xserver = with unstable.pkgs; {
# 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
};
}