snowflake/modules/fonts.nix
2024-02-05 21:24:51 -05:00

29 lines
631 B
Nix

{pkgs, ...}: {
fonts = {
enableDefaultPackages = false;
fontDir.enable = true;
packages = with pkgs; [
corefonts
nerdfonts
noto-fonts
noto-fonts-cjk
twitter-color-emoji
];
fontconfig = {
enable = true;
allowBitmaps = true;
defaultFonts = {
monospace = ["JetBrainsMono NF Medium" "Twitter Color Emoji"];
serif = ["Noto Serif" "Twitter Color Emoji"];
sansSerif = ["Noto Sans" "Twitter Color Emoji"];
emoji = ["Twitter Color Emoji"];
};
hinting = {
enable = true;
style = "full";
};
};
};
}