summaryrefslogtreecommitdiff
path: root/modules/core/fonts.nix
blob: 8a56aa7160141b2a55c25502600fe265617d8699 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }:

{
  fonts.packages = with pkgs; [
    (nerdfonts.override { fonts = [ "UbuntuMono" ]; })
    noto-fonts
    noto-fonts-cjk
    noto-fonts-emoji
    liberation_ttf
  ];
}