cover more fonts

This commit is contained in:
TheWanderingCrow 2025-07-11 10:25:01 -04:00
parent cd58a6960c
commit c30b9b9fa0

View file

@ -1,17 +1,47 @@
{pkgs, ...}: { {pkgs, ...}: {
fonts = { fonts = {
packages = with pkgs; [ packages = with pkgs; [
font-awesome # Emoji and general symbols
nerd-fonts.noto noto-fonts
nerd-fonts.hack noto-fonts-cjk-sans
noto-fonts-emoji
noto-fonts-extra
unifont
# Nerd fonts
nerd-fonts.jetbrains-mono nerd-fonts.jetbrains-mono
nerd-fonts.hack
nerd-fonts.fira-code
nerd-fonts.noto
nerd-fonts.ubuntu-mono
nerd-fonts.dejavu-sans-mono
# Icon fonts
font-awesome
material-design-icons
]; ];
fontconfig = { fontconfig = {
defaultFonts = { defaultFonts = {
monospace = ["JetBrainsMono Nerd Font" "Hack Nerd Font"]; monospace = [
sansSerif = ["Noto Sans"]; "JetBrainsMono Nerd Font"
serif = ["Noto Serif"]; "Hack Nerd Font"
emoji = ["Noto Color Emoji"]; "FiraCode Nerd Font"
];
sansSerif = [
"Noto Sans"
"Noto Sans CJK SC"
"DejaVu Sans"
];
serif = [
"Noto Serif"
"Noto Serif CJK SC"
"DejaVu Serif"
];
emoji = [
"Noto Color Emoji"
"Symbola"
];
}; };
}; };
}; };