den
 1{lib, ...}: {
 2  flake.modules.homeManager.desktop = {osConfig, ...}: let
 3    hasPlasma = osConfig.services.desktopManager.plasma6.enable;
 4  in
 5    lib.optionalAttrs hasPlasma {
 6      programs.plasma.configFile.kwinrc.Wayland.InputMethod = {
 7        shellExpand = true;
 8        value = "/etc/profiles/per-user/hpcesia/share/applications/fcitx5-wayland-launcher.desktop";
 9      };
10    };
11}