Files
2026-05-03 01:46:42 -05:00

18 lines
238 B
Nix

#
# Basic system fonts
#
{ config, lib, pkgs, ... }:
{
fonts.fontconfig.enable = true;
fonts.packages = with pkgs; [
dejavu_fonts
font-awesome_6
ibm-plex
noto-fonts
noto-fonts-color-emoji
noto-fonts-cjk-sans
roboto
];
}