remove fcitx cause it no work

This commit is contained in:
2025-02-03 18:58:15 +00:00
parent 12fb7ab7b0
commit 9374493029
2 changed files with 1 additions and 27 deletions

View File

@@ -16,17 +16,7 @@
"en_US.UTF-8/UTF-8" "en_US.UTF-8/UTF-8"
"ja_JP.UTF-8/UTF-8" "ja_JP.UTF-8/UTF-8"
]; ];
inputMethod = {
enable = true;
type = "fcitx5";
fcitx5 = {
waylandFrontend = true;
addons = with pkgs; [ fcitx5-mozc ];
plasma6Support = true;
}; };
};
};
console = { console = {
# font = "Lat2-Terminus16"; # font = "Lat2-Terminus16";

View File

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