diff options
Diffstat (limited to 'nixos/common.nix')
-rw-r--r-- | nixos/common.nix | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/nixos/common.nix b/nixos/common.nix index 120c816..e319296 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -167,14 +167,35 @@ in }) ]; + # ---- config for japanese (thx functor.tokyo) + fonts.fonts = with pkgs; [ profont symbola - ipafont - hanazono - takao font-awesome + + ipafont + kochi-substitute ]; + fonts.fontconfig.defaultFonts = { + monospace = [ + "DejaVu Sans Mono" + "IPAGothic" + ]; + sansSerif = [ + "DejaVu Sans" + "IPAPGothic" + ]; + serif = [ + "DejaVu Serif" + "IPAPMincho" + ]; + }; + + i18n.inputMethod.enabled = "fcitx5"; + i18n.inputMethod.fcitx5.addons = [ pkgs.fcitx5-mozc ]; + + # ---- environment.systemPackages = with pkgs; [ home-manager |