summaryrefslogtreecommitdiff
path: root/nixos/modules/features/fonts/default.nix
blob: 3506c3231f32eb8e6f6d6d6c4bf374d99d4327ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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
  ];
}