nixos-config/system/fonts.nix

11 lines
178 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
fonts.enableDefaultPackages = true;
fonts.packages = with pkgs; [
noto-fonts
2024-12-12 20:11:34 -03:00
noto-fonts-cjk-sans
noto-fonts-emoji
nerdfonts_fira_hack
];
}