snowflake/modules/fonts.nix

38 lines
725 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";
};
};
};
}