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

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