2024-08-24 22:16:51 -04:00
|
|
|
{pkgs, ...}: {
|
|
|
|
# Fonts
|
|
|
|
fonts = {
|
|
|
|
packages = with pkgs; [
|
|
|
|
liberation_ttf
|
|
|
|
twitter-color-emoji
|
|
|
|
noto-fonts
|
|
|
|
sarasa-gothic
|
2024-09-23 16:22:01 -04:00
|
|
|
ubuntu_font_family
|
2024-08-24 22:16:51 -04:00
|
|
|
(nerdfonts.override {fonts = ["UbuntuMono"];})
|
|
|
|
];
|
|
|
|
fontconfig.defaultFonts.emoji = ["Twitter Color Emoji"];
|
|
|
|
};
|
|
|
|
}
|