about summary refs log tree commit diff stats
path: root/system/font/default.nix
blob: 09e6520ef1168be4b97c8a857839515aa407422e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  config,
  pkgs,
  ...
}: let
  nerdFont = pkgs.nerdfonts.override {
    fonts = [
      "SourceCodePro"
    ];
  };
in {
  # TODO maybe add other fonts?
  fonts.fonts = [
    nerdFont
  ];
}