mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-26 10:14:58 +08:00
15 lines
291 B
Nix
15 lines
291 B
Nix
{ pkgs, ... }:
|
|
{
|
|
fonts.packages = with pkgs; [
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-cjk-serif
|
|
noto-fonts-color-emoji
|
|
nerd-fonts.symbols-only
|
|
nerd-fonts.hurmit
|
|
nerd-fonts.monofur
|
|
lxgw-wenkai
|
|
maple-mono-variable
|
|
];
|
|
fonts.fontDir.enable = true;
|
|
}
|