Add dejavu fonts

This commit is contained in:
Yan Lin 2025-08-03 16:49:34 +08:00
parent bd187aacf2
commit 36907155b0
3 changed files with 20 additions and 6 deletions

16
config/fonts.nix Normal file
View file

@ -0,0 +1,16 @@
{ 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;
}