28 lines
631 B
Nix
28 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";
|
|
};
|
|
};
|
|
};
|
|
}
|