2024-01-15 15:50:55 +00:00
|
|
|
{pkgs, ...}: {
|
|
|
|
fonts.packages = with pkgs; [
|
|
|
|
# https://notofonts.github.io/
|
|
|
|
noto-fonts # standard characters
|
|
|
|
noto-fonts-lgc-plus # latin, greek, and cyrillic
|
2024-10-24 21:39:25 +00:00
|
|
|
noto-fonts-cjk-sans # chinese, japanese, and korean
|
2024-01-15 15:50:55 +00:00
|
|
|
noto-fonts-emoji # emojis 🐢
|
|
|
|
|
|
|
|
# https://github.com/tonsky/FiraCode
|
|
|
|
fira-code # standard characters
|
|
|
|
fira-code-symbols # unicode ligature glyphs
|
|
|
|
|
|
|
|
# https://github.com/ryanoasis/nerd-fonts
|
|
|
|
(nerdfonts.override {fonts = ["FiraCode"];})
|
|
|
|
];
|
|
|
|
}
|