20 lines
456 B
Nix
20 lines
456 B
Nix
{
|
|
personal.modules = [
|
|
(
|
|
{ pkgs, ... }:
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-emoji
|
|
fira-code
|
|
fira-code-symbols # this is probably redundant, whatever
|
|
dina-font
|
|
proggyfonts
|
|
wqy_zenhei # this is so that hanzi doesn't look like pixel art
|
|
nerdfonts # all of them, apparently
|
|
];
|
|
}
|
|
)
|
|
];
|
|
}
|