add maalit to plasma wayland session in sddm

This commit is contained in:
2025-02-03 23:17:07 +00:00
parent 9374493029
commit d13a65eed6

View File

@@ -1,5 +1,15 @@
{ pkgs, ... }:
{ pkgs, lib, ... }:
let
kwin = lib.concatStringsSep " " [
"${lib.getBin pkgs.kdePackages.kwin}/bin/kwin_wayland"
"--no-global-shortcuts"
"--no-kactivities"
"--no-lockscreen"
"--locale1"
"--inputmethod maliit-keyboard"
];
in
{
services.xserver.enable = true; # optional
@@ -10,6 +20,11 @@
services.displayManager.sddm = {
enable = true;
wayland.enable = true;
settings = {
Wayland = {
CompositorCommand = kwin;
};
};
};
services.desktopManager.plasma6.enable = true;