snowflake/modules/fonts.nix
2023-06-25 11:03:30 -04:00

32 lines
669 B
Nix

{pkgs, ...}: {
fonts = {
enableDefaultFonts = false;
fontDir.enable = true;
fonts = with pkgs; [
corefonts
jost
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 = "full";
};
};
}