nix/config/fonts.nix
2025-08-03 16:49:34 +08:00

16 lines
No EOL
301 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
];
# Enable font configuration
fonts.fontconfig.enable = true;
}