17 lines
318 B
Nix
17 lines
318 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}: {
|
|
fonts.packages = with pkgs; [
|
|
material-design-icons
|
|
(nerdfonts.override { fonts = [
|
|
"JetBrainsMono"
|
|
]; })
|
|
noto-fonts
|
|
noto-fonts-cjk-sans
|
|
noto-fonts-cjk-serif
|
|
noto-fonts-emoji
|
|
corefonts
|
|
vistafonts
|
|
];
|
|
}
|