19 lines
404 B
Nix
19 lines
404 B
Nix
{
|
|
personal.modules = [
|
|
(
|
|
{pkgs, ...}: {
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-emoji
|
|
dina-font
|
|
wqy_zenhei # this is so that hanzi doesn't look like pixel art
|
|
nerd-fonts.noto
|
|
nerd-fonts.fira-code
|
|
nerd-fonts.ubuntu-sans
|
|
charis-sil
|
|
];
|
|
}
|
|
)
|
|
];
|
|
}
|