summaryrefslogtreecommitdiff
path: root/nixos/modules/features/fonts/default.nix
blob: c49876c3a6ff4b16c7ea79faba37a05126eec9e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ pkgs, ... }:

{
  # Fonts: installed under fonts.packages (NOT environment.systemPackages) so
  # they land in the fontconfig cache instead of just the PATH.
  fonts.fontconfig.enable = true;

  fonts.packages = with pkgs; [
    font-awesome
    nerd-fonts.jetbrains-mono
    nerd-fonts.symbols-only
    jetbrains-mono
    noto-fonts-color-emoji
    adwaita-fonts
    cozette
    roboto
    nerd-fonts.open-dyslexic
    open-dyslexic
  ];
}