[Desktop/Plasma] use proper SDDM wayland enablement

This commit is contained in:
Antoine Viallon 2024-02-14 01:50:49 +01:00
parent 58839c3394
commit 255ee5c1df
Signed by: aviallon
GPG key ID: 186FC35EDEB25716

View file

@ -39,6 +39,7 @@ in {
# Prevents blinking cursor # Prevents blinking cursor
services.xserver.displayManager.sddm = { services.xserver.displayManager.sddm = {
enable = true; enable = true;
wayland.enable = mkDefault true;
settings = { settings = {
Theme = { Theme = {
CursorTheme = "breeze_cursors"; CursorTheme = "breeze_cursors";
@ -46,9 +47,6 @@ in {
X11 = { X11 = {
MinimumVT = mkOverride 50 1; MinimumVT = mkOverride 50 1;
}; };
General = {
DisplayServer = "wayland";
};
}; };
}; };