diff options
| -rw-r--r-- | hosts/local/gui.nix | 32 |
1 files changed, 18 insertions, 14 deletions
diff --git a/hosts/local/gui.nix b/hosts/local/gui.nix index de16ac8..cf6beff 100644 --- a/hosts/local/gui.nix +++ b/hosts/local/gui.nix @@ -2,7 +2,11 @@ inputs, pkgs, ... -}: { +}: let + spkgs = import inputs.nixstaging { + system = pkgs.system; + }; +in { environment.systemPackages = with pkgs; [ pavucontrol #terminals @@ -58,19 +62,19 @@ gparted ]; - # i18n.inputMethod = { - # enable = true; - # type = "fcitx5"; - # fcitx5.addons = with pkgs; [ - # fcitx5-mozc - # # mozc-ut is better, wat do - # # fcitx5-gtk - # # libsForQt5.fcitx5-qt - # fcitx5-lua - # fcitx5-configtool - # fcitx5-rime - # ]; - # }; + i18n.inputMethod = { + enable = true; + type = "fcitx5"; + fcitx5.addons = with pkgs; [ + fcitx5-mozc + # mozc-ut is better, wat do + fcitx5-gtk + libsForQt5.fcitx5-qt + fcitx5-lua + fcitx5-configtool + fcitx5-rime + ]; + }; # # https://github.com/NixOS/nixpkgs/issues/454887 # # |
