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