snowflake/modules/fonts.nix
2023-11-15 05:46:39 -05:00

35 lines
735 B
Nix

{pkgs, ...}: {
fonts = {
enableDefaultPackages = false;
fontDir.enable = true;
packages = with pkgs; [
corefonts
monaspace
jost
jetbrains-mono
nerdfonts
noto-fonts
noto-fonts-cjk
twitter-color-emoji
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 = {
enable = true;
style = "full";
};
};
};
}