11 lines
173 B
Nix
11 lines
173 B
Nix
{ pkgs, ... }:
|
|
{
|
|
fonts.enableDefaultPackages = true;
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk
|
|
noto-fonts-emoji
|
|
nerdfonts_fira_hack
|
|
];
|
|
}
|