2020-04-11 21:47:33 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
fonts = {
|
2020-08-09 16:18:52 +00:00
|
|
|
fontconfig.enable = true;
|
2020-04-11 21:47:33 +00:00
|
|
|
enableDefaultFonts = true;
|
|
|
|
fonts = with pkgs; [
|
|
|
|
cantarell-fonts
|
|
|
|
corefonts
|
|
|
|
dejavu_fonts
|
|
|
|
fira-code
|
|
|
|
noto-fonts
|
|
|
|
noto-fonts-cjk
|
|
|
|
noto-fonts-emoji
|
|
|
|
noto-fonts-extra
|
|
|
|
source-code-pro
|
|
|
|
source-sans-pro
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|