This commit is contained in:
Aleksandr Lebedev 2025-07-31 14:42:20 +02:00
parent 6a4570e5fe
commit 81757ca17e
2 changed files with 8 additions and 0 deletions

View file

@ -2,6 +2,7 @@
config,
lib,
pkgs,
hwconfig,
...
}: let
cfg = config.kk.loginManagers.sddm;
@ -18,6 +19,7 @@ in {
#background;
loginBackground = false;
})
wvkbd
];
services.xserver.enable = true;
services.displayManager.sddm = {
@ -25,6 +27,11 @@ in {
theme = "catppuccin-mocha";
package = lib.mkDefault pkgs.kdePackages.sddm;
wayland.enable = true;
settings = {
General = {
InputMethod = "wvkbd-mobintl"; # Enables optional virtual keyboard at login (SDDM). Useful for touchscreens or accessibility.
};
};
};
};
}