nix/config/fonts.nix
2025-10-06 14:42:22 +02:00

24 lines
No EOL
589 B
Nix

{ pkgs, ... }:
{
# Font packages
home.packages = with pkgs; [
# DejaVu font family
dejavu_fonts
# Nerd Fonts with programming ligatures and icon support
nerd-fonts.fira-code
nerd-fonts.jetbrains-mono
# Ubuntu font family
ubuntu_font_family
# CJK fonts for proper Chinese/Japanese/Korean character display
noto-fonts-cjk-sans # Comprehensive CJK support
noto-fonts-cjk-serif # Serif CJK text support
source-han-sans # High-quality CJK font alternative
];
# Enable font configuration
fonts.fontconfig.enable = true;
}