diff options
author | Azat Bahawi <azat@bahawi.net> | 2024-04-18 10:52:45 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2024-04-18 10:52:45 +0300 |
commit | 9ac64328603d44bd272175942d3ea3eaadcabd04 (patch) | |
tree | 58d6a9ff07033fac2678cbd8da2fbc298605afce /modules/nixos/common | |
parent | 2024-04-15 (diff) |
2024-04-18
Diffstat (limited to '')
-rw-r--r-- | modules/nixos/common/locale.nix | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/modules/nixos/common/locale.nix b/modules/nixos/common/locale.nix index 0f79cb7..8b91a5a 100644 --- a/modules/nixos/common/locale.nix +++ b/modules/nixos/common/locale.nix @@ -17,7 +17,7 @@ with lib; ]; inputMethod = { - enabled = "fcitx5"; + enabled = null; # FIXME Breaks on Wayland. fcitx5 = { addons = with pkgs; [ fcitx5-configtool @@ -29,10 +29,12 @@ with lib; }; services.xserver.xkb = { - layout = "us"; + layout = "us,ru"; + variant = ",phonetic"; options = concatStringsSep "," [ "caps:escape" "compose:menu" + "grp:win_space_toggle" "terminate:ctrl_alt_bksp" ]; }; |