nix/desktops/kde.nix
2023-07-06 20:20:12 +09:00

10 lines
408 B
Nix

{ 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.
displayManager.ssdm.enable = true;
desktopManager.kde.enable = true;
displayManager.defaultSession = "plastmawayland";
};
}