about summary refs log tree commit diff stats
path: root/system/font/default.nix
blob: 484db7e7de4f5f5c1df38c54b907d0a533f7d8c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  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"];
      };
    };
  };
}