11 lines
236 B
Nix
11 lines
236 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Enables the Plasma 6 DE and the SDDM DM with Wayland
|
|
services.desktopManager.plasma6.enable = true;
|
|
services.displayManager.sddm = {
|
|
enable = true;
|
|
wayland.enable = true;
|
|
enableHidpi = true;
|
|
};
|
|
}
|