about summary refs log blame commit diff stats
path: root/system/font/default.nix
blob: 3864b60e6b21e19a32307d86f45e6f2299d403b1 (plain) (tree)
1
2
3
4
5
6
7
8
9
                
                                      
                     


                               
           
                








                                      
 
{pkgs, ...}: let
  nerdFont = pkgs.nerdfonts.override {
    fonts = [
      "SourceCodePro"
    ];
  };
in {
  # TODO maybe add other fonts?
  fonts = {
    packages = [
      nerdFont
    ];
    fontconfig = {
      defaultFonts = {
        # serif = ["Vazir"];
        # sansSerif = ["Vazir"];
        monospace = ["SourceCodePro"];
      };
    };
  };
}