9 lines
141 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
fonts = {
fontconfig.enable = true;
enableDefaultPackages = true;
packages = with pkgs; [ nerdfonts ];
};
}