snowflake/modules/fonts.nix

35 lines
674 B
Nix

{
pkgs,
...
}: {
fonts = {
enableDefaultFonts = false;
fontDir.enable = true;
fonts = with pkgs; [
jetbrains-mono
nerdfonts
noto-fonts
noto-fonts-cjk
twemoji-color-font
font-awesome
kochi-substitute
ipafont
];
fontconfig = {
enable = true;
allowBitmaps = true;
defaultFonts = {
monospace = [ "JetBrainsMono Nerd Font" "Twitter Color Emoji" ];
serif = [ "Noto Serif" "Twitter Color Emoji" ];
sansSerif = [ "Noto Sans" "Twitter Color Emoji" ];
emoji = [ "Twitter Color Emoji" ];
};
hinting.style = "hintfull";
};
};
}