sway: Add fcitx

nazuna
Simon Bruder 2022-09-23 00:12:12 +02:00
parent eb5d270e0b
commit c816263ad2
Signed by: simon
GPG Key ID: 8D3C82F9F309F8EC
2 changed files with 11 additions and 0 deletions

View File

@ -38,6 +38,7 @@ let
in
{
imports = lib.optionals nixosConfig.sbruder.gui.enable [
./fcitx.nix
./gammastep.nix
./kanshi.nix
./swaync.nix

View File

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
i18n.inputMethod = {
enabled = "fcitx5";
fcitx5.addons = with pkgs; [
fcitx5-mozc
];
};
}