diff --git a/configuration/fonts.nix b/configuration/fonts.nix index b9c4286..70a7003 100644 --- a/configuration/fonts.nix +++ b/configuration/fonts.nix @@ -16,18 +16,8 @@ "en_US.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 = { # font = "Lat2-Terminus16"; keyMap = "uk"; diff --git a/configuration/kde.nix b/configuration/kde.nix index ef6e9c7..9531e64 100644 --- a/configuration/kde.nix +++ b/configuration/kde.nix @@ -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 @@ -20,12 +10,6 @@ in services.displayManager.sddm = { enable = true; wayland.enable = true; - wayland.compositor = "kwin"; - settings = { - General = { - CompositorCommand = compositorCmd; - }; - }; }; services.desktopManager.plasma6.enable = true;