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