22 lines
287 B
Nix
Executable File
22 lines
287 B
Nix
Executable File
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
fonts.fontconfig.enable = true;
|
|
fonts.packages = with pkgs; [
|
|
ubuntu_font_family
|
|
siji
|
|
unifont
|
|
noto-fonts
|
|
source-han-code-jp
|
|
source-han-sans
|
|
nerd-fonts.zed-mono
|
|
nerd-fonts.symbols-only
|
|
material-symbols
|
|
];
|
|
}
|