about summary refs log blame commit diff
path: root/modules/fonts/default.nix
blob: d1c8c40ae1ab820f9324feafcbb58facafc47291 (plain) (tree)
1
2
3
4
5
6
7
8




                            
                                                                 

    
{ config, pkgs, ... }: {
  fonts.fonts = with pkgs; [
    noto-fonts
    noto-fonts-cjk
    noto-fonts-emoji
    (nerdfonts.override { fonts = [ "InconsolataLGC" "Noto" ]; })
  ];
}