10 lines
152 B
Nix
10 lines
152 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
fonts = {
|
|
enableDefaultFonts = true;
|
|
enableGhostscriptFonts = true;
|
|
fontDir.enable = true;
|
|
fonts = [ pkgs.nerdfonts ];
|
|
};
|
|
}
|