9 lines
141 B
Nix
9 lines
141 B
Nix
|
{ pkgs, ... }:
|
||
|
{
|
||
|
fonts = {
|
||
|
fontconfig.enable = true;
|
||
|
enableDefaultPackages = true;
|
||
|
packages = with pkgs; [ nerdfonts ];
|
||
|
};
|
||
|
}
|