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