summaryrefslogtreecommitdiff
path: root/nixos/modules/features/fonts/default.nix
blob: cecdd8fe0f66b0debf8ccd63fa50b605df27c6cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ pkgs, ... }:

{
  fonts.fontconfig.enable = true;

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