From e507550ca7a175846f040f0fbe33c27faacb7a5f Mon Sep 17 00:00:00 2001 From: liv Date: Mon, 19 Aug 2024 14:29:14 +0200 Subject: [PATCH] enable ibus for plasma --- nixos/desktop/plasma.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/desktop/plasma.nix b/nixos/desktop/plasma.nix index 9f01200..a9070b3 100644 --- a/nixos/desktop/plasma.nix +++ b/nixos/desktop/plasma.nix @@ -2,4 +2,6 @@ services.displayManager.sddm.enable = true; services.displayManager.sddm.wayland.enable = true; services.desktopManager.plasma6.enable = true; + i18n.inputMethod.enable = true; + i18n.inputMethod.type = "ibus"; }